sound-juicer.svg 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg
  3. xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:cc="http://creativecommons.org/ns#"
  6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7. xmlns:svg="http://www.w3.org/2000/svg"
  8. xmlns="http://www.w3.org/2000/svg"
  9. xmlns:xlink="http://www.w3.org/1999/xlink"
  10. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  11. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  12. height="48"
  13. width="48"
  14. version="1.1"
  15. id="svg10"
  16. sodipodi:docname="sound-juicer.svg"
  17. inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
  18. <metadata
  19. id="metadata16">
  20. <rdf:RDF>
  21. <cc:Work
  22. rdf:about="">
  23. <dc:format>image/svg+xml</dc:format>
  24. <dc:type
  25. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  26. <dc:title></dc:title>
  27. </cc:Work>
  28. </rdf:RDF>
  29. </metadata>
  30. <defs
  31. id="defs14">
  32. <filter
  33. filterUnits="objectBoundingBox"
  34. color-interpolation-filters="sRGB"
  35. y="-200%"
  36. x="-200%"
  37. height="400%"
  38. width="400%"
  39. id="xPHBR2KRsqNJJmxgfSMnWsjFL63MuKr0">
  40. <feGaussianBlur
  41. id="feGaussianBlur823"
  42. stdDeviation="4.294"
  43. in="SourceGraphic" />
  44. <feOffset
  45. id="feOffset825"
  46. result="pf_100_offsetBlur"
  47. dy="4"
  48. dx="0" />
  49. <feFlood
  50. id="feFlood827"
  51. flood-opacity=".4" />
  52. <feComposite
  53. id="feComposite829"
  54. result="pf_100_dropShadow"
  55. operator="in"
  56. in2="pf_100_offsetBlur" />
  57. <feBlend
  58. id="feBlend831"
  59. mode="normal"
  60. in2="pf_100_dropShadow"
  61. in="SourceGraphic" />
  62. </filter>
  63. <filter
  64. filterUnits="objectBoundingBox"
  65. color-interpolation-filters="sRGB"
  66. y="-200%"
  67. x="-200%"
  68. height="400%"
  69. width="400%"
  70. id="2JmMAOqgjSUXbdZfecnmpMzAW6swRgvN">
  71. <feGaussianBlur
  72. id="feGaussianBlur858"
  73. stdDeviation="4.294" />
  74. </filter>
  75. <linearGradient
  76. id="linearGradient991"
  77. inkscape:collect="always">
  78. <stop
  79. id="stop987"
  80. offset="0"
  81. style="stop-color:#52c1fa;stop-opacity:1" />
  82. <stop
  83. id="stop989"
  84. offset="1"
  85. style="stop-color:#1496ff;stop-opacity:1" />
  86. </linearGradient>
  87. <linearGradient
  88. inkscape:collect="always"
  89. id="linearGradient3361">
  90. <stop
  91. style="stop-color:#0068e0;stop-opacity:1;"
  92. offset="0"
  93. id="stop3363" />
  94. <stop
  95. style="stop-color:#00acf4;stop-opacity:1"
  96. offset="1"
  97. id="stop3365" />
  98. </linearGradient>
  99. <linearGradient
  100. id="linearGradient3026"
  101. y2="40.495998"
  102. gradientUnits="userSpaceOnUse"
  103. x2="71.204002"
  104. gradientTransform="matrix(1.5564685,0,0,1.58743,-88.730662,-20.236087)"
  105. y1="15.369"
  106. x1="71.204002"
  107. xlink:href="#linearGradient3361">
  108. <stop
  109. id="stop4808-4"
  110. stop-color="#fff"
  111. offset="0" />
  112. <stop
  113. id="stop4810-0"
  114. stop-color="#fff"
  115. stop-opacity=".23529"
  116. offset=".42448" />
  117. <stop
  118. id="stop4812-8"
  119. stop-color="#fff"
  120. stop-opacity=".15686"
  121. offset=".82090" />
  122. <stop
  123. id="stop4814-0"
  124. stop-color="#fff"
  125. stop-opacity=".39216"
  126. offset="1" />
  127. </linearGradient>
  128. <radialGradient
  129. id="radialGradient3029"
  130. fx="4.4590001"
  131. fy="8.5088997"
  132. gradientUnits="userSpaceOnUse"
  133. cy="8.6258001"
  134. cx="15.026"
  135. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  136. r="20">
  137. <stop
  138. id="stop4170"
  139. stop-color="#c24251"
  140. offset="0" />
  141. <stop
  142. id="stop4172"
  143. stop-color="#c24251"
  144. offset=".26238" />
  145. <stop
  146. id="stop4174"
  147. stop-color="#a63643"
  148. offset=".66094" />
  149. <stop
  150. id="stop4176"
  151. stop-color="#a63643"
  152. offset="1" />
  153. </radialGradient>
  154. <radialGradient
  155. id="radialGradient3032"
  156. gradientUnits="userSpaceOnUse"
  157. cy="3.99"
  158. cx="23.896"
  159. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  160. r="20.396999">
  161. <stop
  162. id="stop3244-9-33-7-0-9"
  163. stop-color="#fff"
  164. offset="0" />
  165. <stop
  166. id="stop3246-3-5-0-8-5"
  167. stop-color="#ddd"
  168. offset=".26238" />
  169. <stop
  170. id="stop3248-1-7-8-8-1"
  171. stop-color="#abacae"
  172. offset=".66094" />
  173. <stop
  174. id="stop3250-9-3-0-5-1"
  175. stop-color="#89898b"
  176. offset="1" />
  177. </radialGradient>
  178. <radialGradient
  179. id="radialGradient3035"
  180. gradientUnits="userSpaceOnUse"
  181. cy="186.17"
  182. cx="99.156998"
  183. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  184. r="62.769001">
  185. <stop
  186. id="stop3822-2-6-3"
  187. stop-color="#3d3d3d"
  188. offset="0" />
  189. <stop
  190. id="stop3864-8-7-7"
  191. stop-color="#686868"
  192. stop-opacity=".49804"
  193. offset=".5" />
  194. <stop
  195. id="stop3824-1-2-5"
  196. stop-color="#686868"
  197. stop-opacity="0"
  198. offset="1" />
  199. </radialGradient>
  200. <linearGradient
  201. id="linearGradient4433"
  202. y2="25.611"
  203. gradientUnits="userSpaceOnUse"
  204. x2="23.077999"
  205. gradientTransform="matrix(1,0,0,1.0521,0,-0.90547)"
  206. y1="13.035"
  207. x1="22.759001">
  208. <stop
  209. id="stop6305-1-0-2"
  210. stop-color="#fff"
  211. offset="0" />
  212. <stop
  213. id="stop6307-5-0-6"
  214. stop-color="#fff"
  215. stop-opacity="0"
  216. offset="1" />
  217. </linearGradient>
  218. <linearGradient
  219. id="linearGradient4829">
  220. <stop
  221. style="stop-color:#f4fbfc;stop-opacity:1;"
  222. offset="0"
  223. id="stop4831" />
  224. <stop
  225. style="stop-color:#d6d6d6;stop-opacity:1;"
  226. offset="1"
  227. id="stop4833" />
  228. </linearGradient>
  229. <radialGradient
  230. id="SVGID_4_"
  231. cx="224.50391"
  232. cy="186.51421"
  233. r="127.0051"
  234. gradientUnits="userSpaceOnUse">
  235. <stop
  236. offset="0"
  237. style="stop-color:#FFFFFF"
  238. id="stop27" />
  239. <stop
  240. offset="0.3984"
  241. style="stop-color:#FDFEFF"
  242. id="stop29" />
  243. <stop
  244. offset="0.6131"
  245. style="stop-color:#F5FAFF"
  246. id="stop31" />
  247. <stop
  248. offset="0.7841"
  249. style="stop-color:#E7F3FF"
  250. id="stop33" />
  251. <stop
  252. offset="0.9311"
  253. style="stop-color:#D4EAFF"
  254. id="stop35" />
  255. <stop
  256. offset="1"
  257. style="stop-color:#C8E4FF"
  258. id="stop37" />
  259. </radialGradient>
  260. <radialGradient
  261. gradientUnits="userSpaceOnUse"
  262. r="26.769501"
  263. cy="286.66409"
  264. cx="324.69339"
  265. id="SVGID_5_">
  266. <stop
  267. id="stop50"
  268. style="stop-color:#FFFFFF"
  269. offset="0" />
  270. <stop
  271. id="stop52"
  272. style="stop-color:#FDFEFF"
  273. offset="0.3984" />
  274. <stop
  275. id="stop54"
  276. style="stop-color:#F5FAFF"
  277. offset="0.6131" />
  278. <stop
  279. id="stop56"
  280. style="stop-color:#E7F3FF"
  281. offset="0.7841" />
  282. <stop
  283. id="stop58"
  284. style="stop-color:#D4EAFF"
  285. offset="0.9311" />
  286. <stop
  287. id="stop60"
  288. style="stop-color:#C8E4FF"
  289. offset="1" />
  290. </radialGradient>
  291. <radialGradient
  292. gradientUnits="userSpaceOnUse"
  293. r="46.444901"
  294. cy="392.77249"
  295. cx="325"
  296. id="SVGID_6_">
  297. <stop
  298. id="stop73"
  299. style="stop-color:#FFFFFF"
  300. offset="0" />
  301. <stop
  302. id="stop75"
  303. style="stop-color:#FDFEFF"
  304. offset="0.3984" />
  305. <stop
  306. id="stop77"
  307. style="stop-color:#F5FAFF"
  308. offset="0.6131" />
  309. <stop
  310. id="stop79"
  311. style="stop-color:#E7F3FF"
  312. offset="0.7841" />
  313. <stop
  314. id="stop81"
  315. style="stop-color:#D4EAFF"
  316. offset="0.9311" />
  317. <stop
  318. id="stop83"
  319. style="stop-color:#C8E4FF"
  320. offset="1" />
  321. </radialGradient>
  322. <clipPath
  323. id="clipPath-349538100">
  324. <g
  325. id="g17"
  326. transform="translate(0,-1004.4)">
  327. <path
  328. style="fill:#1890d0"
  329. inkscape:connector-curvature="0"
  330. id="path19"
  331. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  332. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  333. </g>
  334. </clipPath>
  335. <clipPath
  336. id="clipPath3914">
  337. <g
  338. id="g3912"
  339. transform="translate(0,-1004.4)">
  340. <path
  341. style="fill:#1890d0"
  342. inkscape:connector-curvature="0"
  343. id="path3910"
  344. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  345. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  346. </g>
  347. </clipPath>
  348. <clipPath
  349. id="clipPath3920">
  350. <g
  351. id="g3918"
  352. transform="translate(0,-1004.4)">
  353. <path
  354. style="fill:#1890d0"
  355. inkscape:connector-curvature="0"
  356. id="path3916"
  357. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  358. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  359. </g>
  360. </clipPath>
  361. <linearGradient
  362. id="linearGradient6987"
  363. osb:paint="solid">
  364. <stop
  365. style="stop-color:#77d2fb;stop-opacity:1;"
  366. offset="0"
  367. id="stop6985" />
  368. </linearGradient>
  369. <filter
  370. y="0%"
  371. x="0%"
  372. height="100%"
  373. width="100%"
  374. id="alpha">
  375. <feColorMatrix
  376. id="feColorMatrix929"
  377. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  378. in="SourceGraphic" />
  379. </filter>
  380. <mask
  381. id="mask0">
  382. <g
  383. id="g934"
  384. filter="url(#alpha)">
  385. <rect
  386. id="rect932"
  387. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  388. height="384"
  389. width="384" />
  390. </g>
  391. </mask>
  392. <clipPath
  393. id="clip1">
  394. <rect
  395. id="rect937"
  396. height="384"
  397. width="384" />
  398. </clipPath>
  399. <g
  400. clip-path="url(#clip1)"
  401. id="surface5">
  402. <path
  403. id="path940"
  404. style="fill:rgb(100%,100%,100%)"
  405. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
  406. </g>
  407. <mask
  408. id="mask1">
  409. <g
  410. id="g945"
  411. filter="url(#alpha)">
  412. <rect
  413. id="rect943"
  414. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  415. height="384"
  416. width="384" />
  417. </g>
  418. </mask>
  419. <clipPath
  420. id="clip2">
  421. <rect
  422. id="rect948"
  423. height="384"
  424. width="384" />
  425. </clipPath>
  426. <g
  427. clip-path="url(#clip2)"
  428. id="surface8">
  429. <path
  430. id="path951"
  431. style="fill:rgb(0%,0%,0%)"
  432. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
  433. </g>
  434. <linearGradient
  435. gradientUnits="userSpaceOnUse"
  436. y2="249.017"
  437. y1="515.328"
  438. x2="249.882"
  439. x1="-248.932"
  440. id="linearGradient1117">
  441. <stop
  442. id="stop954"
  443. offset="0"
  444. style="stop-color:#aa75e6;stop-opacity:1" />
  445. <stop
  446. id="stop956"
  447. offset="1"
  448. style="stop-color:#8935f0;stop-opacity:1" />
  449. </linearGradient>
  450. <linearGradient
  451. id="linearGradient-1"
  452. y2="116.54461"
  453. x2="186.14996"
  454. y1="116.54461"
  455. x1="0"
  456. gradientTransform="scale(0.69850138,1.4316364)"
  457. gradientUnits="userSpaceOnUse">
  458. <stop
  459. id="stop4511"
  460. offset="0%"
  461. stop-color="#FFFFFF" />
  462. <stop
  463. id="stop4513"
  464. offset="14.13%"
  465. stop-opacity="0.9576"
  466. stop-color="#FFFFFF" />
  467. <stop
  468. id="stop4515"
  469. offset="100%"
  470. stop-opacity="0.7"
  471. stop-color="#FFFFFF" />
  472. </linearGradient>
  473. <linearGradient
  474. id="linearGradient-2"
  475. y2="112.26521"
  476. x2="373.38791"
  477. y1="112.26521"
  478. x1="187.35059"
  479. gradientTransform="scale(0.68561406,1.4585465)"
  480. gradientUnits="userSpaceOnUse">
  481. <stop
  482. id="stop4518"
  483. offset="0%"
  484. stop-color="#F1F1F2" />
  485. <stop
  486. id="stop4520"
  487. offset="9.191442%"
  488. stop-color="#E4E5E6" />
  489. <stop
  490. id="stop4522"
  491. offset="23.57%"
  492. stop-color="#D9DADB" />
  493. <stop
  494. id="stop4524"
  495. offset="43.8%"
  496. stop-color="#D2D4D5" />
  497. <stop
  498. id="stop4526"
  499. offset="100%"
  500. stop-color="#D0D2D3" />
  501. </linearGradient>
  502. <linearGradient
  503. gradientTransform="translate(-49.413969,39.769372)"
  504. inkscape:collect="always"
  505. xlink:href="#linearGradient944"
  506. id="linearGradient948"
  507. gradientUnits="userSpaceOnUse"
  508. x1="122.34071"
  509. y1="117.04197"
  510. x2="84.091423"
  511. y2="71.020111" />
  512. <linearGradient
  513. inkscape:collect="always"
  514. id="linearGradient944">
  515. <stop
  516. style="stop-color:#d5dada;stop-opacity:1"
  517. offset="0"
  518. id="stop940" />
  519. <stop
  520. style="stop-color:#f1f1f1;stop-opacity:1"
  521. offset="1"
  522. id="stop942" />
  523. </linearGradient>
  524. <filter
  525. style="color-interpolation-filters:sRGB"
  526. id="c"
  527. height="1.1655999"
  528. width="1.1655999"
  529. x="-0.082800001"
  530. y="-0.082800001">
  531. <feGaussianBlur
  532. stdDeviation="2.1101835"
  533. id="feGaussianBlur10" />
  534. </filter>
  535. <filter
  536. style="color-interpolation-filters:sRGB"
  537. id="a"
  538. height="1.031026"
  539. width="1.031376"
  540. x="-0.015688"
  541. y="-0.015513">
  542. <feGaussianBlur
  543. stdDeviation=".7986332"
  544. id="feGaussianBlur2" />
  545. </filter>
  546. <clipPath
  547. id="clip1-8">
  548. <path
  549. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  550. id="path952" />
  551. </clipPath>
  552. <clipPath
  553. id="clip2-3">
  554. <path
  555. d="M 515.4375 185.300781 C 515.4375 356.074219 370.535156 494.394531 192 494.394531 C 13.460938 494.394531 -131.4375 356.074219 -131.4375 185.300781 C -131.4375 14.523438 13.460938 -123.796875 192 -123.796875 C 370.535156 -123.796875 515.4375 14.523438 515.4375 185.300781 Z M 515.4375 185.300781"
  556. id="path955" />
  557. </clipPath>
  558. <linearGradient
  559. gradientUnits="userSpaceOnUse"
  560. y2="285.73337"
  561. x2="-21.756306"
  562. y1="267.25842"
  563. x1="-33.315849"
  564. id="linearGradient993"
  565. xlink:href="#linearGradient991"
  566. inkscape:collect="always"
  567. gradientTransform="matrix(3.7795276,0,0,3.7795276,373.62818,-931.73983)" />
  568. <radialGradient
  569. r="20"
  570. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  571. cx="15.026"
  572. cy="8.6258001"
  573. gradientUnits="userSpaceOnUse"
  574. fy="8.5088997"
  575. fx="4.4590001"
  576. id="radialGradient3029-4">
  577. <stop
  578. style="stop-color:#1429d2;stop-opacity:1"
  579. offset="0"
  580. stop-color="#c24251"
  581. id="stop4170-8" />
  582. <stop
  583. style="stop-color:#63c7e5;stop-opacity:1"
  584. offset="1"
  585. stop-color="#a63643"
  586. id="stop4176-3" />
  587. </radialGradient>
  588. <radialGradient
  589. r="20.396999"
  590. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  591. cx="23.896"
  592. cy="3.99"
  593. gradientUnits="userSpaceOnUse"
  594. id="radialGradient3032-3">
  595. <stop
  596. offset="0"
  597. stop-color="#fff"
  598. id="stop3244-9-33-7-0-9-4" />
  599. <stop
  600. offset=".26238"
  601. stop-color="#ddd"
  602. id="stop3246-3-5-0-8-5-0" />
  603. <stop
  604. offset=".66094"
  605. stop-color="#abacae"
  606. id="stop3248-1-7-8-8-1-8" />
  607. <stop
  608. offset="1"
  609. stop-color="#89898b"
  610. id="stop3250-9-3-0-5-1-4" />
  611. </radialGradient>
  612. <radialGradient
  613. r="62.769001"
  614. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  615. cx="99.156998"
  616. cy="186.17"
  617. gradientUnits="userSpaceOnUse"
  618. id="radialGradient3035-3">
  619. <stop
  620. offset="0"
  621. stop-color="#3d3d3d"
  622. id="stop3822-2-6-3-0" />
  623. <stop
  624. offset=".5"
  625. stop-opacity=".49804"
  626. stop-color="#686868"
  627. id="stop3864-8-7-7-2" />
  628. <stop
  629. offset="1"
  630. stop-opacity="0"
  631. stop-color="#686868"
  632. id="stop3824-1-2-5-4" />
  633. </radialGradient>
  634. <radialGradient
  635. gradientUnits="userSpaceOnUse"
  636. r="127.0051"
  637. cy="186.51421"
  638. cx="224.50391"
  639. id="SVGID_4_-1">
  640. <stop
  641. id="stop27-7"
  642. style="stop-color:#FFFFFF"
  643. offset="0" />
  644. <stop
  645. id="stop29-6"
  646. style="stop-color:#FDFEFF"
  647. offset="0.3984" />
  648. <stop
  649. id="stop31-2"
  650. style="stop-color:#F5FAFF"
  651. offset="0.6131" />
  652. <stop
  653. id="stop33-6"
  654. style="stop-color:#E7F3FF"
  655. offset="0.7841" />
  656. <stop
  657. id="stop35-2"
  658. style="stop-color:#D4EAFF"
  659. offset="0.9311" />
  660. <stop
  661. id="stop37-5"
  662. style="stop-color:#C8E4FF"
  663. offset="1" />
  664. </radialGradient>
  665. <radialGradient
  666. id="SVGID_5_-9"
  667. cx="324.69339"
  668. cy="286.66409"
  669. r="26.769501"
  670. gradientUnits="userSpaceOnUse">
  671. <stop
  672. offset="0"
  673. style="stop-color:#FFFFFF"
  674. id="stop50-2" />
  675. <stop
  676. offset="0.3984"
  677. style="stop-color:#FDFEFF"
  678. id="stop52-0" />
  679. <stop
  680. offset="0.6131"
  681. style="stop-color:#F5FAFF"
  682. id="stop54-5" />
  683. <stop
  684. offset="0.7841"
  685. style="stop-color:#E7F3FF"
  686. id="stop56-9" />
  687. <stop
  688. offset="0.9311"
  689. style="stop-color:#D4EAFF"
  690. id="stop58-7" />
  691. <stop
  692. offset="1"
  693. style="stop-color:#C8E4FF"
  694. id="stop60-2" />
  695. </radialGradient>
  696. <radialGradient
  697. id="SVGID_6_-7"
  698. cx="325"
  699. cy="392.77249"
  700. r="46.444901"
  701. gradientUnits="userSpaceOnUse">
  702. <stop
  703. offset="0"
  704. style="stop-color:#FFFFFF"
  705. id="stop73-5" />
  706. <stop
  707. offset="0.3984"
  708. style="stop-color:#FDFEFF"
  709. id="stop75-3" />
  710. <stop
  711. offset="0.6131"
  712. style="stop-color:#F5FAFF"
  713. id="stop77-2" />
  714. <stop
  715. offset="0.7841"
  716. style="stop-color:#E7F3FF"
  717. id="stop79-0" />
  718. <stop
  719. offset="0.9311"
  720. style="stop-color:#D4EAFF"
  721. id="stop81-7" />
  722. <stop
  723. offset="1"
  724. style="stop-color:#C8E4FF"
  725. id="stop83-2" />
  726. </radialGradient>
  727. <clipPath
  728. id="clipPath-349538100-0">
  729. <g
  730. transform="translate(0,-1004.4)"
  731. id="g17-3">
  732. <path
  733. transform="matrix(15.333,0,0,11.5,415,878.86)"
  734. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  735. id="path19-8"
  736. inkscape:connector-curvature="0"
  737. style="fill:#1890d0" />
  738. </g>
  739. </clipPath>
  740. <clipPath
  741. id="clipPath3914-3">
  742. <g
  743. transform="translate(0,-1004.4)"
  744. id="g3912-6">
  745. <path
  746. transform="matrix(15.333,0,0,11.5,415,878.86)"
  747. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  748. id="path3910-2"
  749. inkscape:connector-curvature="0"
  750. style="fill:#1890d0" />
  751. </g>
  752. </clipPath>
  753. <clipPath
  754. id="clipPath3920-2">
  755. <g
  756. transform="translate(0,-1004.4)"
  757. id="g3918-2">
  758. <path
  759. transform="matrix(15.333,0,0,11.5,415,878.86)"
  760. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  761. id="path3916-9"
  762. inkscape:connector-curvature="0"
  763. style="fill:#1890d0" />
  764. </g>
  765. </clipPath>
  766. <filter
  767. id="alpha-3"
  768. width="100%"
  769. height="100%"
  770. x="0%"
  771. y="0%">
  772. <feColorMatrix
  773. in="SourceGraphic"
  774. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  775. id="feColorMatrix929-8" />
  776. </filter>
  777. <mask
  778. id="mask0-2">
  779. <g
  780. filter="url(#alpha)"
  781. id="g934-8"
  782. style="filter:url(#alpha-3)">
  783. <rect
  784. width="384"
  785. height="384"
  786. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  787. id="rect932-5" />
  788. </g>
  789. </mask>
  790. <clipPath
  791. id="clip1-4">
  792. <rect
  793. width="384"
  794. height="384"
  795. id="rect937-5" />
  796. </clipPath>
  797. <g
  798. id="surface5-6"
  799. clip-path="url(#clip1-4)">
  800. <path
  801. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z"
  802. style="fill:rgb(100%,100%,100%)"
  803. id="path940-7" />
  804. </g>
  805. <mask
  806. id="mask1-7">
  807. <g
  808. filter="url(#alpha)"
  809. id="g945-3"
  810. style="filter:url(#alpha-3)">
  811. <rect
  812. width="384"
  813. height="384"
  814. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  815. id="rect943-6" />
  816. </g>
  817. </mask>
  818. <clipPath
  819. id="clip2-4">
  820. <rect
  821. width="384"
  822. height="384"
  823. id="rect948-5" />
  824. </clipPath>
  825. <g
  826. id="surface8-5"
  827. clip-path="url(#clip2-4)">
  828. <path
  829. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z"
  830. style="fill:rgb(0%,0%,0%)"
  831. id="path951-0" />
  832. </g>
  833. <filter
  834. y="-0.082800001"
  835. x="-0.082800001"
  836. width="1.1655999"
  837. height="1.1655999"
  838. id="c-3"
  839. style="color-interpolation-filters:sRGB">
  840. <feGaussianBlur
  841. id="feGaussianBlur10-1"
  842. stdDeviation="2.1101835" />
  843. </filter>
  844. <filter
  845. y="-0.015513"
  846. x="-0.015688"
  847. width="1.031376"
  848. height="1.031026"
  849. id="a-2"
  850. style="color-interpolation-filters:sRGB">
  851. <feGaussianBlur
  852. id="feGaussianBlur2-9"
  853. stdDeviation=".7986332" />
  854. </filter>
  855. <linearGradient
  856. y2="71.020111"
  857. x2="84.091423"
  858. y1="117.04197"
  859. x1="122.34071"
  860. gradientTransform="translate(-204.4472,49.508307)"
  861. gradientUnits="userSpaceOnUse"
  862. id="linearGradient1194"
  863. xlink:href="#linearGradient944"
  864. inkscape:collect="always" />
  865. <linearGradient
  866. id="linearGradient10457">
  867. <stop
  868. id="stop10453"
  869. offset="0"
  870. style="stop-color:#000000;stop-opacity:1;" />
  871. <stop
  872. id="stop10455"
  873. offset="1"
  874. style="stop-color:#000000;stop-opacity:0;" />
  875. </linearGradient>
  876. <linearGradient
  877. id="linearGradient4187">
  878. <stop
  879. id="stop4189"
  880. offset="0"
  881. style="stop-color:#ffffff;stop-opacity:1" />
  882. <stop
  883. id="stop4191"
  884. offset="0.02099473"
  885. style="stop-color:#ffffff;stop-opacity:0.23529412" />
  886. <stop
  887. id="stop4193"
  888. offset="0.97696"
  889. style="stop-color:#ffffff;stop-opacity:0.15686275" />
  890. <stop
  891. id="stop4195"
  892. offset="1"
  893. style="stop-color:#ffffff;stop-opacity:0.39215687" />
  894. </linearGradient>
  895. <linearGradient
  896. id="linearGradient3702-501-757-6-946">
  897. <stop
  898. id="stop3228"
  899. offset="0"
  900. style="stop-color:#181818;stop-opacity:0" />
  901. <stop
  902. id="stop3230"
  903. offset="0.5"
  904. style="stop-color:#181818;stop-opacity:1" />
  905. <stop
  906. id="stop3232"
  907. offset="1"
  908. style="stop-color:#181818;stop-opacity:0" />
  909. </linearGradient>
  910. <linearGradient
  911. gradientTransform="matrix(2.7297298,0,0,2.7297298,-399.6245,-51.888255)"
  912. gradientUnits="userSpaceOnUse"
  913. xlink:href="#linearGradient4187"
  914. id="linearGradient3159"
  915. x1="23.999998"
  916. x2="23.99999"
  917. y1="5.3168221"
  918. y2="43" />
  919. <radialGradient
  920. cx="6.7304144"
  921. cy="9.9571075"
  922. fx="6.2001843"
  923. fy="9.9571075"
  924. gradientTransform="matrix(0,6.6366175,-8.147646,0,-66.832792,189.52692)"
  925. gradientUnits="userSpaceOnUse"
  926. xlink:href="#linearGradient27416-1-2-0-1"
  927. id="radialGradient3395"
  928. r="12.671875" />
  929. <radialGradient
  930. cx="4.9929786"
  931. cy="43.5"
  932. fx="4.9929786"
  933. fy="43.5"
  934. gradientTransform="matrix(5.694965,0,0,0.99999992,-322.77631,21.625258)"
  935. gradientUnits="userSpaceOnUse"
  936. xlink:href="#linearGradient10457"
  937. id="radialGradient2455-1"
  938. r="2.5" />
  939. <radialGradient
  940. cx="4.9929786"
  941. cy="43.5"
  942. fx="4.9929786"
  943. fy="43.5"
  944. gradientTransform="matrix(5.694965,0,0,0.99999992,345.44569,-108.62522)"
  945. gradientUnits="userSpaceOnUse"
  946. xlink:href="#linearGradient10457"
  947. id="radialGradient2457-5"
  948. r="2.5" />
  949. <linearGradient
  950. gradientTransform="matrix(2.8421052,0,0,0.71428566,-402.32153,34.053819)"
  951. gradientUnits="userSpaceOnUse"
  952. xlink:href="#linearGradient3702-501-757-6-946"
  953. id="linearGradient2459-7"
  954. x1="25.058096"
  955. x2="25.058096"
  956. y1="47.027729"
  957. y2="39.999443" />
  958. <radialGradient
  959. cx="-4.0287771"
  960. cy="93.467628"
  961. fx="-4.0287771"
  962. fy="93.467628"
  963. gradientTransform="matrix(1.5563924,0,0,0.16978829,-327.84065,48.755539)"
  964. gradientUnits="userSpaceOnUse"
  965. xlink:href="#linearGradient10457"
  966. id="radialGradient4377"
  967. r="35.338131" />
  968. <linearGradient
  969. id="linearGradient27416-1-2-0-1">
  970. <stop
  971. id="stop27420-2-0-8-7"
  972. offset="0"
  973. style="stop-color:#8cd5ff;stop-opacity:1" />
  974. <stop
  975. id="stop10017"
  976. offset="0.55456889"
  977. style="stop-color:#3689e6;stop-opacity:1" />
  978. <stop
  979. id="stop27422-3-5-3-3"
  980. offset="1"
  981. style="stop-color:#3689e6;stop-opacity:1" />
  982. </linearGradient>
  983. <linearGradient
  984. gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.88479,-40.401242)"
  985. gradientUnits="userSpaceOnUse"
  986. xlink:href="#linearGradient10457"
  987. id="linearGradient11309"
  988. x1="352"
  989. x2="352"
  990. y1="196"
  991. y2="132" />
  992. <linearGradient
  993. gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.87552,-41.224919)"
  994. gradientUnits="userSpaceOnUse"
  995. xlink:href="#linearGradient10457"
  996. id="linearGradient11319"
  997. x1="320"
  998. x2="320"
  999. y1="196"
  1000. y2="152" />
  1001. <linearGradient
  1002. gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.88015,-40.81308)"
  1003. gradientUnits="userSpaceOnUse"
  1004. xlink:href="#linearGradient10457"
  1005. id="linearGradient11321"
  1006. x1="352"
  1007. x2="352"
  1008. y1="196"
  1009. y2="131" />
  1010. <radialGradient
  1011. id="radialGradient3029-45"
  1012. fx="4.4590001"
  1013. fy="8.5088997"
  1014. gradientUnits="userSpaceOnUse"
  1015. cy="8.6258001"
  1016. cx="15.026"
  1017. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1018. r="20">
  1019. <stop
  1020. id="stop4170-2"
  1021. stop-color="#c24251"
  1022. offset="0" />
  1023. <stop
  1024. id="stop4172-8"
  1025. stop-color="#c24251"
  1026. offset=".26238" />
  1027. <stop
  1028. id="stop4174-2"
  1029. stop-color="#a63643"
  1030. offset=".66094" />
  1031. <stop
  1032. id="stop4176-2"
  1033. stop-color="#a63643"
  1034. offset="1" />
  1035. </radialGradient>
  1036. <radialGradient
  1037. id="radialGradient3032-0"
  1038. gradientUnits="userSpaceOnUse"
  1039. cy="3.99"
  1040. cx="23.896"
  1041. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  1042. r="20.396999">
  1043. <stop
  1044. id="stop3244-9-33-7-0-9-9"
  1045. stop-color="#fff"
  1046. offset="0" />
  1047. <stop
  1048. id="stop3246-3-5-0-8-5-5"
  1049. stop-color="#ddd"
  1050. offset=".26238" />
  1051. <stop
  1052. id="stop3248-1-7-8-8-1-0"
  1053. stop-color="#abacae"
  1054. offset=".66094" />
  1055. <stop
  1056. id="stop3250-9-3-0-5-1-5"
  1057. stop-color="#89898b"
  1058. offset="1" />
  1059. </radialGradient>
  1060. <radialGradient
  1061. id="radialGradient3035-8"
  1062. gradientUnits="userSpaceOnUse"
  1063. cy="186.17"
  1064. cx="99.156998"
  1065. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  1066. r="62.769001">
  1067. <stop
  1068. id="stop3822-2-6-3-5"
  1069. stop-color="#3d3d3d"
  1070. offset="0" />
  1071. <stop
  1072. id="stop3864-8-7-7-29"
  1073. stop-color="#686868"
  1074. stop-opacity=".49804"
  1075. offset=".5" />
  1076. <stop
  1077. id="stop3824-1-2-5-9"
  1078. stop-color="#686868"
  1079. stop-opacity="0"
  1080. offset="1" />
  1081. </radialGradient>
  1082. <radialGradient
  1083. id="SVGID_4_-0"
  1084. cx="224.50391"
  1085. cy="186.51421"
  1086. r="127.0051"
  1087. gradientUnits="userSpaceOnUse">
  1088. <stop
  1089. offset="0"
  1090. style="stop-color:#FFFFFF"
  1091. id="stop27-2" />
  1092. <stop
  1093. offset="0.3984"
  1094. style="stop-color:#FDFEFF"
  1095. id="stop29-0" />
  1096. <stop
  1097. offset="0.6131"
  1098. style="stop-color:#F5FAFF"
  1099. id="stop31-4" />
  1100. <stop
  1101. offset="0.7841"
  1102. style="stop-color:#E7F3FF"
  1103. id="stop33-3" />
  1104. <stop
  1105. offset="0.9311"
  1106. style="stop-color:#D4EAFF"
  1107. id="stop35-3" />
  1108. <stop
  1109. offset="1"
  1110. style="stop-color:#C8E4FF"
  1111. id="stop37-8" />
  1112. </radialGradient>
  1113. <radialGradient
  1114. gradientUnits="userSpaceOnUse"
  1115. r="26.769501"
  1116. cy="286.66409"
  1117. cx="324.69339"
  1118. id="SVGID_5_-8">
  1119. <stop
  1120. id="stop50-7"
  1121. style="stop-color:#FFFFFF"
  1122. offset="0" />
  1123. <stop
  1124. id="stop52-7"
  1125. style="stop-color:#FDFEFF"
  1126. offset="0.3984" />
  1127. <stop
  1128. id="stop54-4"
  1129. style="stop-color:#F5FAFF"
  1130. offset="0.6131" />
  1131. <stop
  1132. id="stop56-4"
  1133. style="stop-color:#E7F3FF"
  1134. offset="0.7841" />
  1135. <stop
  1136. id="stop58-2"
  1137. style="stop-color:#D4EAFF"
  1138. offset="0.9311" />
  1139. <stop
  1140. id="stop60-6"
  1141. style="stop-color:#C8E4FF"
  1142. offset="1" />
  1143. </radialGradient>
  1144. <radialGradient
  1145. gradientUnits="userSpaceOnUse"
  1146. r="46.444901"
  1147. cy="392.77249"
  1148. cx="325"
  1149. id="SVGID_6_-2">
  1150. <stop
  1151. id="stop73-4"
  1152. style="stop-color:#FFFFFF"
  1153. offset="0" />
  1154. <stop
  1155. id="stop75-0"
  1156. style="stop-color:#FDFEFF"
  1157. offset="0.3984" />
  1158. <stop
  1159. id="stop77-4"
  1160. style="stop-color:#F5FAFF"
  1161. offset="0.6131" />
  1162. <stop
  1163. id="stop79-5"
  1164. style="stop-color:#E7F3FF"
  1165. offset="0.7841" />
  1166. <stop
  1167. id="stop81-8"
  1168. style="stop-color:#D4EAFF"
  1169. offset="0.9311" />
  1170. <stop
  1171. id="stop83-6"
  1172. style="stop-color:#C8E4FF"
  1173. offset="1" />
  1174. </radialGradient>
  1175. <clipPath
  1176. id="clipPath-349538100-3">
  1177. <g
  1178. id="g17-8"
  1179. transform="translate(0,-1004.4)">
  1180. <path
  1181. style="fill:#1890d0"
  1182. inkscape:connector-curvature="0"
  1183. id="path19-2"
  1184. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1185. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1186. </g>
  1187. </clipPath>
  1188. <clipPath
  1189. id="clipPath3914-7">
  1190. <g
  1191. id="g3912-7"
  1192. transform="translate(0,-1004.4)">
  1193. <path
  1194. style="fill:#1890d0"
  1195. inkscape:connector-curvature="0"
  1196. id="path3910-1"
  1197. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1198. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1199. </g>
  1200. </clipPath>
  1201. <clipPath
  1202. id="clipPath3920-7">
  1203. <g
  1204. id="g3918-7"
  1205. transform="translate(0,-1004.4)">
  1206. <path
  1207. style="fill:#1890d0"
  1208. inkscape:connector-curvature="0"
  1209. id="path3916-0"
  1210. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1211. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1212. </g>
  1213. </clipPath>
  1214. <filter
  1215. y="0%"
  1216. x="0%"
  1217. height="100%"
  1218. width="100%"
  1219. id="alpha-9">
  1220. <feColorMatrix
  1221. id="feColorMatrix929-4"
  1222. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1223. in="SourceGraphic" />
  1224. </filter>
  1225. <mask
  1226. id="mask0-4">
  1227. <g
  1228. style="filter:url(#alpha-9)"
  1229. id="g934-4"
  1230. filter="url(#alpha)">
  1231. <rect
  1232. id="rect932-8"
  1233. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1234. height="384"
  1235. width="384" />
  1236. </g>
  1237. </mask>
  1238. <clipPath
  1239. id="clip1-9">
  1240. <rect
  1241. id="rect937-2"
  1242. height="384"
  1243. width="384" />
  1244. </clipPath>
  1245. <g
  1246. clip-path="url(#clip1-9)"
  1247. id="surface5-8">
  1248. <path
  1249. id="path940-6"
  1250. style="fill:rgb(100%,100%,100%)"
  1251. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
  1252. </g>
  1253. <mask
  1254. id="mask1-0">
  1255. <g
  1256. style="filter:url(#alpha-9)"
  1257. id="g945-4"
  1258. filter="url(#alpha)">
  1259. <rect
  1260. id="rect943-2"
  1261. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1262. height="384"
  1263. width="384" />
  1264. </g>
  1265. </mask>
  1266. <clipPath
  1267. id="clip2-41">
  1268. <rect
  1269. id="rect948-4"
  1270. height="384"
  1271. width="384" />
  1272. </clipPath>
  1273. <g
  1274. clip-path="url(#clip2-41)"
  1275. id="surface8-1">
  1276. <path
  1277. id="path951-3"
  1278. style="fill:rgb(0%,0%,0%)"
  1279. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
  1280. </g>
  1281. <filter
  1282. style="color-interpolation-filters:sRGB"
  1283. id="c-2"
  1284. height="1.1655999"
  1285. width="1.1655999"
  1286. x="-0.082800001"
  1287. y="-0.082800001">
  1288. <feGaussianBlur
  1289. stdDeviation="2.1101835"
  1290. id="feGaussianBlur10-8" />
  1291. </filter>
  1292. <filter
  1293. style="color-interpolation-filters:sRGB"
  1294. id="a-0"
  1295. height="1.031026"
  1296. width="1.031376"
  1297. x="-0.015688"
  1298. y="-0.015513">
  1299. <feGaussianBlur
  1300. stdDeviation=".7986332"
  1301. id="feGaussianBlur2-8" />
  1302. </filter>
  1303. <clipPath
  1304. id="clip1-8-4">
  1305. <path
  1306. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  1307. id="path952-0" />
  1308. </clipPath>
  1309. <clipPath
  1310. id="clip2-3-7">
  1311. <path
  1312. d="M 515.4375 185.300781 C 515.4375 356.074219 370.535156 494.394531 192 494.394531 C 13.460938 494.394531 -131.4375 356.074219 -131.4375 185.300781 C -131.4375 14.523438 13.460938 -123.796875 192 -123.796875 C 370.535156 -123.796875 515.4375 14.523438 515.4375 185.300781 Z M 515.4375 185.300781"
  1313. id="path955-7" />
  1314. </clipPath>
  1315. <radialGradient
  1316. r="20"
  1317. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1318. cx="15.026"
  1319. cy="8.6258001"
  1320. gradientUnits="userSpaceOnUse"
  1321. fy="8.5088997"
  1322. fx="4.4590001"
  1323. id="radialGradient3029-4-6">
  1324. <stop
  1325. style="stop-color:#354bf9;stop-opacity:1"
  1326. offset="0"
  1327. stop-color="#c24251"
  1328. id="stop4170-8-9" />
  1329. <stop
  1330. style="stop-color:#58cdf0;stop-opacity:1"
  1331. offset="1"
  1332. stop-color="#a63643"
  1333. id="stop4176-3-5" />
  1334. </radialGradient>
  1335. <radialGradient
  1336. r="20.396999"
  1337. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  1338. cx="23.896"
  1339. cy="3.99"
  1340. gradientUnits="userSpaceOnUse"
  1341. id="radialGradient3032-3-8">
  1342. <stop
  1343. offset="0"
  1344. stop-color="#fff"
  1345. id="stop3244-9-33-7-0-9-4-3" />
  1346. <stop
  1347. offset=".26238"
  1348. stop-color="#ddd"
  1349. id="stop3246-3-5-0-8-5-0-8" />
  1350. <stop
  1351. offset=".66094"
  1352. stop-color="#abacae"
  1353. id="stop3248-1-7-8-8-1-8-5" />
  1354. <stop
  1355. offset="1"
  1356. stop-color="#89898b"
  1357. id="stop3250-9-3-0-5-1-4-4" />
  1358. </radialGradient>
  1359. <radialGradient
  1360. r="62.769001"
  1361. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  1362. cx="99.156998"
  1363. cy="186.17"
  1364. gradientUnits="userSpaceOnUse"
  1365. id="radialGradient3035-3-1">
  1366. <stop
  1367. offset="0"
  1368. stop-color="#3d3d3d"
  1369. id="stop3822-2-6-3-0-6" />
  1370. <stop
  1371. offset=".5"
  1372. stop-opacity=".49804"
  1373. stop-color="#686868"
  1374. id="stop3864-8-7-7-2-3" />
  1375. <stop
  1376. offset="1"
  1377. stop-opacity="0"
  1378. stop-color="#686868"
  1379. id="stop3824-1-2-5-4-5" />
  1380. </radialGradient>
  1381. <radialGradient
  1382. gradientUnits="userSpaceOnUse"
  1383. r="127.0051"
  1384. cy="186.51421"
  1385. cx="224.50391"
  1386. id="SVGID_4_-1-5">
  1387. <stop
  1388. id="stop27-7-6"
  1389. style="stop-color:#FFFFFF"
  1390. offset="0" />
  1391. <stop
  1392. id="stop29-6-7"
  1393. style="stop-color:#FDFEFF"
  1394. offset="0.3984" />
  1395. <stop
  1396. id="stop31-2-5"
  1397. style="stop-color:#F5FAFF"
  1398. offset="0.6131" />
  1399. <stop
  1400. id="stop33-6-5"
  1401. style="stop-color:#E7F3FF"
  1402. offset="0.7841" />
  1403. <stop
  1404. id="stop35-2-8"
  1405. style="stop-color:#D4EAFF"
  1406. offset="0.9311" />
  1407. <stop
  1408. id="stop37-5-0"
  1409. style="stop-color:#C8E4FF"
  1410. offset="1" />
  1411. </radialGradient>
  1412. <radialGradient
  1413. id="SVGID_5_-9-4"
  1414. cx="324.69339"
  1415. cy="286.66409"
  1416. r="26.769501"
  1417. gradientUnits="userSpaceOnUse">
  1418. <stop
  1419. offset="0"
  1420. style="stop-color:#FFFFFF"
  1421. id="stop50-2-9" />
  1422. <stop
  1423. offset="0.3984"
  1424. style="stop-color:#FDFEFF"
  1425. id="stop52-0-5" />
  1426. <stop
  1427. offset="0.6131"
  1428. style="stop-color:#F5FAFF"
  1429. id="stop54-5-6" />
  1430. <stop
  1431. offset="0.7841"
  1432. style="stop-color:#E7F3FF"
  1433. id="stop56-9-8" />
  1434. <stop
  1435. offset="0.9311"
  1436. style="stop-color:#D4EAFF"
  1437. id="stop58-7-7" />
  1438. <stop
  1439. offset="1"
  1440. style="stop-color:#C8E4FF"
  1441. id="stop60-2-7" />
  1442. </radialGradient>
  1443. <radialGradient
  1444. id="SVGID_6_-7-4"
  1445. cx="325"
  1446. cy="392.77249"
  1447. r="46.444901"
  1448. gradientUnits="userSpaceOnUse">
  1449. <stop
  1450. offset="0"
  1451. style="stop-color:#FFFFFF"
  1452. id="stop73-5-7" />
  1453. <stop
  1454. offset="0.3984"
  1455. style="stop-color:#FDFEFF"
  1456. id="stop75-3-4" />
  1457. <stop
  1458. offset="0.6131"
  1459. style="stop-color:#F5FAFF"
  1460. id="stop77-2-1" />
  1461. <stop
  1462. offset="0.7841"
  1463. style="stop-color:#E7F3FF"
  1464. id="stop79-0-8" />
  1465. <stop
  1466. offset="0.9311"
  1467. style="stop-color:#D4EAFF"
  1468. id="stop81-7-2" />
  1469. <stop
  1470. offset="1"
  1471. style="stop-color:#C8E4FF"
  1472. id="stop83-2-2" />
  1473. </radialGradient>
  1474. <clipPath
  1475. id="clipPath-349538100-0-5">
  1476. <g
  1477. transform="translate(0,-1004.4)"
  1478. id="g17-3-3">
  1479. <path
  1480. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1481. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1482. id="path19-8-6"
  1483. inkscape:connector-curvature="0"
  1484. style="fill:#1890d0" />
  1485. </g>
  1486. </clipPath>
  1487. <clipPath
  1488. id="clipPath3914-3-3">
  1489. <g
  1490. transform="translate(0,-1004.4)"
  1491. id="g3912-6-0">
  1492. <path
  1493. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1494. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1495. id="path3910-2-2"
  1496. inkscape:connector-curvature="0"
  1497. style="fill:#1890d0" />
  1498. </g>
  1499. </clipPath>
  1500. <clipPath
  1501. id="clipPath3920-2-4">
  1502. <g
  1503. transform="translate(0,-1004.4)"
  1504. id="g3918-2-6">
  1505. <path
  1506. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1507. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1508. id="path3916-9-7"
  1509. inkscape:connector-curvature="0"
  1510. style="fill:#1890d0" />
  1511. </g>
  1512. </clipPath>
  1513. <filter
  1514. id="alpha-3-1"
  1515. width="100%"
  1516. height="100%"
  1517. x="0%"
  1518. y="0%">
  1519. <feColorMatrix
  1520. in="SourceGraphic"
  1521. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1522. id="feColorMatrix929-8-3" />
  1523. </filter>
  1524. <mask
  1525. id="mask0-2-4">
  1526. <g
  1527. filter="url(#alpha)"
  1528. id="g934-8-8"
  1529. style="filter:url(#alpha-3-1)">
  1530. <rect
  1531. width="384"
  1532. height="384"
  1533. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1534. id="rect932-5-8" />
  1535. </g>
  1536. </mask>
  1537. <clipPath
  1538. id="clip1-4-1">
  1539. <rect
  1540. width="384"
  1541. height="384"
  1542. id="rect937-5-7" />
  1543. </clipPath>
  1544. <g
  1545. id="surface5-6-0"
  1546. clip-path="url(#clip1-4-1)">
  1547. <path
  1548. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z"
  1549. style="fill:rgb(100%,100%,100%)"
  1550. id="path940-7-5" />
  1551. </g>
  1552. <mask
  1553. id="mask1-7-6">
  1554. <g
  1555. filter="url(#alpha)"
  1556. id="g945-3-8"
  1557. style="filter:url(#alpha-3-1)">
  1558. <rect
  1559. width="384"
  1560. height="384"
  1561. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1562. id="rect943-6-4" />
  1563. </g>
  1564. </mask>
  1565. <clipPath
  1566. id="clip2-4-6">
  1567. <rect
  1568. width="384"
  1569. height="384"
  1570. id="rect948-5-5" />
  1571. </clipPath>
  1572. <g
  1573. id="surface8-5-1"
  1574. clip-path="url(#clip2-4-6)">
  1575. <path
  1576. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z"
  1577. style="fill:rgb(0%,0%,0%)"
  1578. id="path951-0-1" />
  1579. </g>
  1580. <filter
  1581. y="-0.082800001"
  1582. x="-0.082800001"
  1583. width="1.1655999"
  1584. height="1.1655999"
  1585. id="c-3-5"
  1586. style="color-interpolation-filters:sRGB">
  1587. <feGaussianBlur
  1588. id="feGaussianBlur10-1-7"
  1589. stdDeviation="2.1101835" />
  1590. </filter>
  1591. <filter
  1592. y="-0.015513"
  1593. x="-0.015688"
  1594. width="1.031376"
  1595. height="1.031026"
  1596. id="a-2-4"
  1597. style="color-interpolation-filters:sRGB">
  1598. <feGaussianBlur
  1599. id="feGaussianBlur2-9-3"
  1600. stdDeviation=".7986332" />
  1601. </filter>
  1602. <filter
  1603. id="Xz97CxlifTHANJtERI5kl0UUr7WfRYvq"
  1604. width="400%"
  1605. height="400%"
  1606. x="-200%"
  1607. y="-200%"
  1608. color-interpolation-filters="sRGB"
  1609. filterUnits="objectBoundingBox">
  1610. <feGaussianBlur
  1611. in="SourceGraphic"
  1612. stdDeviation="4.294"
  1613. id="feGaussianBlur1005" />
  1614. <feOffset
  1615. dx="0"
  1616. dy="4"
  1617. result="pf_100_offsetBlur"
  1618. id="feOffset1007" />
  1619. <feFlood
  1620. flood-opacity=".4"
  1621. id="feFlood1009" />
  1622. <feComposite
  1623. in2="pf_100_offsetBlur"
  1624. operator="in"
  1625. result="pf_100_dropShadow"
  1626. id="feComposite1011" />
  1627. <feBlend
  1628. in="SourceGraphic"
  1629. in2="pf_100_dropShadow"
  1630. mode="normal"
  1631. id="feBlend1013" />
  1632. </filter>
  1633. <filter
  1634. id="4Gm5ayg2wEcihmTWLHNpl5NooRhnv9nx"
  1635. width="400%"
  1636. height="400%"
  1637. x="-200%"
  1638. y="-200%"
  1639. color-interpolation-filters="sRGB"
  1640. filterUnits="objectBoundingBox">
  1641. <feGaussianBlur
  1642. stdDeviation="4.294"
  1643. id="feGaussianBlur1042" />
  1644. </filter>
  1645. <linearGradient
  1646. id="linearGradient4345"
  1647. inkscape:collect="always">
  1648. <stop
  1649. id="stop4347"
  1650. offset="0"
  1651. style="stop-color:#9bdb4d;stop-opacity:1" />
  1652. <stop
  1653. id="stop4349"
  1654. offset="1"
  1655. style="stop-color:#3a9104;stop-opacity:1" />
  1656. </linearGradient>
  1657. <linearGradient
  1658. inkscape:collect="always"
  1659. id="linearGradient4327">
  1660. <stop
  1661. style="stop-color:#d1ff82;stop-opacity:1"
  1662. offset="0"
  1663. id="stop4329" />
  1664. <stop
  1665. style="stop-color:#9bdb4d;stop-opacity:1"
  1666. offset="1"
  1667. id="stop4331" />
  1668. </linearGradient>
  1669. <linearGradient
  1670. inkscape:collect="always"
  1671. id="linearGradient4315">
  1672. <stop
  1673. style="stop-color:#fff394;stop-opacity:1"
  1674. offset="0"
  1675. id="stop4317" />
  1676. <stop
  1677. style="stop-color:#d1ff82;stop-opacity:1"
  1678. offset="1"
  1679. id="stop4319" />
  1680. </linearGradient>
  1681. <linearGradient
  1682. id="linearGradient3820-7-2-8-6">
  1683. <stop
  1684. id="stop3822-2-6-5-0"
  1685. style="stop-color:#3d3d3d;stop-opacity:1"
  1686. offset="0" />
  1687. <stop
  1688. id="stop3864-8-7-4-1"
  1689. style="stop-color:#686868;stop-opacity:0.49803922"
  1690. offset="0.5" />
  1691. <stop
  1692. id="stop3824-1-2-6-7"
  1693. style="stop-color:#686868;stop-opacity:0"
  1694. offset="1" />
  1695. </linearGradient>
  1696. <linearGradient
  1697. id="linearGradient4806">
  1698. <stop
  1699. offset="0"
  1700. style="stop-color:#ffffff;stop-opacity:1"
  1701. id="stop4808" />
  1702. <stop
  1703. offset="0.42447853"
  1704. style="stop-color:#ffffff;stop-opacity:0.23529412"
  1705. id="stop4810" />
  1706. <stop
  1707. offset="0.82089913"
  1708. style="stop-color:#ffffff;stop-opacity:0.15686275"
  1709. id="stop4812" />
  1710. <stop
  1711. offset="1"
  1712. style="stop-color:#ffffff;stop-opacity:0.39215687"
  1713. id="stop4814" />
  1714. </linearGradient>
  1715. <linearGradient
  1716. xlink:href="#linearGradient4806"
  1717. id="linearGradient3118"
  1718. gradientUnits="userSpaceOnUse"
  1719. gradientTransform="matrix(4.16388,0,0,4.16388,-236.03265,-50.534426)"
  1720. x1="71.204407"
  1721. y1="15.369057"
  1722. x2="71.204407"
  1723. y2="40.495617" />
  1724. <radialGradient
  1725. xlink:href="#linearGradient3820-7-2-8-6"
  1726. id="radialGradient3163"
  1727. gradientUnits="userSpaceOnUse"
  1728. gradientTransform="matrix(0.45008973,0.25985944,-0.10079159,0.17457619,20.093182,44.077587)"
  1729. cx="99.157013"
  1730. cy="186.17059"
  1731. fx="99.157013"
  1732. fy="186.17059"
  1733. r="62.769119" />
  1734. <linearGradient
  1735. id="linearGradient3242-7-3-8-0-4-58-06">
  1736. <stop
  1737. offset="0"
  1738. style="stop-color:#cdf87e;stop-opacity:1"
  1739. id="stop3244-5-8-5-6-4-3-8" />
  1740. <stop
  1741. offset="0.26238"
  1742. style="stop-color:#a2e34f;stop-opacity:1"
  1743. id="stop3246-9-5-1-5-3-0-7" />
  1744. <stop
  1745. offset="0.66093999"
  1746. style="stop-color:#68b723;stop-opacity:1"
  1747. id="stop3248-7-2-0-7-5-35-9" />
  1748. <stop
  1749. offset="1"
  1750. style="stop-color:#1d7e0d;stop-opacity:1"
  1751. id="stop3250-8-2-8-5-6-40-4" />
  1752. </linearGradient>
  1753. <radialGradient
  1754. gradientTransform="matrix(0,2.4235253,-2.6392787,0,226.36903,-84.88818)"
  1755. gradientUnits="userSpaceOnUse"
  1756. xlink:href="#linearGradient3242-7-3-8-0-4-58-06"
  1757. id="radialGradient3381"
  1758. fy="48.76759"
  1759. fx="66.127159"
  1760. r="31.000002"
  1761. cy="48.76759"
  1762. cx="66.127159" />
  1763. <linearGradient
  1764. gradientTransform="matrix(2.1134672,0,0,1.645562,50.724212,61.899946)"
  1765. gradientUnits="userSpaceOnUse"
  1766. xlink:href="#linearGradient4361"
  1767. id="linearGradient3030"
  1768. y2="37.130203"
  1769. x2="24.138529"
  1770. y1="9.1762295"
  1771. x1="24.138529" />
  1772. <linearGradient
  1773. id="linearGradient4361">
  1774. <stop
  1775. offset="0"
  1776. style="stop-color:#ffffff;stop-opacity:1"
  1777. id="stop4363" />
  1778. <stop
  1779. offset="0"
  1780. style="stop-color:#ffffff;stop-opacity:0.23529412"
  1781. id="stop4365" />
  1782. <stop
  1783. offset="1"
  1784. style="stop-color:#ffffff;stop-opacity:0.15686275"
  1785. id="stop4367" />
  1786. <stop
  1787. offset="1"
  1788. style="stop-color:#ffffff;stop-opacity:0.39215687"
  1789. id="stop4369" />
  1790. </linearGradient>
  1791. <linearGradient
  1792. gradientTransform="matrix(1.6592445,0,0,2.0928522,60.832154,51.571789)"
  1793. gradientUnits="userSpaceOnUse"
  1794. xlink:href="#linearGradient4351"
  1795. id="linearGradient3030-1"
  1796. y2="26.484531"
  1797. x2="24.138529"
  1798. y1="19.795095"
  1799. x1="24.138529" />
  1800. <linearGradient
  1801. id="linearGradient4351">
  1802. <stop
  1803. offset="0"
  1804. style="stop-color:#ffffff;stop-opacity:1"
  1805. id="stop4353" />
  1806. <stop
  1807. offset="0.00000015"
  1808. style="stop-color:#ffffff;stop-opacity:0.23529412"
  1809. id="stop4355" />
  1810. <stop
  1811. offset="1"
  1812. style="stop-color:#ffffff;stop-opacity:0.15686275"
  1813. id="stop4357" />
  1814. <stop
  1815. offset="1"
  1816. style="stop-color:#ffffff;stop-opacity:0.39215687"
  1817. id="stop4359" />
  1818. </linearGradient>
  1819. <radialGradient
  1820. cx="-14.890854"
  1821. cy="11.546391"
  1822. r="19.99999"
  1823. fx="-14.890854"
  1824. fy="11.546391"
  1825. id="radialGradient3183"
  1826. xlink:href="#linearGradient4330"
  1827. gradientUnits="userSpaceOnUse"
  1828. gradientTransform="matrix(-9.9735355e-6,17.900638,18.571439,0,-152.28499,218.151)" />
  1829. <linearGradient
  1830. id="linearGradient4330">
  1831. <stop
  1832. offset="0"
  1833. style="stop-color:#95a3ab;stop-opacity:1"
  1834. id="stop4332" />
  1835. <stop
  1836. offset="0.26238"
  1837. style="stop-color:#667885;stop-opacity:1"
  1838. id="stop4334" />
  1839. <stop
  1840. offset="0.704952"
  1841. style="stop-color:#485a6c;stop-opacity:1"
  1842. id="stop4336" />
  1843. <stop
  1844. offset="1"
  1845. style="stop-color:#273445;stop-opacity:1"
  1846. id="stop4338" />
  1847. </linearGradient>
  1848. <linearGradient
  1849. inkscape:collect="always"
  1850. id="linearGradient4272">
  1851. <stop
  1852. style="stop-color:#d1ff82;stop-opacity:1"
  1853. offset="0"
  1854. id="stop4274" />
  1855. <stop
  1856. style="stop-color:#68b723;stop-opacity:1"
  1857. offset="1"
  1858. id="stop4276" />
  1859. </linearGradient>
  1860. <linearGradient
  1861. inkscape:collect="always"
  1862. id="linearGradient4246">
  1863. <stop
  1864. style="stop-color:#9bdb4d;stop-opacity:1"
  1865. offset="0"
  1866. id="stop4248" />
  1867. <stop
  1868. style="stop-color:#206b00;stop-opacity:1"
  1869. offset="1"
  1870. id="stop4250" />
  1871. </linearGradient>
  1872. <linearGradient
  1873. inkscape:collect="always"
  1874. id="linearGradient4352">
  1875. <stop
  1876. style="stop-color:#ffffff;stop-opacity:1"
  1877. offset="0"
  1878. id="stop4354" />
  1879. <stop
  1880. style="stop-color:#ffffff;stop-opacity:0.37820512"
  1881. offset="1"
  1882. id="stop4356" />
  1883. </linearGradient>
  1884. <radialGradient
  1885. inkscape:collect="always"
  1886. xlink:href="#linearGradient4315"
  1887. id="radialGradient4254-3"
  1888. cx="31.953705"
  1889. cy="12.999992"
  1890. fx="31.953705"
  1891. fy="12.999992"
  1892. r="5.5"
  1893. gradientUnits="userSpaceOnUse"
  1894. gradientTransform="matrix(-6.7294293,0,0,-3.2049303,225.03535,33.731874)" />
  1895. <radialGradient
  1896. inkscape:collect="always"
  1897. xlink:href="#linearGradient4327"
  1898. id="radialGradient4252-3"
  1899. cx="31.999998"
  1900. cy="-4.0714331"
  1901. fx="31.999998"
  1902. fy="-4.0714331"
  1903. r="5.5"
  1904. gradientUnits="userSpaceOnUse"
  1905. gradientTransform="matrix(2.1418729,3.7095783,-3.0530017,1.7625305,-85.054065,-120.36629)" />
  1906. <radialGradient
  1907. inkscape:collect="always"
  1908. xlink:href="#linearGradient4327"
  1909. id="radialGradient4252-0"
  1910. cx="31.999998"
  1911. cy="-4.0714331"
  1912. fx="31.999998"
  1913. fy="-4.0714331"
  1914. r="5.5"
  1915. gradientUnits="userSpaceOnUse"
  1916. gradientTransform="matrix(2.1418729,3.7095783,-3.0530017,1.7625305,-85.054065,-120.36629)" />
  1917. <radialGradient
  1918. inkscape:collect="always"
  1919. xlink:href="#linearGradient4327"
  1920. id="radialGradient4681-0"
  1921. gradientUnits="userSpaceOnUse"
  1922. gradientTransform="matrix(2.4302854,4.2093776,-3.4641016,2,-154.64665,-95.784643)"
  1923. cx="30.854206"
  1924. cy="-20.571434"
  1925. fx="30.854206"
  1926. fy="-20.571434"
  1927. r="5.5" />
  1928. <radialGradient
  1929. inkscape:collect="always"
  1930. xlink:href="#linearGradient4272"
  1931. id="radialGradient4278-1"
  1932. cx="32"
  1933. cy="27"
  1934. fx="32"
  1935. fy="27"
  1936. r="5.5"
  1937. gradientUnits="userSpaceOnUse"
  1938. gradientTransform="matrix(1.3779312e-6,3.2049304,-5.1271858,2.2049922e-6,148.12754,-101.67648)" />
  1939. <radialGradient
  1940. inkscape:collect="always"
  1941. xlink:href="#linearGradient4345"
  1942. id="radialGradient4262-2"
  1943. cx="27.562176"
  1944. cy="-10.313467"
  1945. fx="27.562176"
  1946. fy="-10.313467"
  1947. r="5.5"
  1948. gradientUnits="userSpaceOnUse"
  1949. gradientTransform="matrix(-2.0831333,3.6078455,-3.0530015,-1.7625302,31.349364,-125.24363)" />
  1950. <radialGradient
  1951. inkscape:collect="always"
  1952. xlink:href="#linearGradient4345"
  1953. id="radialGradient4262-28"
  1954. cx="27.562176"
  1955. cy="-10.313467"
  1956. fx="27.562176"
  1957. fy="-10.313467"
  1958. r="5.5"
  1959. gradientUnits="userSpaceOnUse"
  1960. gradientTransform="matrix(-2.0831333,3.6078455,-3.0530015,-1.7625302,31.349364,-125.24363)" />
  1961. <radialGradient
  1962. inkscape:collect="always"
  1963. xlink:href="#linearGradient4246"
  1964. id="radialGradient4260-6"
  1965. cx="32.000004"
  1966. cy="51"
  1967. fx="32.000004"
  1968. fy="51"
  1969. r="5.5"
  1970. gradientUnits="userSpaceOnUse"
  1971. gradientTransform="matrix(-5.0426854e-8,6.7303541,-7.049879,-5.2835362e-8,369.2374,-214.49)" />
  1972. <linearGradient
  1973. inkscape:collect="always"
  1974. xlink:href="#linearGradient4352"
  1975. id="linearGradient4358-3"
  1976. x1="32"
  1977. y1="3"
  1978. x2="32"
  1979. y2="13"
  1980. gradientUnits="userSpaceOnUse"
  1981. gradientTransform="matrix(1.7624701,0,0,1.7627118,-47.967977,-5.6694573)" />
  1982. <radialGradient
  1983. id="radialGradient3029-7"
  1984. fx="4.4590001"
  1985. fy="8.5088997"
  1986. gradientUnits="userSpaceOnUse"
  1987. cy="8.6258001"
  1988. cx="15.026"
  1989. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1990. r="20">
  1991. <stop
  1992. id="stop4170-85"
  1993. stop-color="#c24251"
  1994. offset="0" />
  1995. <stop
  1996. id="stop4172-3"
  1997. stop-color="#c24251"
  1998. offset=".26238" />
  1999. <stop
  2000. id="stop4174-9"
  2001. stop-color="#a63643"
  2002. offset=".66094" />
  2003. <stop
  2004. id="stop4176-8"
  2005. stop-color="#a63643"
  2006. offset="1" />
  2007. </radialGradient>
  2008. <radialGradient
  2009. id="radialGradient3032-8"
  2010. gradientUnits="userSpaceOnUse"
  2011. cy="3.99"
  2012. cx="23.896"
  2013. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  2014. r="20.396999">
  2015. <stop
  2016. id="stop3244-9-33-7-0-9-8"
  2017. stop-color="#fff"
  2018. offset="0" />
  2019. <stop
  2020. id="stop3246-3-5-0-8-5-3"
  2021. stop-color="#ddd"
  2022. offset=".26238" />
  2023. <stop
  2024. id="stop3248-1-7-8-8-1-3"
  2025. stop-color="#abacae"
  2026. offset=".66094" />
  2027. <stop
  2028. id="stop3250-9-3-0-5-1-0"
  2029. stop-color="#89898b"
  2030. offset="1" />
  2031. </radialGradient>
  2032. <radialGradient
  2033. id="radialGradient3035-2"
  2034. gradientUnits="userSpaceOnUse"
  2035. cy="186.17"
  2036. cx="99.156998"
  2037. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2038. r="62.769001">
  2039. <stop
  2040. id="stop3822-2-6-3-3"
  2041. stop-color="#3d3d3d"
  2042. offset="0" />
  2043. <stop
  2044. id="stop3864-8-7-7-7"
  2045. stop-color="#686868"
  2046. stop-opacity=".49804"
  2047. offset=".5" />
  2048. <stop
  2049. id="stop3824-1-2-5-98"
  2050. stop-color="#686868"
  2051. stop-opacity="0"
  2052. offset="1" />
  2053. </radialGradient>
  2054. <radialGradient
  2055. id="SVGID_4_-7"
  2056. cx="224.50391"
  2057. cy="186.51421"
  2058. r="127.0051"
  2059. gradientUnits="userSpaceOnUse">
  2060. <stop
  2061. offset="0"
  2062. style="stop-color:#FFFFFF"
  2063. id="stop27-0" />
  2064. <stop
  2065. offset="0.3984"
  2066. style="stop-color:#FDFEFF"
  2067. id="stop29-60" />
  2068. <stop
  2069. offset="0.6131"
  2070. style="stop-color:#F5FAFF"
  2071. id="stop31-23" />
  2072. <stop
  2073. offset="0.7841"
  2074. style="stop-color:#E7F3FF"
  2075. id="stop33-7" />
  2076. <stop
  2077. offset="0.9311"
  2078. style="stop-color:#D4EAFF"
  2079. id="stop35-0" />
  2080. <stop
  2081. offset="1"
  2082. style="stop-color:#C8E4FF"
  2083. id="stop37-2" />
  2084. </radialGradient>
  2085. <radialGradient
  2086. gradientUnits="userSpaceOnUse"
  2087. r="26.769501"
  2088. cy="286.66409"
  2089. cx="324.69339"
  2090. id="SVGID_5_-1">
  2091. <stop
  2092. id="stop50-9"
  2093. style="stop-color:#FFFFFF"
  2094. offset="0" />
  2095. <stop
  2096. id="stop52-09"
  2097. style="stop-color:#FDFEFF"
  2098. offset="0.3984" />
  2099. <stop
  2100. id="stop54-7"
  2101. style="stop-color:#F5FAFF"
  2102. offset="0.6131" />
  2103. <stop
  2104. id="stop56-5"
  2105. style="stop-color:#E7F3FF"
  2106. offset="0.7841" />
  2107. <stop
  2108. id="stop58-8"
  2109. style="stop-color:#D4EAFF"
  2110. offset="0.9311" />
  2111. <stop
  2112. id="stop60-5"
  2113. style="stop-color:#C8E4FF"
  2114. offset="1" />
  2115. </radialGradient>
  2116. <radialGradient
  2117. gradientUnits="userSpaceOnUse"
  2118. r="46.444901"
  2119. cy="392.77249"
  2120. cx="325"
  2121. id="SVGID_6_-3">
  2122. <stop
  2123. id="stop73-8"
  2124. style="stop-color:#FFFFFF"
  2125. offset="0" />
  2126. <stop
  2127. id="stop75-8"
  2128. style="stop-color:#FDFEFF"
  2129. offset="0.3984" />
  2130. <stop
  2131. id="stop77-8"
  2132. style="stop-color:#F5FAFF"
  2133. offset="0.6131" />
  2134. <stop
  2135. id="stop79-1"
  2136. style="stop-color:#E7F3FF"
  2137. offset="0.7841" />
  2138. <stop
  2139. id="stop81-2"
  2140. style="stop-color:#D4EAFF"
  2141. offset="0.9311" />
  2142. <stop
  2143. id="stop83-1"
  2144. style="stop-color:#C8E4FF"
  2145. offset="1" />
  2146. </radialGradient>
  2147. <clipPath
  2148. id="clipPath-349538100-8">
  2149. <g
  2150. id="g17-1"
  2151. transform="translate(0,-1004.4)">
  2152. <path
  2153. style="fill:#1890d0"
  2154. inkscape:connector-curvature="0"
  2155. id="path19-1"
  2156. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2157. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2158. </g>
  2159. </clipPath>
  2160. <clipPath
  2161. id="clipPath3914-32">
  2162. <g
  2163. id="g3912-8"
  2164. transform="translate(0,-1004.4)">
  2165. <path
  2166. style="fill:#1890d0"
  2167. inkscape:connector-curvature="0"
  2168. id="path3910-29"
  2169. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2170. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2171. </g>
  2172. </clipPath>
  2173. <clipPath
  2174. id="clipPath3920-9">
  2175. <g
  2176. id="g3918-8"
  2177. transform="translate(0,-1004.4)">
  2178. <path
  2179. style="fill:#1890d0"
  2180. inkscape:connector-curvature="0"
  2181. id="path3916-2"
  2182. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2183. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2184. </g>
  2185. </clipPath>
  2186. <filter
  2187. y="0%"
  2188. x="0%"
  2189. height="100%"
  2190. width="100%"
  2191. id="alpha-31">
  2192. <feColorMatrix
  2193. id="feColorMatrix929-3"
  2194. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  2195. in="SourceGraphic" />
  2196. </filter>
  2197. <mask
  2198. id="mask0-8">
  2199. <g
  2200. style="filter:url(#alpha-31)"
  2201. id="g934-2"
  2202. filter="url(#alpha)">
  2203. <rect
  2204. id="rect932-58"
  2205. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2206. height="384"
  2207. width="384" />
  2208. </g>
  2209. </mask>
  2210. <clipPath
  2211. id="clip1-1">
  2212. <rect
  2213. id="rect937-25"
  2214. height="384"
  2215. width="384" />
  2216. </clipPath>
  2217. <g
  2218. clip-path="url(#clip1-1)"
  2219. id="surface5-1">
  2220. <path
  2221. id="path940-78"
  2222. style="fill:rgb(100%,100%,100%)"
  2223. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
  2224. </g>
  2225. <mask
  2226. id="mask1-1">
  2227. <g
  2228. style="filter:url(#alpha-31)"
  2229. id="g945-8"
  2230. filter="url(#alpha)">
  2231. <rect
  2232. id="rect943-62"
  2233. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2234. height="384"
  2235. width="384" />
  2236. </g>
  2237. </mask>
  2238. <clipPath
  2239. id="clip2-0">
  2240. <rect
  2241. id="rect948-9"
  2242. height="384"
  2243. width="384" />
  2244. </clipPath>
  2245. <g
  2246. clip-path="url(#clip2-0)"
  2247. id="surface8-3">
  2248. <path
  2249. id="path951-4"
  2250. style="fill:rgb(0%,0%,0%)"
  2251. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
  2252. </g>
  2253. <filter
  2254. style="color-interpolation-filters:sRGB"
  2255. id="c-4"
  2256. height="1.1655999"
  2257. width="1.1655999"
  2258. x="-0.082800001"
  2259. y="-0.082800001">
  2260. <feGaussianBlur
  2261. stdDeviation="2.1101835"
  2262. id="feGaussianBlur10-2" />
  2263. </filter>
  2264. <filter
  2265. style="color-interpolation-filters:sRGB"
  2266. id="a-3"
  2267. height="1.031026"
  2268. width="1.031376"
  2269. x="-0.015688"
  2270. y="-0.015513">
  2271. <feGaussianBlur
  2272. stdDeviation=".7986332"
  2273. id="feGaussianBlur2-4" />
  2274. </filter>
  2275. <clipPath
  2276. id="clip1-8-5">
  2277. <path
  2278. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  2279. id="path952-5" />
  2280. </clipPath>
  2281. <clipPath
  2282. id="clip2-3-9">
  2283. <path
  2284. d="M 515.4375 185.300781 C 515.4375 356.074219 370.535156 494.394531 192 494.394531 C 13.460938 494.394531 -131.4375 356.074219 -131.4375 185.300781 C -131.4375 14.523438 13.460938 -123.796875 192 -123.796875 C 370.535156 -123.796875 515.4375 14.523438 515.4375 185.300781 Z M 515.4375 185.300781"
  2285. id="path955-6" />
  2286. </clipPath>
  2287. <radialGradient
  2288. r="20"
  2289. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  2290. cx="15.026"
  2291. cy="8.6258001"
  2292. gradientUnits="userSpaceOnUse"
  2293. fy="8.5088997"
  2294. fx="4.4590001"
  2295. id="radialGradient3029-4-7">
  2296. <stop
  2297. style="stop-color:#354bf9;stop-opacity:1"
  2298. offset="0"
  2299. stop-color="#c24251"
  2300. id="stop4170-8-8" />
  2301. <stop
  2302. style="stop-color:#58cdf0;stop-opacity:1"
  2303. offset="1"
  2304. stop-color="#a63643"
  2305. id="stop4176-3-2" />
  2306. </radialGradient>
  2307. <radialGradient
  2308. r="20.396999"
  2309. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  2310. cx="23.896"
  2311. cy="3.99"
  2312. gradientUnits="userSpaceOnUse"
  2313. id="radialGradient3032-3-5">
  2314. <stop
  2315. offset="0"
  2316. stop-color="#fff"
  2317. id="stop3244-9-33-7-0-9-4-2" />
  2318. <stop
  2319. offset=".26238"
  2320. stop-color="#ddd"
  2321. id="stop3246-3-5-0-8-5-0-5" />
  2322. <stop
  2323. offset=".66094"
  2324. stop-color="#abacae"
  2325. id="stop3248-1-7-8-8-1-8-6" />
  2326. <stop
  2327. offset="1"
  2328. stop-color="#89898b"
  2329. id="stop3250-9-3-0-5-1-4-5" />
  2330. </radialGradient>
  2331. <radialGradient
  2332. r="62.769001"
  2333. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2334. cx="99.156998"
  2335. cy="186.17"
  2336. gradientUnits="userSpaceOnUse"
  2337. id="radialGradient3035-3-9">
  2338. <stop
  2339. offset="0"
  2340. stop-color="#3d3d3d"
  2341. id="stop3822-2-6-3-0-8" />
  2342. <stop
  2343. offset=".5"
  2344. stop-opacity=".49804"
  2345. stop-color="#686868"
  2346. id="stop3864-8-7-7-2-35" />
  2347. <stop
  2348. offset="1"
  2349. stop-opacity="0"
  2350. stop-color="#686868"
  2351. id="stop3824-1-2-5-4-9" />
  2352. </radialGradient>
  2353. <radialGradient
  2354. gradientUnits="userSpaceOnUse"
  2355. r="127.0051"
  2356. cy="186.51421"
  2357. cx="224.50391"
  2358. id="SVGID_4_-1-6">
  2359. <stop
  2360. id="stop27-7-2"
  2361. style="stop-color:#FFFFFF"
  2362. offset="0" />
  2363. <stop
  2364. id="stop29-6-0"
  2365. style="stop-color:#FDFEFF"
  2366. offset="0.3984" />
  2367. <stop
  2368. id="stop31-2-7"
  2369. style="stop-color:#F5FAFF"
  2370. offset="0.6131" />
  2371. <stop
  2372. id="stop33-6-2"
  2373. style="stop-color:#E7F3FF"
  2374. offset="0.7841" />
  2375. <stop
  2376. id="stop35-2-5"
  2377. style="stop-color:#D4EAFF"
  2378. offset="0.9311" />
  2379. <stop
  2380. id="stop37-5-3"
  2381. style="stop-color:#C8E4FF"
  2382. offset="1" />
  2383. </radialGradient>
  2384. <radialGradient
  2385. id="SVGID_5_-9-45"
  2386. cx="324.69339"
  2387. cy="286.66409"
  2388. r="26.769501"
  2389. gradientUnits="userSpaceOnUse">
  2390. <stop
  2391. offset="0"
  2392. style="stop-color:#FFFFFF"
  2393. id="stop50-2-8" />
  2394. <stop
  2395. offset="0.3984"
  2396. style="stop-color:#FDFEFF"
  2397. id="stop52-0-9" />
  2398. <stop
  2399. offset="0.6131"
  2400. style="stop-color:#F5FAFF"
  2401. id="stop54-5-0" />
  2402. <stop
  2403. offset="0.7841"
  2404. style="stop-color:#E7F3FF"
  2405. id="stop56-9-2" />
  2406. <stop
  2407. offset="0.9311"
  2408. style="stop-color:#D4EAFF"
  2409. id="stop58-7-4" />
  2410. <stop
  2411. offset="1"
  2412. style="stop-color:#C8E4FF"
  2413. id="stop60-2-72" />
  2414. </radialGradient>
  2415. <radialGradient
  2416. id="SVGID_6_-7-3"
  2417. cx="325"
  2418. cy="392.77249"
  2419. r="46.444901"
  2420. gradientUnits="userSpaceOnUse">
  2421. <stop
  2422. offset="0"
  2423. style="stop-color:#FFFFFF"
  2424. id="stop73-5-1" />
  2425. <stop
  2426. offset="0.3984"
  2427. style="stop-color:#FDFEFF"
  2428. id="stop75-3-1" />
  2429. <stop
  2430. offset="0.6131"
  2431. style="stop-color:#F5FAFF"
  2432. id="stop77-2-3" />
  2433. <stop
  2434. offset="0.7841"
  2435. style="stop-color:#E7F3FF"
  2436. id="stop79-0-6" />
  2437. <stop
  2438. offset="0.9311"
  2439. style="stop-color:#D4EAFF"
  2440. id="stop81-7-9" />
  2441. <stop
  2442. offset="1"
  2443. style="stop-color:#C8E4FF"
  2444. id="stop83-2-5" />
  2445. </radialGradient>
  2446. <clipPath
  2447. id="clipPath-349538100-0-1">
  2448. <g
  2449. transform="translate(0,-1004.4)"
  2450. id="g17-3-5">
  2451. <path
  2452. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2453. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2454. id="path19-8-3"
  2455. inkscape:connector-curvature="0"
  2456. style="fill:#1890d0" />
  2457. </g>
  2458. </clipPath>
  2459. <clipPath
  2460. id="clipPath3914-3-2">
  2461. <g
  2462. transform="translate(0,-1004.4)"
  2463. id="g3912-6-4">
  2464. <path
  2465. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2466. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2467. id="path3910-2-6"
  2468. inkscape:connector-curvature="0"
  2469. style="fill:#1890d0" />
  2470. </g>
  2471. </clipPath>
  2472. <clipPath
  2473. id="clipPath3920-2-7">
  2474. <g
  2475. transform="translate(0,-1004.4)"
  2476. id="g3918-2-5">
  2477. <path
  2478. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2479. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2480. id="path3916-9-2"
  2481. inkscape:connector-curvature="0"
  2482. style="fill:#1890d0" />
  2483. </g>
  2484. </clipPath>
  2485. <filter
  2486. id="alpha-3-17"
  2487. width="100%"
  2488. height="100%"
  2489. x="0%"
  2490. y="0%">
  2491. <feColorMatrix
  2492. in="SourceGraphic"
  2493. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  2494. id="feColorMatrix929-8-1" />
  2495. </filter>
  2496. <mask
  2497. id="mask0-2-3">
  2498. <g
  2499. filter="url(#alpha)"
  2500. id="g934-8-2"
  2501. style="filter:url(#alpha-3-17)">
  2502. <rect
  2503. width="384"
  2504. height="384"
  2505. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2506. id="rect932-5-5" />
  2507. </g>
  2508. </mask>
  2509. <clipPath
  2510. id="clip1-4-0">
  2511. <rect
  2512. width="384"
  2513. height="384"
  2514. id="rect937-5-9" />
  2515. </clipPath>
  2516. <g
  2517. id="surface5-6-5"
  2518. clip-path="url(#clip1-4-0)">
  2519. <path
  2520. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z"
  2521. style="fill:rgb(100%,100%,100%)"
  2522. id="path940-7-9" />
  2523. </g>
  2524. <mask
  2525. id="mask1-7-9">
  2526. <g
  2527. filter="url(#alpha)"
  2528. id="g945-3-9"
  2529. style="filter:url(#alpha-3-17)">
  2530. <rect
  2531. width="384"
  2532. height="384"
  2533. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2534. id="rect943-6-5" />
  2535. </g>
  2536. </mask>
  2537. <clipPath
  2538. id="clip2-4-61">
  2539. <rect
  2540. width="384"
  2541. height="384"
  2542. id="rect948-5-8" />
  2543. </clipPath>
  2544. <g
  2545. id="surface8-5-0"
  2546. clip-path="url(#clip2-4-61)">
  2547. <path
  2548. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z"
  2549. style="fill:rgb(0%,0%,0%)"
  2550. id="path951-0-5" />
  2551. </g>
  2552. <filter
  2553. y="-0.082800001"
  2554. x="-0.082800001"
  2555. width="1.1655999"
  2556. height="1.1655999"
  2557. id="c-3-3"
  2558. style="color-interpolation-filters:sRGB">
  2559. <feGaussianBlur
  2560. id="feGaussianBlur10-1-6"
  2561. stdDeviation="2.1101835" />
  2562. </filter>
  2563. <filter
  2564. y="-0.015513"
  2565. x="-0.015688"
  2566. width="1.031376"
  2567. height="1.031026"
  2568. id="a-2-6"
  2569. style="color-interpolation-filters:sRGB">
  2570. <feGaussianBlur
  2571. id="feGaussianBlur2-9-9"
  2572. stdDeviation=".7986332" />
  2573. </filter>
  2574. <filter
  2575. id="Xz97CxlifTHANJtERI5kl0UUr7WfRYvq-1"
  2576. width="400%"
  2577. height="400%"
  2578. x="-200%"
  2579. y="-200%"
  2580. color-interpolation-filters="sRGB"
  2581. filterUnits="objectBoundingBox">
  2582. <feGaussianBlur
  2583. in="SourceGraphic"
  2584. stdDeviation="4.294"
  2585. id="feGaussianBlur1005-4" />
  2586. <feOffset
  2587. dx="0"
  2588. dy="4"
  2589. result="pf_100_offsetBlur"
  2590. id="feOffset1007-1" />
  2591. <feFlood
  2592. flood-opacity=".4"
  2593. id="feFlood1009-7" />
  2594. <feComposite
  2595. in2="pf_100_offsetBlur"
  2596. operator="in"
  2597. result="pf_100_dropShadow"
  2598. id="feComposite1011-2" />
  2599. <feBlend
  2600. in="SourceGraphic"
  2601. in2="pf_100_dropShadow"
  2602. mode="normal"
  2603. id="feBlend1013-0" />
  2604. </filter>
  2605. <filter
  2606. id="4Gm5ayg2wEcihmTWLHNpl5NooRhnv9nx-2"
  2607. width="400%"
  2608. height="400%"
  2609. x="-200%"
  2610. y="-200%"
  2611. color-interpolation-filters="sRGB"
  2612. filterUnits="objectBoundingBox">
  2613. <feGaussianBlur
  2614. stdDeviation="4.294"
  2615. id="feGaussianBlur1042-5" />
  2616. </filter>
  2617. <clipPath
  2618. id="clipPath849">
  2619. <rect
  2620. width="384"
  2621. height="384"
  2622. id="rect847" />
  2623. </clipPath>
  2624. <clipPath
  2625. id="clipPath853">
  2626. <rect
  2627. width="384"
  2628. height="384"
  2629. id="rect851" />
  2630. </clipPath>
  2631. <clipPath
  2632. id="clipPath857">
  2633. <rect
  2634. width="384"
  2635. height="384"
  2636. id="rect855" />
  2637. </clipPath>
  2638. <filter
  2639. filterUnits="objectBoundingBox"
  2640. color-interpolation-filters="sRGB"
  2641. y="-200%"
  2642. x="-200%"
  2643. height="400%"
  2644. width="400%"
  2645. id="xPHBR2KRsqNJJmxgfSMnWsjFL63MuKr0-5">
  2646. <feGaussianBlur
  2647. id="feGaussianBlur823-5"
  2648. stdDeviation="4.294"
  2649. in="SourceGraphic" />
  2650. <feOffset
  2651. id="feOffset825-5"
  2652. result="pf_100_offsetBlur"
  2653. dy="4"
  2654. dx="0" />
  2655. <feFlood
  2656. id="feFlood827-1"
  2657. flood-opacity=".4" />
  2658. <feComposite
  2659. id="feComposite829-3"
  2660. result="pf_100_dropShadow"
  2661. operator="in"
  2662. in2="pf_100_offsetBlur" />
  2663. <feBlend
  2664. id="feBlend831-9"
  2665. mode="normal"
  2666. in2="pf_100_dropShadow"
  2667. in="SourceGraphic" />
  2668. </filter>
  2669. <filter
  2670. filterUnits="objectBoundingBox"
  2671. color-interpolation-filters="sRGB"
  2672. y="-200%"
  2673. x="-200%"
  2674. height="400%"
  2675. width="400%"
  2676. id="2JmMAOqgjSUXbdZfecnmpMzAW6swRgvN-1">
  2677. <feGaussianBlur
  2678. id="feGaussianBlur858-5"
  2679. stdDeviation="4.294" />
  2680. </filter>
  2681. <linearGradient
  2682. id="linearGradient1225">
  2683. <stop
  2684. id="stop1221"
  2685. offset="0"
  2686. style="stop-color:#f37329;stop-opacity:1" />
  2687. <stop
  2688. id="stop1223"
  2689. offset="1"
  2690. style="stop-color:#e95420;stop-opacity:1" />
  2691. </linearGradient>
  2692. <linearGradient
  2693. xlink:href="#linearGradient4806"
  2694. id="linearGradient3118-0"
  2695. gradientUnits="userSpaceOnUse"
  2696. gradientTransform="matrix(4.16388,0,0,4.16388,-236.03265,-50.036246)"
  2697. x1="71.204407"
  2698. y1="15.369057"
  2699. x2="71.204407"
  2700. y2="40.495617" />
  2701. <radialGradient
  2702. xlink:href="#linearGradient3820-7-2-8-6"
  2703. id="radialGradient3163-3"
  2704. gradientUnits="userSpaceOnUse"
  2705. gradientTransform="matrix(0.6869404,0,0,0.21461693,-4.02174,68.573331)"
  2706. cx="99.157013"
  2707. cy="186.17059"
  2708. fx="99.157013"
  2709. fy="186.17059"
  2710. r="62.769119" />
  2711. <linearGradient
  2712. gradientUnits="userSpaceOnUse"
  2713. y2="118.04783"
  2714. x2="64.5"
  2715. y1="13.998179"
  2716. x1="64.5"
  2717. id="linearGradient1227"
  2718. xlink:href="#linearGradient1225" />
  2719. <linearGradient
  2720. id="linearGradient4243"
  2721. inkscape:collect="always">
  2722. <stop
  2723. id="stop4245"
  2724. offset="0"
  2725. style="stop-color:#bc8b3c;stop-opacity:1" />
  2726. <stop
  2727. id="stop4247"
  2728. offset="1"
  2729. style="stop-color:#ac7c3e;stop-opacity:1" />
  2730. </linearGradient>
  2731. <linearGradient
  2732. id="linearGradient5423-1">
  2733. <stop
  2734. style="stop-color:#51b9db;stop-opacity:1;"
  2735. offset="0"
  2736. id="stop4237" />
  2737. <stop
  2738. style="stop-color:#2fabd4;stop-opacity:1;"
  2739. offset="1"
  2740. id="stop4239" />
  2741. </linearGradient>
  2742. <inkscape:perspective
  2743. id="perspective3135"
  2744. inkscape:persp3d-origin="147.59482 : 101.02977 : 1"
  2745. inkscape:vp_z="277.59482 : 144.36309 : 1"
  2746. inkscape:vp_y="0 : 1300 : 0"
  2747. inkscape:vp_x="17.594803 : 144.36309 : 1"
  2748. sodipodi:type="inkscape:persp3d" />
  2749. <clipPath
  2750. id="clipPath4282"
  2751. clipPathUnits="userSpaceOnUse">
  2752. <rect
  2753. rx="17"
  2754. ry="17"
  2755. y="1646.1122"
  2756. x="462.5"
  2757. height="234.375"
  2758. width="246.875"
  2759. id="rect4284"
  2760. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.13434315;marker:none;enable-background:accumulate" />
  2761. </clipPath>
  2762. <linearGradient
  2763. gradientUnits="userSpaceOnUse"
  2764. y2="562.04968"
  2765. x2="408.66196"
  2766. y1="44.604382"
  2767. x1="408.66196"
  2768. id="linearGradient5429"
  2769. xlink:href="#linearGradient5423"
  2770. inkscape:collect="always" />
  2771. <linearGradient
  2772. id="linearGradient5423">
  2773. <stop
  2774. id="stop5425"
  2775. offset="0"
  2776. style="stop-color:#db8451;stop-opacity:1;" />
  2777. <stop
  2778. id="stop5427"
  2779. offset="1"
  2780. style="stop-color:#c85c29;stop-opacity:1;" />
  2781. </linearGradient>
  2782. <linearGradient
  2783. gradientUnits="userSpaceOnUse"
  2784. y2="993.6615"
  2785. x2="120.28125"
  2786. y1="993.6615"
  2787. x1="78.5625"
  2788. id="linearGradient3992"
  2789. xlink:href="#linearGradient10457"
  2790. inkscape:collect="always" />
  2791. <linearGradient
  2792. gradientUnits="userSpaceOnUse"
  2793. y2="199.83986"
  2794. x2="99.036476"
  2795. y1="-0.50471628"
  2796. x1="99.036476"
  2797. id="linearGradient5473-2"
  2798. xlink:href="#linearGradient5423-1"
  2799. inkscape:collect="always" />
  2800. <clipPath
  2801. id="clipPath3378"
  2802. clipPathUnits="userSpaceOnUse">
  2803. <rect
  2804. y="1432.9845"
  2805. x="-247.76358"
  2806. height="148.32669"
  2807. width="144.18349"
  2808. id="rect3380"
  2809. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.41206031;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
  2810. </clipPath>
  2811. <linearGradient
  2812. y2="709.1676"
  2813. x2="-187.35687"
  2814. y1="603.80872"
  2815. x1="-187.35687"
  2816. gradientTransform="translate(0,852.36218)"
  2817. gradientUnits="userSpaceOnUse"
  2818. id="linearGradient4315-7"
  2819. xlink:href="#linearGradient4243"
  2820. inkscape:collect="always" />
  2821. <clipPath
  2822. id="clipPath4328"
  2823. clipPathUnits="userSpaceOnUse">
  2824. <path
  2825. id="path4330"
  2826. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2827. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2828. inkscape:connector-curvature="0" />
  2829. </clipPath>
  2830. <clipPath
  2831. id="clipPath4311-0"
  2832. clipPathUnits="userSpaceOnUse">
  2833. <path
  2834. id="path4313-7"
  2835. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2836. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2837. inkscape:connector-curvature="0" />
  2838. </clipPath>
  2839. <clipPath
  2840. id="clipPath4328-9"
  2841. clipPathUnits="userSpaceOnUse">
  2842. <path
  2843. id="path4330-6"
  2844. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2845. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2846. inkscape:connector-curvature="0" />
  2847. </clipPath>
  2848. <clipPath
  2849. id="clipPath4328-4"
  2850. clipPathUnits="userSpaceOnUse">
  2851. <path
  2852. id="path4330-0"
  2853. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2854. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2855. inkscape:connector-curvature="0" />
  2856. </clipPath>
  2857. <clipPath
  2858. id="clipPath4898"
  2859. clipPathUnits="userSpaceOnUse">
  2860. <path
  2861. inkscape:connector-curvature="0"
  2862. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2863. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2864. id="path4900" />
  2865. </clipPath>
  2866. <clipPath
  2867. id="clipPath4928"
  2868. clipPathUnits="userSpaceOnUse">
  2869. <path
  2870. id="path4930"
  2871. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2872. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2873. inkscape:connector-curvature="0" />
  2874. </clipPath>
  2875. <clipPath
  2876. id="clipPath5092"
  2877. clipPathUnits="userSpaceOnUse">
  2878. <path
  2879. id="path5094"
  2880. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2881. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2882. inkscape:connector-curvature="0" />
  2883. </clipPath>
  2884. <clipPath
  2885. id="clipPath5122"
  2886. clipPathUnits="userSpaceOnUse">
  2887. <path
  2888. id="path5124"
  2889. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2890. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2891. inkscape:connector-curvature="0" />
  2892. </clipPath>
  2893. <clipPath
  2894. id="clipPath5315"
  2895. clipPathUnits="userSpaceOnUse">
  2896. <rect
  2897. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#15bfe3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10575029;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2898. id="rect5317"
  2899. width="8.7005014"
  2900. height="24.124268"
  2901. x="-149.37343"
  2902. y="1487.7891"
  2903. ry="2.783535"
  2904. rx="2.8672121" />
  2905. </clipPath>
  2906. <clipPath
  2907. id="clipPath5334"
  2908. clipPathUnits="userSpaceOnUse">
  2909. <rect
  2910. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#05d562;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10575029;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2911. id="rect5336"
  2912. width="8.7005014"
  2913. height="24.124268"
  2914. x="-149.37343"
  2915. y="1509.0391"
  2916. ry="2.783535"
  2917. rx="2.8672121" />
  2918. </clipPath>
  2919. <clipPath
  2920. id="clipPath5359"
  2921. clipPathUnits="userSpaceOnUse">
  2922. <rect
  2923. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#dd9201;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10575029;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2924. id="rect5361"
  2925. width="8.7005014"
  2926. height="24.124268"
  2927. x="-149.37343"
  2928. y="1530.1641"
  2929. ry="2.783535"
  2930. rx="2.8672121" />
  2931. </clipPath>
  2932. <inkscape:perspective
  2933. sodipodi:type="inkscape:persp3d"
  2934. inkscape:vp_x="17.594803 : 144.36309 : 1"
  2935. inkscape:vp_y="0 : 1300 : 0"
  2936. inkscape:vp_z="277.59482 : 144.36309 : 1"
  2937. inkscape:persp3d-origin="147.59482 : 101.02977 : 1"
  2938. id="perspective3135-9" />
  2939. <clipPath
  2940. clipPathUnits="userSpaceOnUse"
  2941. id="clipPath4282-0">
  2942. <rect
  2943. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.13434315;marker:none;enable-background:accumulate"
  2944. id="rect4284-6"
  2945. width="246.875"
  2946. height="234.375"
  2947. x="462.5"
  2948. y="1646.1122"
  2949. ry="17"
  2950. rx="17" />
  2951. </clipPath>
  2952. <clipPath
  2953. clipPathUnits="userSpaceOnUse"
  2954. id="clipPath3378-0">
  2955. <rect
  2956. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.41206031;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2957. id="rect3380-2"
  2958. width="144.18349"
  2959. height="148.32669"
  2960. x="-247.76358"
  2961. y="1432.9845" />
  2962. </clipPath>
  2963. <clipPath
  2964. clipPathUnits="userSpaceOnUse"
  2965. id="clipPath4277">
  2966. <path
  2967. inkscape:connector-curvature="0"
  2968. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2969. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2970. id="path4279-7" />
  2971. </clipPath>
  2972. <clipPath
  2973. clipPathUnits="userSpaceOnUse"
  2974. id="clipPath4328-92">
  2975. <path
  2976. inkscape:connector-curvature="0"
  2977. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2978. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2979. id="path4330-2" />
  2980. </clipPath>
  2981. <clipPath
  2982. clipPathUnits="userSpaceOnUse"
  2983. id="clipPath4311-0-8">
  2984. <path
  2985. inkscape:connector-curvature="0"
  2986. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2987. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2988. id="path4313-7-9" />
  2989. </clipPath>
  2990. <clipPath
  2991. clipPathUnits="userSpaceOnUse"
  2992. id="clipPath4328-9-7">
  2993. <path
  2994. inkscape:connector-curvature="0"
  2995. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2996. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  2997. id="path4330-6-3" />
  2998. </clipPath>
  2999. <clipPath
  3000. clipPathUnits="userSpaceOnUse"
  3001. id="clipPath4328-4-6">
  3002. <path
  3003. inkscape:connector-curvature="0"
  3004. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  3005. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  3006. id="path4330-0-1" />
  3007. </clipPath>
  3008. <clipPath
  3009. clipPathUnits="userSpaceOnUse"
  3010. id="clipPath4898-2">
  3011. <path
  3012. id="path4900-9"
  3013. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  3014. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  3015. inkscape:connector-curvature="0" />
  3016. </clipPath>
  3017. <clipPath
  3018. clipPathUnits="userSpaceOnUse"
  3019. id="clipPath4928-3">
  3020. <path
  3021. inkscape:connector-curvature="0"
  3022. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  3023. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  3024. id="path4930-1" />
  3025. </clipPath>
  3026. <clipPath
  3027. clipPathUnits="userSpaceOnUse"
  3028. id="clipPath5092-4">
  3029. <path
  3030. inkscape:connector-curvature="0"
  3031. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  3032. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  3033. id="path5094-5" />
  3034. </clipPath>
  3035. <clipPath
  3036. clipPathUnits="userSpaceOnUse"
  3037. id="clipPath5122-0">
  3038. <path
  3039. inkscape:connector-curvature="0"
  3040. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4315-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.81500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  3041. d="m -229.07617,1455.911 v 105.7891 c 0,0.8891 0.71244,2.5644 1.45703,2.5644 0.0895,-0.8374 -0.48376,-1.5811 0.62695,-2.5644 h 46.27539 2.5586 23.04687 c 4.86914,0 8.78906,-3.92 8.78906,-8.7891 v -88.2109 c 0,-4.8691 -3.91992,-8.7891 -8.78906,-8.7891 h -23.04687 -2.5586 z"
  3042. id="path5124-3" />
  3043. </clipPath>
  3044. <clipPath
  3045. clipPathUnits="userSpaceOnUse"
  3046. id="clipPath5315-6">
  3047. <rect
  3048. rx="2.8672121"
  3049. ry="2.783535"
  3050. y="1487.7891"
  3051. x="-149.37343"
  3052. height="24.124268"
  3053. width="8.7005014"
  3054. id="rect5317-1"
  3055. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#15bfe3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10575029;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
  3056. </clipPath>
  3057. <clipPath
  3058. clipPathUnits="userSpaceOnUse"
  3059. id="clipPath5334-0">
  3060. <rect
  3061. rx="2.8672121"
  3062. ry="2.783535"
  3063. y="1509.0391"
  3064. x="-149.37343"
  3065. height="24.124268"
  3066. width="8.7005014"
  3067. id="rect5336-6"
  3068. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#05d562;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10575029;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
  3069. </clipPath>
  3070. <clipPath
  3071. clipPathUnits="userSpaceOnUse"
  3072. id="clipPath5359-3">
  3073. <rect
  3074. rx="2.8672121"
  3075. ry="2.783535"
  3076. y="1530.1641"
  3077. x="-149.37343"
  3078. height="24.124268"
  3079. width="8.7005014"
  3080. id="rect5361-2"
  3081. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#dd9201;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10575029;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
  3082. </clipPath>
  3083. <radialGradient
  3084. id="radial0"
  3085. gradientUnits="userSpaceOnUse"
  3086. cx="450.908936"
  3087. cy="189.579361"
  3088. fx="450.908936"
  3089. fy="189.579361"
  3090. r="21.166656"
  3091. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  3092. <stop
  3093. offset="0"
  3094. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3095. id="stop822" />
  3096. <stop
  3097. offset="0.222222"
  3098. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3099. id="stop824" />
  3100. <stop
  3101. offset="1"
  3102. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3103. id="stop826" />
  3104. </radialGradient>
  3105. <radialGradient
  3106. id="radial1"
  3107. gradientUnits="userSpaceOnUse"
  3108. cx="450.908936"
  3109. cy="189.579361"
  3110. fx="450.908936"
  3111. fy="189.579361"
  3112. r="21.166656"
  3113. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  3114. <stop
  3115. offset="0"
  3116. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3117. id="stop829" />
  3118. <stop
  3119. offset="0.222222"
  3120. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3121. id="stop831" />
  3122. <stop
  3123. offset="1"
  3124. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3125. id="stop833" />
  3126. </radialGradient>
  3127. <radialGradient
  3128. id="radial2"
  3129. gradientUnits="userSpaceOnUse"
  3130. cx="450.908936"
  3131. cy="189.579361"
  3132. fx="450.908936"
  3133. fy="189.579361"
  3134. r="21.166656"
  3135. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  3136. <stop
  3137. offset="0"
  3138. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3139. id="stop836" />
  3140. <stop
  3141. offset="0.222222"
  3142. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3143. id="stop838" />
  3144. <stop
  3145. offset="1"
  3146. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3147. id="stop840" />
  3148. </radialGradient>
  3149. <radialGradient
  3150. id="radial3"
  3151. gradientUnits="userSpaceOnUse"
  3152. cx="450.908936"
  3153. cy="189.579361"
  3154. fx="450.908936"
  3155. fy="189.579361"
  3156. r="21.166656"
  3157. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  3158. <stop
  3159. offset="0"
  3160. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3161. id="stop843" />
  3162. <stop
  3163. offset="0.222222"
  3164. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3165. id="stop845" />
  3166. <stop
  3167. offset="1"
  3168. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3169. id="stop847" />
  3170. </radialGradient>
  3171. <linearGradient
  3172. id="linear0"
  3173. gradientUnits="userSpaceOnUse"
  3174. x1="255.323059"
  3175. y1="233.5"
  3176. x2="255.323044"
  3177. y2="254.666656"
  3178. gradientTransform="matrix(0.0273881,0,0,0.082039,16.656575,23.142854)">
  3179. <stop
  3180. offset="0"
  3181. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3182. id="stop850" />
  3183. <stop
  3184. offset="1"
  3185. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3186. id="stop852" />
  3187. </linearGradient>
  3188. <linearGradient
  3189. id="linear1"
  3190. gradientUnits="userSpaceOnUse"
  3191. x1="254"
  3192. y1="233.5"
  3193. x2="254"
  3194. y2="-168.666672"
  3195. gradientTransform="matrix(0.093759,0,0,0.093759,0,20.158175)">
  3196. <stop
  3197. offset="0"
  3198. style="stop-color:rgb(100%,43.921569%,26.274511%);stop-opacity:1;"
  3199. id="stop855" />
  3200. <stop
  3201. offset="1"
  3202. style="stop-color:rgb(100%,54.11765%,39.607844%);stop-opacity:1;"
  3203. id="stop857" />
  3204. </linearGradient>
  3205. <linearGradient
  3206. id="linear2"
  3207. gradientUnits="userSpaceOnUse"
  3208. x1="254"
  3209. y1="148.833328"
  3210. x2="254"
  3211. y2="-84"
  3212. gradientTransform="matrix(0.093759,0,0,0.093759,0,20.158175)">
  3213. <stop
  3214. offset="0"
  3215. style="stop-color:rgb(74.117649%,74.117649%,74.117649%);stop-opacity:1;"
  3216. id="stop860" />
  3217. <stop
  3218. offset="1"
  3219. style="stop-color:rgb(87.843138%,87.843138%,87.843138%);stop-opacity:1;"
  3220. id="stop862" />
  3221. </linearGradient>
  3222. <linearGradient
  3223. id="linear2-3"
  3224. gradientUnits="userSpaceOnUse"
  3225. x1="254"
  3226. y1="148.83333"
  3227. x2="254"
  3228. y2="-84"
  3229. gradientTransform="matrix(0.08461253,0,0,0.08461253,-19.162897,21.468351)">
  3230. <stop
  3231. offset="0"
  3232. style="stop-color:rgb(74.117649%,74.117649%,74.117649%);stop-opacity:1;"
  3233. id="stop860-6" />
  3234. <stop
  3235. offset="1"
  3236. style="stop-color:rgb(87.843138%,87.843138%,87.843138%);stop-opacity:1;"
  3237. id="stop862-7" />
  3238. </linearGradient>
  3239. <radialGradient
  3240. id="radial0-1"
  3241. gradientUnits="userSpaceOnUse"
  3242. cx="450.908936"
  3243. cy="189.579361"
  3244. fx="450.908936"
  3245. fy="189.579361"
  3246. r="21.166656"
  3247. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  3248. <stop
  3249. offset="0"
  3250. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3251. id="stop822-2" />
  3252. <stop
  3253. offset="0.222222"
  3254. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3255. id="stop824-7" />
  3256. <stop
  3257. offset="1"
  3258. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3259. id="stop826-0" />
  3260. </radialGradient>
  3261. <radialGradient
  3262. id="radial1-9"
  3263. gradientUnits="userSpaceOnUse"
  3264. cx="450.908936"
  3265. cy="189.579361"
  3266. fx="450.908936"
  3267. fy="189.579361"
  3268. r="21.166656"
  3269. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  3270. <stop
  3271. offset="0"
  3272. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3273. id="stop829-3" />
  3274. <stop
  3275. offset="0.222222"
  3276. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3277. id="stop831-6" />
  3278. <stop
  3279. offset="1"
  3280. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3281. id="stop833-0" />
  3282. </radialGradient>
  3283. <radialGradient
  3284. id="radial2-6"
  3285. gradientUnits="userSpaceOnUse"
  3286. cx="450.908936"
  3287. cy="189.579361"
  3288. fx="450.908936"
  3289. fy="189.579361"
  3290. r="21.166656"
  3291. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  3292. <stop
  3293. offset="0"
  3294. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3295. id="stop836-2" />
  3296. <stop
  3297. offset="0.222222"
  3298. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3299. id="stop838-6" />
  3300. <stop
  3301. offset="1"
  3302. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3303. id="stop840-1" />
  3304. </radialGradient>
  3305. <radialGradient
  3306. id="radial3-8"
  3307. gradientUnits="userSpaceOnUse"
  3308. cx="450.908936"
  3309. cy="189.579361"
  3310. fx="450.908936"
  3311. fy="189.579361"
  3312. r="21.166656"
  3313. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  3314. <stop
  3315. offset="0"
  3316. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3317. id="stop843-7" />
  3318. <stop
  3319. offset="0.222222"
  3320. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3321. id="stop845-9" />
  3322. <stop
  3323. offset="1"
  3324. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3325. id="stop847-2" />
  3326. </radialGradient>
  3327. <radialGradient
  3328. id="radial0-3"
  3329. gradientUnits="userSpaceOnUse"
  3330. cx="450.908936"
  3331. cy="189.579361"
  3332. fx="450.908936"
  3333. fy="189.579361"
  3334. r="21.166656"
  3335. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  3336. <stop
  3337. offset="0"
  3338. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3339. id="stop822-6" />
  3340. <stop
  3341. offset="0.222222"
  3342. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3343. id="stop824-75" />
  3344. <stop
  3345. offset="1"
  3346. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3347. id="stop826-3" />
  3348. </radialGradient>
  3349. <radialGradient
  3350. id="radial1-5"
  3351. gradientUnits="userSpaceOnUse"
  3352. cx="450.908936"
  3353. cy="189.579361"
  3354. fx="450.908936"
  3355. fy="189.579361"
  3356. r="21.166656"
  3357. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  3358. <stop
  3359. offset="0"
  3360. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3361. id="stop829-6" />
  3362. <stop
  3363. offset="0.222222"
  3364. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3365. id="stop831-2" />
  3366. <stop
  3367. offset="1"
  3368. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3369. id="stop833-9" />
  3370. </radialGradient>
  3371. <radialGradient
  3372. id="radial2-1"
  3373. gradientUnits="userSpaceOnUse"
  3374. cx="450.908936"
  3375. cy="189.579361"
  3376. fx="450.908936"
  3377. fy="189.579361"
  3378. r="21.166656"
  3379. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  3380. <stop
  3381. offset="0"
  3382. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3383. id="stop836-27" />
  3384. <stop
  3385. offset="0.222222"
  3386. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3387. id="stop838-0" />
  3388. <stop
  3389. offset="1"
  3390. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3391. id="stop840-9" />
  3392. </radialGradient>
  3393. <radialGradient
  3394. id="radial3-3"
  3395. gradientUnits="userSpaceOnUse"
  3396. cx="450.908936"
  3397. cy="189.579361"
  3398. fx="450.908936"
  3399. fy="189.579361"
  3400. r="21.166656"
  3401. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  3402. <stop
  3403. offset="0"
  3404. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3405. id="stop843-6" />
  3406. <stop
  3407. offset="0.222222"
  3408. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3409. id="stop845-0" />
  3410. <stop
  3411. offset="1"
  3412. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3413. id="stop847-6" />
  3414. </radialGradient>
  3415. <radialGradient
  3416. id="radial0-7"
  3417. gradientUnits="userSpaceOnUse"
  3418. cx="450.908936"
  3419. cy="189.579361"
  3420. fx="450.908936"
  3421. fy="189.579361"
  3422. r="21.166656"
  3423. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  3424. <stop
  3425. offset="0"
  3426. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3427. id="stop822-5" />
  3428. <stop
  3429. offset="0.222222"
  3430. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3431. id="stop824-9" />
  3432. <stop
  3433. offset="1"
  3434. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3435. id="stop826-2" />
  3436. </radialGradient>
  3437. <radialGradient
  3438. id="radial1-2"
  3439. gradientUnits="userSpaceOnUse"
  3440. cx="450.908936"
  3441. cy="189.579361"
  3442. fx="450.908936"
  3443. fy="189.579361"
  3444. r="21.166656"
  3445. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  3446. <stop
  3447. offset="0"
  3448. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3449. id="stop829-8" />
  3450. <stop
  3451. offset="0.222222"
  3452. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3453. id="stop831-9" />
  3454. <stop
  3455. offset="1"
  3456. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3457. id="stop833-7" />
  3458. </radialGradient>
  3459. <radialGradient
  3460. id="radial2-3"
  3461. gradientUnits="userSpaceOnUse"
  3462. cx="450.908936"
  3463. cy="189.579361"
  3464. fx="450.908936"
  3465. fy="189.579361"
  3466. r="21.166656"
  3467. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  3468. <stop
  3469. offset="0"
  3470. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3471. id="stop836-6" />
  3472. <stop
  3473. offset="0.222222"
  3474. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3475. id="stop838-1" />
  3476. <stop
  3477. offset="1"
  3478. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3479. id="stop840-2" />
  3480. </radialGradient>
  3481. <radialGradient
  3482. id="radial3-9"
  3483. gradientUnits="userSpaceOnUse"
  3484. cx="450.908936"
  3485. cy="189.579361"
  3486. fx="450.908936"
  3487. fy="189.579361"
  3488. r="21.166656"
  3489. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  3490. <stop
  3491. offset="0"
  3492. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  3493. id="stop843-3" />
  3494. <stop
  3495. offset="0.222222"
  3496. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  3497. id="stop845-1" />
  3498. <stop
  3499. offset="1"
  3500. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  3501. id="stop847-9" />
  3502. </radialGradient>
  3503. <linearGradient
  3504. id="linearGradient3866">
  3505. <stop
  3506. style="stop-color:#000000;stop-opacity:0.52083331"
  3507. offset="0"
  3508. id="stop3868" />
  3509. <stop
  3510. style="stop-color:#2883c3;stop-opacity:0;"
  3511. offset="1"
  3512. id="stop3870" />
  3513. </linearGradient>
  3514. <linearGradient
  3515. id="linearGradient3874">
  3516. <stop
  3517. style="stop-color:#000d0e;stop-opacity:0.84105963;"
  3518. offset="0"
  3519. id="stop3876" />
  3520. <stop
  3521. style="stop-color:#000000;stop-opacity:0;"
  3522. offset="1"
  3523. id="stop3878" />
  3524. </linearGradient>
  3525. <clipPath
  3526. id="clipPath892"
  3527. clipPathUnits="userSpaceOnUse">
  3528. <path
  3529. inkscape:connector-curvature="0"
  3530. id="path894"
  3531. d="M 38.524123,20.232391 V 51.2388 h 3.597154 V 20.232391 Z M 14.125746,21.0025 V 52.010565 H 17.7229 V 21.0025 Z M 5.9924018,21.259203 V 52.267267 H 9.591212 V 21.259203 Z m 24.3983772,1.37129 v 31.006409 h 3.597153 V 22.630493 Z m -20.330877,1.626338 v 31.008065 h 3.597154 V 24.256831 Z m 24.396721,0.08612 v 31.008065 h 3.598809 V 24.342951 Z M 1.9265577,25.798705 V 56.80677 H 5.5237118 V 25.798705 Z m 16.2650323,0.08612 v 31.008064 h 3.597155 V 25.884825 Z m 24.398377,0 v 31.008064 h 3.597154 V 25.884825 Z m -16.265033,2.22752 v 31.006408 h 3.597155 V 28.112345 Z M 22.25909,30.76715 v 31.008065 h 3.597155 V 30.76715 Z"
  3532. style="fill:#ffffff;fill-opacity:0.25520833;stroke:none;stroke-width:1.52630627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
  3533. </clipPath>
  3534. <clipPath
  3535. clipPathUnits="userSpaceOnUse"
  3536. id="clipPath3881">
  3537. <circle
  3538. r="103.5"
  3539. cy="152.5"
  3540. cx="539.5"
  3541. style="fill:#008dff;fill-opacity:1;fill-rule:evenodd;stroke:none"
  3542. id="path3883"
  3543. transform="translate(-412,-17)" />
  3544. </clipPath>
  3545. <linearGradient
  3546. id="linearGradient4019">
  3547. <stop
  3548. offset="0"
  3549. style="stop-color:#adcce1;stop-opacity:1;"
  3550. id="stop4021" />
  3551. <stop
  3552. offset="0.26238"
  3553. style="stop-color:#6bbfe1;stop-opacity:1;"
  3554. id="stop4023" />
  3555. <stop
  3556. offset="0.74620908"
  3557. style="stop-color:#2596d1;stop-opacity:1;"
  3558. id="stop4025" />
  3559. <stop
  3560. offset="1"
  3561. style="stop-color:#2372c0;stop-opacity:1;"
  3562. id="stop4027" />
  3563. </linearGradient>
  3564. <linearGradient
  3565. id="linearGradient4085">
  3566. <stop
  3567. offset="0"
  3568. style="stop-color:#ffffff;stop-opacity:1"
  3569. id="stop4087" />
  3570. <stop
  3571. offset="0.06316455"
  3572. style="stop-color:#ffffff;stop-opacity:0.2"
  3573. id="stop4089" />
  3574. <stop
  3575. offset="0.95056331"
  3576. style="stop-color:#ffffff;stop-opacity:0.2"
  3577. id="stop4091" />
  3578. <stop
  3579. offset="1"
  3580. style="stop-color:#ffffff;stop-opacity:0.39215687"
  3581. id="stop4093" />
  3582. </linearGradient>
  3583. <filter
  3584. style="color-interpolation-filters:sRGB"
  3585. id="filter3174">
  3586. <feGaussianBlur
  3587. stdDeviation="1.71"
  3588. id="feGaussianBlur3176" />
  3589. </filter>
  3590. <linearGradient
  3591. gradientTransform="scale(1.0058652,0.994169)"
  3592. gradientUnits="userSpaceOnUse"
  3593. id="ButtonShadow"
  3594. y2="7.0165396"
  3595. x2="45.447727"
  3596. y1="92.539597"
  3597. x1="45.447727">
  3598. <stop
  3599. offset="0"
  3600. style="stop-color:#000000;stop-opacity:1"
  3601. id="stop3750" />
  3602. <stop
  3603. offset="1"
  3604. style="stop-color:#000000;stop-opacity:0.58823532"
  3605. id="stop3752" />
  3606. </linearGradient>
  3607. <linearGradient
  3608. id="linearGradient5048-8-7">
  3609. <stop
  3610. offset="0"
  3611. style="stop-color:#000000;stop-opacity:0"
  3612. id="stop5050-4-2" />
  3613. <stop
  3614. offset="0.5"
  3615. style="stop-color:#000000;stop-opacity:1"
  3616. id="stop5056-7-4" />
  3617. <stop
  3618. offset="1"
  3619. style="stop-color:#000000;stop-opacity:0"
  3620. id="stop5052-0-1-7" />
  3621. </linearGradient>
  3622. <linearGradient
  3623. id="linearGradient3851">
  3624. <stop
  3625. id="stop3853"
  3626. style="stop-color:#5b8da7;stop-opacity:1;"
  3627. offset="0" />
  3628. <stop
  3629. id="stop3855"
  3630. style="stop-color:#1c3447;stop-opacity:1;"
  3631. offset="1" />
  3632. </linearGradient>
  3633. <filter
  3634. style="color-interpolation-filters:sRGB"
  3635. id="filter3174-0">
  3636. <feGaussianBlur
  3637. stdDeviation="1.71"
  3638. id="feGaussianBlur3176-9" />
  3639. </filter>
  3640. <clipPath
  3641. id="clipPath916"
  3642. clipPathUnits="userSpaceOnUse">
  3643. <g
  3644. id="g920"
  3645. inkscape:label="circulo"
  3646. style="display:inline;opacity:0.98999999;fill:#126136;fill-opacity:1"
  3647. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  3648. <path
  3649. style="fill:#126136;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  3650. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  3651. id="path918"
  3652. inkscape:connector-curvature="0" />
  3653. </g>
  3654. </clipPath>
  3655. <clipPath
  3656. clipPathUnits="userSpaceOnUse"
  3657. id="clipPath3866">
  3658. <circle
  3659. r="312"
  3660. cy="449"
  3661. cx="1132"
  3662. id="path3868"
  3663. style="fill:#44abb1;fill-opacity:1;fill-rule:evenodd;stroke:none"
  3664. transform="matrix(0.68724124,0,0,0.68724124,-521.35527,-47.661719)" />
  3665. </clipPath>
  3666. <linearGradient
  3667. inkscape:collect="always"
  3668. id="linearGradient4118">
  3669. <stop
  3670. style="stop-color:#0eb474;stop-opacity:1;"
  3671. offset="0"
  3672. id="stop4120" />
  3673. <stop
  3674. style="stop-color:#0eb474;stop-opacity:0;"
  3675. offset="1"
  3676. id="stop4122" />
  3677. </linearGradient>
  3678. <linearGradient
  3679. id="linearGradient3837"
  3680. inkscape:collect="always">
  3681. <stop
  3682. id="stop3839"
  3683. offset="0"
  3684. style="stop-color:#7db257;stop-opacity:1;" />
  3685. <stop
  3686. id="stop3841"
  3687. offset="1"
  3688. style="stop-color:#7db257;stop-opacity:0;" />
  3689. </linearGradient>
  3690. <linearGradient
  3691. gradientUnits="userSpaceOnUse"
  3692. y2="356.66208"
  3693. x2="316.05505"
  3694. y1="546.63525"
  3695. x1="502.83536"
  3696. id="linearGradient3843"
  3697. xlink:href="#linearGradient3837"
  3698. inkscape:collect="always" />
  3699. <clipPath
  3700. id="clipPath3847"
  3701. clipPathUnits="userSpaceOnUse">
  3702. <circle
  3703. r="260.2153"
  3704. cy="342.29437"
  3705. cx="322.4407"
  3706. style="fill:url(#linearGradient3843);fill-opacity:1;fill-rule:evenodd;stroke:none"
  3707. id="path3849"
  3708. transform="matrix(0.88586957,0,0,0.88586957,-24.010886,495.98978)" />
  3709. </clipPath>
  3710. <clipPath
  3711. clipPathUnits="userSpaceOnUse"
  3712. id="clipPath3344">
  3713. <circle
  3714. r="260.2153"
  3715. cy="342.29437"
  3716. cx="322.4407"
  3717. transform="matrix(0.09964174,0,0,0.09964174,-8.1283951,-10.106867)"
  3718. id="path3346"
  3719. style="fill:#0eb474;fill-opacity:1;fill-rule:evenodd;stroke:none" />
  3720. </clipPath>
  3721. <linearGradient
  3722. inkscape:collect="always"
  3723. xlink:href="#linearGradient4118"
  3724. id="linearGradient4124"
  3725. x1="62.225403"
  3726. y1="342.29437"
  3727. x2="582.65601"
  3728. y2="342.29437"
  3729. gradientUnits="userSpaceOnUse" />
  3730. <clipPath
  3731. id="clipPath932"
  3732. clipPathUnits="userSpaceOnUse">
  3733. <g
  3734. id="g936"
  3735. inkscape:label="circulo"
  3736. style="display:inline;opacity:0.98999999;fill:#32b6a1;fill-opacity:1"
  3737. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  3738. <path
  3739. style="fill:#32b6a1;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  3740. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  3741. id="path934"
  3742. inkscape:connector-curvature="0" />
  3743. </g>
  3744. </clipPath>
  3745. <clipPath
  3746. id="clipPath942"
  3747. clipPathUnits="userSpaceOnUse">
  3748. <g
  3749. id="g946"
  3750. inkscape:label="circulo"
  3751. style="display:inline;opacity:0.98999999;fill:#32b6a1;fill-opacity:1"
  3752. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  3753. <path
  3754. style="fill:#32b6a1;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  3755. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  3756. id="path944"
  3757. inkscape:connector-curvature="0" />
  3758. </g>
  3759. </clipPath>
  3760. <linearGradient
  3761. id="linearGradient3822">
  3762. <stop
  3763. id="stop3824"
  3764. style="stop-color:#e6e6e6;stop-opacity:1"
  3765. offset="0" />
  3766. <stop
  3767. id="stop3826"
  3768. style="stop-color:#f5f5f5;stop-opacity:1"
  3769. offset="1" />
  3770. </linearGradient>
  3771. <linearGradient
  3772. id="linearGradient3737">
  3773. <stop
  3774. id="stop3739"
  3775. style="stop-color:#ffffff;stop-opacity:1"
  3776. offset="0" />
  3777. <stop
  3778. id="stop3741"
  3779. style="stop-color:#ffffff;stop-opacity:0"
  3780. offset="1" />
  3781. </linearGradient>
  3782. <linearGradient
  3783. id="linearGradient3700">
  3784. <stop
  3785. id="stop3702"
  3786. style="stop-color:#f05517;stop-opacity:1"
  3787. offset="0" />
  3788. <stop
  3789. id="stop3704"
  3790. style="stop-color:#f37340;stop-opacity:1"
  3791. offset="1" />
  3792. </linearGradient>
  3793. <filter
  3794. id="filter3174-7"
  3795. style="color-interpolation-filters:sRGB">
  3796. <feGaussianBlur
  3797. id="feGaussianBlur3176-5"
  3798. stdDeviation="1.71" />
  3799. </filter>
  3800. <linearGradient
  3801. x1="36.357143"
  3802. y1="6"
  3803. x2="36.357143"
  3804. y2="63.893143"
  3805. id="linearGradient3188"
  3806. xlink:href="#linearGradient3737"
  3807. gradientUnits="userSpaceOnUse" />
  3808. <filter
  3809. x="-0.192"
  3810. y="-0.192"
  3811. width="1.3839999"
  3812. height="1.3839999"
  3813. id="filter3794"
  3814. style="color-interpolation-filters:sRGB">
  3815. <feGaussianBlur
  3816. id="feGaussianBlur3796"
  3817. stdDeviation="5.28" />
  3818. </filter>
  3819. <linearGradient
  3820. x1="48"
  3821. y1="20.220806"
  3822. x2="48"
  3823. y2="138.66119"
  3824. id="linearGradient3613"
  3825. xlink:href="#linearGradient3737"
  3826. gradientUnits="userSpaceOnUse" />
  3827. <radialGradient
  3828. cx="48"
  3829. cy="90.171875"
  3830. r="42"
  3831. fx="48"
  3832. fy="90.171875"
  3833. id="radialGradient3619"
  3834. xlink:href="#linearGradient3737"
  3835. gradientUnits="userSpaceOnUse"
  3836. gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.5510206,0.19713193)" />
  3837. <clipPath
  3838. id="clipPath3613">
  3839. <rect
  3840. width="84"
  3841. height="84"
  3842. rx="6"
  3843. ry="6"
  3844. x="6"
  3845. y="6"
  3846. id="rect3615"
  3847. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  3848. </clipPath>
  3849. <linearGradient
  3850. x1="48"
  3851. y1="90"
  3852. x2="48"
  3853. y2="5.9877172"
  3854. id="linearGradient3617"
  3855. xlink:href="#linearGradient3822"
  3856. gradientUnits="userSpaceOnUse" />
  3857. <linearGradient
  3858. x1="45.447727"
  3859. y1="92.539597"
  3860. x2="45.447727"
  3861. y2="7.0165396"
  3862. id="ButtonShadow-0"
  3863. gradientUnits="userSpaceOnUse"
  3864. gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)">
  3865. <stop
  3866. id="stop3750-8"
  3867. style="stop-color:#000000;stop-opacity:1"
  3868. offset="0" />
  3869. <stop
  3870. id="stop3752-5"
  3871. style="stop-color:#000000;stop-opacity:0.58823532"
  3872. offset="1" />
  3873. </linearGradient>
  3874. <linearGradient
  3875. x1="32.251034"
  3876. y1="6.1317081"
  3877. x2="32.251034"
  3878. y2="90.238609"
  3879. id="linearGradient3780"
  3880. xlink:href="#ButtonShadow-0"
  3881. gradientUnits="userSpaceOnUse"
  3882. gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
  3883. <linearGradient
  3884. x1="32.251034"
  3885. y1="6.1317081"
  3886. x2="32.251034"
  3887. y2="90.238609"
  3888. id="linearGradient3721"
  3889. xlink:href="#ButtonShadow-0"
  3890. gradientUnits="userSpaceOnUse"
  3891. gradientTransform="translate(0,-97)" />
  3892. <linearGradient
  3893. gradientTransform="matrix(3.6907816,0,0,3.6907816,86.006062,-394.23151)"
  3894. x1="47.973103"
  3895. y1="79.776169"
  3896. x2="47.973103"
  3897. y2="16.436062"
  3898. id="linearGradient3067"
  3899. xlink:href="#linearGradient3700"
  3900. gradientUnits="userSpaceOnUse" />
  3901. <clipPath
  3902. id="clipPath1109"
  3903. clipPathUnits="userSpaceOnUse">
  3904. <g
  3905. id="g1113"
  3906. inkscape:label="circulo"
  3907. style="display:inline;opacity:0.98999999;fill:#fa6e31;fill-opacity:1"
  3908. transform="matrix(12.332308,0,0,12.332308,-47.545312,-534.58518)">
  3909. <path
  3910. style="fill:#fa6e31;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  3911. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  3912. id="path1111"
  3913. inkscape:connector-curvature="0" />
  3914. </g>
  3915. </clipPath>
  3916. <filter
  3917. y="0%"
  3918. x="0%"
  3919. height="100%"
  3920. width="100%"
  3921. id="alpha-5">
  3922. <feColorMatrix
  3923. id="feColorMatrix929-35"
  3924. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  3925. in="SourceGraphic" />
  3926. </filter>
  3927. <mask
  3928. id="mask0-6">
  3929. <g
  3930. style="filter:url(#alpha-5)"
  3931. id="g934-29"
  3932. filter="url(#alpha)">
  3933. <rect
  3934. id="rect932-1"
  3935. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  3936. height="384"
  3937. width="384" />
  3938. </g>
  3939. </mask>
  3940. <clipPath
  3941. id="clip1-2">
  3942. <rect
  3943. id="rect937-7"
  3944. height="384"
  3945. width="384" />
  3946. </clipPath>
  3947. <g
  3948. clip-path="url(#clip1-2)"
  3949. id="surface5-0">
  3950. <path
  3951. id="path940-9"
  3952. style="fill:rgb(100%,100%,100%)"
  3953. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
  3954. </g>
  3955. <mask
  3956. id="mask1-3">
  3957. <g
  3958. style="filter:url(#alpha-5)"
  3959. id="g945-6"
  3960. filter="url(#alpha)">
  3961. <rect
  3962. id="rect943-0"
  3963. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  3964. height="384"
  3965. width="384" />
  3966. </g>
  3967. </mask>
  3968. <clipPath
  3969. id="clip2-6">
  3970. <rect
  3971. id="rect948-2"
  3972. height="384"
  3973. width="384" />
  3974. </clipPath>
  3975. <g
  3976. clip-path="url(#clip2-6)"
  3977. id="surface8-6">
  3978. <path
  3979. id="path951-1"
  3980. style="fill:rgb(0%,0%,0%)"
  3981. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
  3982. </g>
  3983. <linearGradient
  3984. gradientUnits="userSpaceOnUse"
  3985. y2="249.017"
  3986. y1="515.328"
  3987. x2="249.882"
  3988. x1="-248.932"
  3989. id="linearGradient1117-8">
  3990. <stop
  3991. id="stop954-7"
  3992. offset="0"
  3993. style="stop-color:#4aaee6" />
  3994. <stop
  3995. id="stop956-9"
  3996. offset="1"
  3997. style="stop-color:#357af0" />
  3998. </linearGradient>
  3999. <clipPath
  4000. clipPathUnits="userSpaceOnUse"
  4001. id="clipPath1049-3">
  4002. <path
  4003. id="path1051-6"
  4004. style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  4005. d="M 463.63477,-41.029297 V 146.99609 H 719.96289 V -41.029297 Z m 136.94726,62.039063 c 2.02549,0.04564 4.01265,0.546204 5.93555,1.15039 3.31456,1.173737 -0.0563,-0.02521 3.30078,1.183594 1.23632,0.445164 2.59368,0.770714 3.47656,1.828125 0.2093,0.250672 0.33333,0.560972 0.5,0.841797 0.40916,0.992658 0.82824,1.986921 1.33399,2.935547 0.75265,1.411753 0.34017,0.533733 1.22851,2.005859 0.21404,0.354701 0.40352,0.724216 0.60547,1.085938 0.80105,1.979562 0.10441,0.146757 0.64063,1.84375 0.32055,1.014447 0.73167,2.000599 1.05468,3.013672 0.1404,0.440334 0.25149,0.891119 0.37696,1.335937 0.10735,0.482569 0.24946,0.958297 0.32226,1.447266 0.15762,1.058025 -0.0625,2.062292 -0.15039,3.109375 -0.0272,0.324387 -0.0306,0.651443 -0.0469,0.976562 -0.0151,0.301483 -0.0328,0.602857 -0.0488,0.904297 -0.005,0.339472 0.011,0.678836 -0.0117,1.017578 -0.0953,1.425451 -0.58044,2.792341 -0.8418,4.189453 -0.6011,2.143144 -1.08101,4.316407 -1.66015,6.464844 -0.17947,0.701148 -0.39549,1.393753 -0.53711,2.103516 -0.0201,0.10064 -0.3398,2.305206 -0.3418,2.316406 -0.0561,0.315023 -0.13313,0.626166 -0.20703,0.9375 -0.0856,0.360514 -0.18099,0.718826 -0.27149,1.078125 -0.11197,0.362193 -0.21026,0.728267 -0.33593,1.085937 -0.0669,0.190451 -0.18094,0.3637 -0.24024,0.556641 -0.32624,1.060487 -0.17213,2.230872 -0.67187,3.246094 -0.33272,0.572373 -0.47374,0.835204 -0.87305,1.416015 -0.90143,1.311201 -1.8998,2.563798 -2.59961,4.003907 -0.52952,1.066222 -1.01417,2.161844 -1.56445,3.216797 -1.05973,2.031622 -2.32837,3.941872 -3.52539,5.892578 -0.47933,0.734672 -0.93989,1.482062 -1.43946,2.203125 -0.61854,0.892787 -1.53449,1.966338 -2.21289,2.792968 -1.66498,2.02877 -3.40783,4.003626 -4.89062,6.173829 -0.27575,0.391913 -0.5161,0.81042 -0.82617,1.175781 -0.65339,0.769895 -1.2598,1.138017 -2.05664,1.75 -1.37556,1.05646 -2.74055,2.134727 -3.99805,3.332031 -0.70435,0.74784 -1.00296,1.17506 -1.98633,1.67383 -1.42573,0.72313 -2.87334,0.9815 -4.44726,1.22461 -2.20318,0.3403 -3.69273,0.39632 -5.91016,0.55078 -2.06836,-0.0147 -2.78292,0.0453 -4.77149,-0.19727 -0.6878,-0.0839 -1.37492,-0.18509 -2.05078,-0.33789 -1.01651,-0.2298 -1.99505,-0.58509 -2.96093,-0.97461 0.006,0.51744 -0.13944,0.90854 -0.74024,1.13672 -0.0561,0.0547 -0.11414,0.11191 -0.16015,0.14063 -0.57561,0.35934 -1.49656,0.10463 -2.06836,-0.0684 -0.39497,-0.11949 -0.77868,-0.27331 -1.16797,-0.41016 -0.32394,-0.19619 -0.66532,-0.3666 -0.97266,-0.58789 -0.64375,-0.46352 -1.28901,-1.1118 -1.83398,-1.68164 -1.2164,-1.271919 -2.32539,-2.645058 -3.4043,-4.033203 -0.74352,-0.98321 -3.78921,-4.988169 -4.38672,-5.878906 -0.48321,-0.720343 -0.87121,-1.50146 -1.30273,-2.253907 -0.36713,-0.640161 -0.73916,-1.276637 -1.09375,-1.923828 -1.52996,-2.792454 -0.0189,-0.263598 -1.71289,-3.007812 -0.27449,-0.443642 -0.5387,-0.894136 -0.82227,-1.332032 -0.99527,-1.536951 -2.17886,-2.960136 -2.87695,-4.673828 -0.39557,-1.173198 -0.31228,-0.946748 -0.74024,-2.134765 -0.16507,-0.458244 -0.35681,-0.909453 -0.5,-1.375 -0.44314,-1.440771 -0.65149,-2.923052 -0.65234,-4.429688 0.0353,-0.644785 0.10237,-1.289835 0.10937,-1.935547 0.003,-0.256001 -0.0313,-0.509618 -0.0293,-0.765625 0.0109,-1.256752 0.27053,-2.495228 0.61328,-3.699218 0.25038,-0.673539 0.45855,-1.362721 0.75,-2.019532 0.23343,-0.526072 0.54239,-1.015541 0.82031,-1.519531 0.97759,-1.772811 1.97783,-3.53347 2.96875,-5.298828 0.62763,-0.9894 1.24592,-1.985236 1.88281,-2.96875 0.27263,-0.42101 0.5649,-0.8289 0.81836,-1.261719 0.21106,-0.360403 1.81307,-3.378002 1.97071,-3.673828 0.67869,-1.204716 1.35821,-2.377339 2.19922,-3.478515 0.52125,-0.682506 1.03883,-1.322386 1.7246,-1.853516 0.30982,-0.239963 0.66762,-0.408846 1.00196,-0.613281 0.58388,-0.317594 1.6579,-0.892013 2.22461,-1.240235 1.65589,-1.017491 3.20127,-2.209644 4.88281,-3.1875 1.05919,-0.631008 2.1324,-1.236909 3.17773,-1.890625 1.66837,-1.04335 3.16999,-2.348201 4.95508,-3.201172 1.6159,-0.7509 1.02418,-0.489749 2.66406,-1.191406 1.01854,-0.435803 1.40112,-0.565135 2.36133,-1.074219 0.27394,-0.145237 0.53419,-0.31573 0.80274,-0.470703 0.2589,-0.149402 0.51932,-0.295842 0.77929,-0.443359 1.63159,-0.765352 3.26323,-1.538793 4.94532,-2.189453 0.6652,-0.257311 1.35022,-0.462534 2.01953,-0.708985 4.97377,-1.831443 -0.12381,-0.06534 5.14844,-1.849609 1.8846,-0.509147 2.82644,-0.81055 4.79101,-1.144531 0.89007,-0.151314 1.78362,-0.311023 2.68555,-0.351563 0.29078,-0.01307 0.58174,-0.01629 0.87109,-0.0098 z m -0.1582,1.910156 c -0.26586,-0.0043 -0.53361,-7.49e-4 -0.80078,0.01367 -0.78588,0.04242 -1.56123,0.199203 -2.33594,0.33789 -1.99442,0.357038 -2.64479,0.575593 -4.55273,1.09375 -5.20115,1.768028 -0.009,-0.03348 -4.9629,1.791016 -0.68636,0.252799 -1.38809,0.462806 -2.07031,0.726562 -1.62111,0.626738 -3.19327,1.379473 -4.76562,2.117188 -2.07539,1.316005 -4.39444,2.149093 -6.61328,3.181641 -0.36169,0.197825 -0.7311,0.380621 -1.08399,0.59375 -0.93015,0.561769 -1.26415,0.883296 -2.17969,1.513671 -0.47436,0.326609 -0.9534,0.64727 -1.4414,0.953126 -0.0196,0.01226 -3.19266,1.901833 -3.25586,1.939453 -1.65513,0.96526 -3.1775,2.140218 -4.8086,3.142578 -0.68784,0.422696 -1.65002,0.933967 -2.36328,1.322265 -0.30582,0.187951 -0.63547,0.342987 -0.91797,0.564454 -0.36007,0.282287 -0.97307,1.077571 -1.22851,1.417968 -0.76928,1.025135 -1.39703,2.102697 -2.02344,3.21875 -0.17612,0.330698 -1.74046,3.27672 -1.95703,3.646485 -0.124,0.211708 -1.35443,2.09474 -1.57812,2.447265 -0.39983,0.630113 -0.78977,1.266288 -1.18946,1.896485 -0.97043,1.738655 -1.95644,3.469291 -2.91797,5.21289 -0.27224,0.493666 -0.57472,0.974643 -0.80273,1.490235 -0.2537,0.573705 -0.42586,1.179435 -0.63867,1.769531 -0.28195,1.021728 -0.49766,2.070297 -0.49805,3.134765 0,0.195555 0.0332,0.390396 0.0312,0.585938 -0.002,0.188203 -0.10533,2.019165 -0.11133,2.123047 0.0124,1.307425 0.19808,2.594624 0.59375,3.841797 0.12879,0.405953 0.29776,0.797035 0.44336,1.197265 0.38129,1.048041 0.40514,1.138477 0.75781,2.183594 0.67169,1.52888 1.74198,2.812977 2.64258,4.203125 0.29946,0.462227 0.58075,0.936301 0.8711,1.404297 1.66758,2.701334 0.19948,0.249464 1.77929,3.128906 0.34439,0.627714 0.70613,1.246196 1.0625,1.867188 0.42949,0.748381 0.81387,1.523908 1.29492,2.240234 0.42338,0.630453 3.73133,4.987424 4.25782,5.683594 1.04232,1.34124 2.1148,2.666515 3.29101,3.894531 0.48801,0.509496 1.06229,1.090573 1.64453,1.501954 0.22583,0.15955 0.48059,0.275 0.72071,0.41211 0.15216,0.0217 0.47724,0.14393 0.80078,0.24805 -0.0647,-0.11815 -0.11978,-0.24176 -0.14844,-0.3711 -0.0114,-0.0522 -0.002,-0.1067 -0.002,-0.16015 -0.76866,-0.560808 -0.62904,-1.336793 0.0391,-1.57227 0.0132,-1.843182 1.88807,-1.854186 1.91016,0.02539 10e-4,0.04491 0.003,0.08986 0.004,0.134766 0.002,0.07802 0.002,0.156278 0.004,0.234375 1.31868,0.570923 2.64826,1.135719 4.05469,1.447269 2.07177,0.45892 4.18781,0.44653 6.29492,0.45703 2.10562,-0.15081 3.57956,-0.21336 5.67578,-0.53906 1.42685,-0.2217 2.69883,-0.43187 3.97266,-1.105473 0.56107,-0.296694 0.87057,-0.722285 1.26757,-1.179688 1.32605,-1.28347 2.77504,-2.429561 4.23633,-3.552734 0.71596,-0.550297 1.3262,-0.916307 1.89453,-1.609375 0.22446,-0.273732 0.38919,-0.591141 0.58399,-0.886719 1.51256,-2.216681 3.28838,-4.233362 4.98828,-6.304687 0.65553,-0.798766 1.56919,-1.868595 2.16992,-2.738282 0.47232,-0.683782 0.90663,-1.392944 1.35938,-2.089843 1.17102,-1.912394 2.41677,-3.781754 3.45312,-5.773438 0.53629,-1.030644 1.0104,-2.101412 1.52734,-3.142578 0.96208,-1.978976 2.43449,-3.633478 3.5293,-5.529297 0.23396,-0.873644 0.19305,-1.798504 0.45117,-2.669922 0.0901,-0.304002 0.23919,-0.586722 0.3418,-0.886718 0.10475,-0.306276 0.18775,-0.619784 0.28125,-0.929688 0.0818,-0.327909 0.16674,-0.655403 0.24414,-0.984375 0.069,-0.293359 0.14301,-0.586016 0.19531,-0.882813 0.0905,-0.513314 0.21464,-1.676712 0.31641,-2.1875 0.0547,-0.274625 0.50127,-2.004075 0.57617,-2.296874 0.58247,-2.162631 1.06904,-4.348594 1.67383,-6.50586 0.22696,-1.302031 0.7091,-2.571666 0.7832,-3.898437 0.0149,-0.267811 -0.002,-0.53646 -0.002,-0.804688 0.0168,-0.330357 0.0345,-0.659849 0.0508,-0.990234 0.0159,-0.322357 0.0199,-0.647138 0.0469,-0.96875 0.0499,-0.593205 0.20584,-1.483441 0.21484,-2.082031 0.0122,-0.778825 -0.1469,-1.158826 -0.33984,-1.951172 -0.11782,-0.41508 -0.22163,-0.835269 -0.35352,-1.246094 -0.31269,-0.973947 -0.7096,-1.922258 -1.01758,-2.898438 -0.51018,-1.617133 0.0139,-0.279682 -0.60547,-1.751953 -0.16713,-0.290159 -0.32614,-0.584159 -0.50195,-0.86914 -0.79993,-1.296633 -0.48003,-0.616648 -1.22266,-2 -0.5472,-1.0193 -1.00133,-2.086806 -1.44336,-3.154297 -0.12168,-0.192186 -0.21138,-0.408619 -0.36523,-0.576172 -0.32263,-0.351373 -2.18826,-0.915529 -2.47852,-1.019531 -4.74201,-1.699116 1.30797,0.448263 -3.30078,-1.183594 -1.76671,-0.552401 -3.59208,-1.01655 -5.45312,-1.046875 z M 566.45898,100.9668 c -0.0321,0.009 -0.11094,0.022 -0.11914,0.0273 -0.0236,0.0153 -0.0302,0.036 -0.0508,0.0527 0.0955,-0.0243 0.15259,-0.0401 0.22266,-0.0586 -0.0174,-0.008 -0.0353,-0.0139 -0.0527,-0.0215 z m -0.0918,0.0957 c -0.0391,8.2e-4 -0.0759,0.0111 -0.11328,0.0195 -0.0119,0.0112 -0.0224,0.0218 -0.0332,0.0332 0.0833,0.002 0.15932,-0.003 0.21289,-0.0293 0.0358,-0.0172 -0.006,-0.0247 -0.0664,-0.0234 z m 1.04101,1.34961 c -0.0437,0.052 -0.10808,0.12439 -0.17187,0.19336 0.0155,-0.007 0.0426,-0.0178 0.0547,-0.0234 0.23617,-0.31999 0.22239,-0.29503 0.11718,-0.16992 z" />
  4006. </clipPath>
  4007. </defs>
  4008. <sodipodi:namedview
  4009. pagecolor="#ffffff"
  4010. bordercolor="#666666"
  4011. borderopacity="1"
  4012. objecttolerance="10"
  4013. gridtolerance="10"
  4014. guidetolerance="10"
  4015. inkscape:pageopacity="0"
  4016. inkscape:pageshadow="2"
  4017. inkscape:window-width="1920"
  4018. inkscape:window-height="1031"
  4019. id="namedview12"
  4020. showgrid="false"
  4021. inkscape:zoom="6.9532169"
  4022. inkscape:cx="-2.9258041"
  4023. inkscape:cy="28.359744"
  4024. inkscape:window-x="0"
  4025. inkscape:window-y="24"
  4026. inkscape:window-maximized="1"
  4027. inkscape:current-layer="svg10"
  4028. inkscape:document-rotation="0" />
  4029. <g
  4030. fill="#c185b1"
  4031. opacity=".99"
  4032. transform="matrix(1.1503549 0 0 1.1503549 -4.486125 -7.525565)"
  4033. id="g6"
  4034. style="fill:#bd97b3;fill-opacity:1">
  4035. <path
  4036. d="m44.322082 27.405077a19.729762 19.729765 0 0 1 -19.729762 19.729765 19.729762 19.729765 0 0 1 -19.7297621-19.729765 19.729762 19.729765 0 0 1 19.7297621-19.7297632 19.729762 19.729765 0 0 1 19.729762 19.7297632z"
  4037. id="path2"
  4038. style="fill:#bd97b3;fill-opacity:1" />
  4039. <path
  4040. d="m44.322082 27.405077a19.729762 19.729765 0 0 1 -19.729762 19.729765 19.729762 19.729765 0 0 1 -19.7297621-19.729765 19.729762 19.729765 0 0 1 19.7297621-19.7297632 19.729762 19.729765 0 0 1 19.729762 19.7297632z"
  4041. id="path4"
  4042. style="fill:#bd97b3;fill-opacity:1" />
  4043. </g>
  4044. <path
  4045. inkscape:connector-curvature="0"
  4046. d=""
  4047. style="opacity:1;fill:url(#linearGradient948);fill-opacity:1;stroke:none;stroke-width:2.16342402;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03831416;paint-order:fill markers stroke"
  4048. id="path864"
  4049. r="28.431282"
  4050. cy="97.610519"
  4051. cx="103.31834" />
  4052. <g
  4053. id="g4866"
  4054. transform="matrix(3.6852994,-0.56691334,0.56691334,3.6852994,312.53184,-937.29284)"
  4055. style="opacity:0.38900003">
  4056. <rect
  4057. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.15000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke"
  4058. id="rect4848"
  4059. width="25.830492"
  4060. height="29.56739"
  4061. x="-61.94516"
  4062. y="253.76543"
  4063. rx="1.4423118"
  4064. ry="1.4423118"
  4065. transform="rotate(-0.01865124)" />
  4066. <rect
  4067. transform="rotate(-0.01865124)"
  4068. ry="1.4423118"
  4069. rx="1.4423118"
  4070. y="253.76543"
  4071. x="-61.94516"
  4072. height="29.56739"
  4073. width="25.830492"
  4074. id="rect4850"
  4075. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke" />
  4076. <rect
  4077. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.44999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke"
  4078. id="rect4852"
  4079. width="25.830492"
  4080. height="29.56739"
  4081. x="-61.94516"
  4082. y="253.76543"
  4083. rx="1.4423118"
  4084. ry="1.4423118"
  4085. transform="rotate(-0.01865124)" />
  4086. <rect
  4087. transform="rotate(-0.01865124)"
  4088. ry="1.4423118"
  4089. rx="1.4423118"
  4090. y="253.76543"
  4091. x="-61.94516"
  4092. height="29.56739"
  4093. width="25.830492"
  4094. id="rect4854"
  4095. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke" />
  4096. <rect
  4097. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.85000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke"
  4098. id="rect4856"
  4099. width="25.830492"
  4100. height="29.56739"
  4101. x="-61.94516"
  4102. y="253.76543"
  4103. rx="1.4423118"
  4104. ry="1.4423118"
  4105. transform="rotate(-0.01865124)" />
  4106. <rect
  4107. transform="rotate(-0.01865124)"
  4108. ry="1.4423118"
  4109. rx="1.4423118"
  4110. y="253.76543"
  4111. x="-61.94516"
  4112. height="29.56739"
  4113. width="25.830492"
  4114. id="rect4858"
  4115. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke" />
  4116. </g>
  4117. <rect
  4118. style="opacity:1;fill:url(#linearGradient993);fill-opacity:1;stroke:none;stroke-width:1.37192309;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.14828898;paint-order:fill markers stroke"
  4119. id="rect4587"
  4120. width="96.312836"
  4121. height="110.24642"
  4122. x="220.72105"
  4123. y="67.471504"
  4124. rx="5.3778739"
  4125. ry="5.3778739"
  4126. transform="rotate(-8.7639662)" />
  4127. <path
  4128. inkscape:connector-curvature="0"
  4129. d=""
  4130. style="opacity:1;fill:url(#linearGradient1194);fill-opacity:1;stroke:none;stroke-width:2.16342402;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03831416;paint-order:fill markers stroke"
  4131. id="path864-2"
  4132. r="28.431282"
  4133. cy="97.610519"
  4134. cx="103.31834" />
  4135. <path
  4136. inkscape:connector-curvature="0"
  4137. style="opacity:0.2;fill:#ffffff"
  4138. d="m -28.044573,0.7624215 c -11.110903,0 -20,8.889222 -20,19.9999995 0,0.167705 0.0077,0.33333 0.01172,0.5 0.262786,-10.875512 9.045085,-19.4999995 19.988281,-19.4999995 1.641784,0 3.076508,1.3304884 3.289062,2.9335938 0.02844,-0.1901595 0.04297,-0.387083 0.04297,-0.5996094 -10e-7,-1.7776644 -1.554264,-3.3339844 -3.332032,-3.3339844 z m 1.613281,8.308594 c -0.02818,0.152235 -0.05664,0.304379 -0.05664,0.470703 0,1.7777655 1.554363,3.3320315 3.332031,3.3320315 h 4 c 6.099753,0 10.906921,4.702909 11.09375,10.749999 0.00848,-0.212636 0.017578,-0.42426 0.017578,-0.638672 0,-6.221876 -4.889438,-11.111327 -11.111328,-11.111327 h -4 c -1.597388,0 -3.004199,-1.258095 -3.275391,-2.8027345 z"
  4139. id="path1040" />
  4140. <circle
  4141. style="opacity:0.19299999;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.19582367;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  4142. id="path5699"
  4143. cx="23.80377"
  4144. cy="24"
  4145. r="19.474575" />
  4146. <style
  4147. id="style937"
  4148. type="text/css">
  4149. .st0{fill:#FFFFFF;}
  4150. .st1{fill:url(#SVGID_1_);}
  4151. .st2{fill:url(#SVGID_2_);}
  4152. .st3{fill:#857A68;}
  4153. .st4{fill:url(#SVGID_3_);}
  4154. .st5{fill:url(#SVGID_4_);}
  4155. </style>
  4156. <path
  4157. style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.03119024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  4158. d="m 31.535957,11.536334 c -0.218334,-0.0044 -0.492631,0.03405 -0.835193,0.111481 l -5.676381,1.151967 -5.408946,1.06851 c -0.958226,0.204838 -1.144133,0.73971 -1.121511,1.585098 l 0.01523,13.195542 c -0.04354,0.927443 -0.144121,1.436941 -1.211058,1.607638 -3.7759,0.562014 -4.509005,1.731156 -4.486034,3.393767 0.02286,1.655819 1.365404,2.98258 3.215275,2.796156 1.622304,-0.180445 2.830804,-0.652395 3.573475,-2.152858 0.287521,-0.56514 0.384832,-1.740775 0.313731,-2.930786 l -0.01461,-10.496856 c 0.0031,-0.734765 -0.121477,-1.143754 0.852249,-1.345688 l 5.098871,-1.027695 0.76209,-0.153514 v -0.0012 l 3.480272,-0.701781 c 0.565944,-0.114149 0.832668,0.0798 0.841283,0.718229 l 0.01462,7.842639 c -0.04355,0.927442 -0.133158,1.351656 -1.200095,1.522352 -3.7759,0.562014 -4.519359,1.816441 -4.496388,3.479052 0.02286,1.65582 1.386116,2.897904 3.235987,2.711479 1.622304,-0.180444 2.78877,-0.600004 3.531441,-2.100467 0.287521,-0.56514 0.310997,-1.687342 0.335051,-2.898499 l -0.01036,-16.058093 c -4.67e-4,-0.903099 -0.153999,-1.303321 -0.808995,-1.316447 z"
  4159. id="path929-2"
  4160. inkscape:connector-curvature="0" />
  4161. </svg>