123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- height="48"
- width="48"
- version="1.1"
- id="svg10"
- sodipodi:docname="kindd.svg"
- inkscape:version="0.92.4 5da689c313, 2019-01-14">
- <metadata
- id="metadata16">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <defs
- id="defs14">
- <filter
- filterUnits="objectBoundingBox"
- color-interpolation-filters="sRGB"
- y="-200%"
- x="-200%"
- height="400%"
- width="400%"
- id="xPHBR2KRsqNJJmxgfSMnWsjFL63MuKr0">
- <feGaussianBlur
- id="feGaussianBlur823"
- stdDeviation="4.294"
- in="SourceGraphic" />
- <feOffset
- id="feOffset825"
- result="pf_100_offsetBlur"
- dy="4"
- dx="0" />
- <feFlood
- id="feFlood827"
- flood-opacity=".4" />
- <feComposite
- id="feComposite829"
- result="pf_100_dropShadow"
- operator="in"
- in2="pf_100_offsetBlur" />
- <feBlend
- id="feBlend831"
- mode="normal"
- in2="pf_100_dropShadow"
- in="SourceGraphic" />
- </filter>
- <filter
- filterUnits="objectBoundingBox"
- color-interpolation-filters="sRGB"
- y="-200%"
- x="-200%"
- height="400%"
- width="400%"
- id="2JmMAOqgjSUXbdZfecnmpMzAW6swRgvN">
- <feGaussianBlur
- id="feGaussianBlur858"
- stdDeviation="4.294" />
- </filter>
- <linearGradient
- id="linearGradient991"
- inkscape:collect="always">
- <stop
- id="stop987"
- offset="0"
- style="stop-color:#52c1fa;stop-opacity:1" />
- <stop
- id="stop989"
- offset="1"
- style="stop-color:#1496ff;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient3361">
- <stop
- style="stop-color:#0068e0;stop-opacity:1;"
- offset="0"
- id="stop3363" />
- <stop
- style="stop-color:#00acf4;stop-opacity:1"
- offset="1"
- id="stop3365" />
- </linearGradient>
- <linearGradient
- id="linearGradient3026"
- y2="40.495998"
- gradientUnits="userSpaceOnUse"
- x2="71.204002"
- gradientTransform="matrix(1.5564685,0,0,1.58743,-88.730662,-20.236087)"
- y1="15.369"
- x1="71.204002"
- xlink:href="#linearGradient3361">
- <stop
- id="stop4808-4"
- stop-color="#fff"
- offset="0" />
- <stop
- id="stop4810-0"
- stop-color="#fff"
- stop-opacity=".23529"
- offset=".42448" />
- <stop
- id="stop4812-8"
- stop-color="#fff"
- stop-opacity=".15686"
- offset=".82090" />
- <stop
- id="stop4814-0"
- stop-color="#fff"
- stop-opacity=".39216"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3029"
- fx="4.4590001"
- fy="8.5088997"
- gradientUnits="userSpaceOnUse"
- cy="8.6258001"
- cx="15.026"
- gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
- r="20">
- <stop
- id="stop4170"
- stop-color="#c24251"
- offset="0" />
- <stop
- id="stop4172"
- stop-color="#c24251"
- offset=".26238" />
- <stop
- id="stop4174"
- stop-color="#a63643"
- offset=".66094" />
- <stop
- id="stop4176"
- stop-color="#a63643"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3032"
- gradientUnits="userSpaceOnUse"
- cy="3.99"
- cx="23.896"
- gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
- r="20.396999">
- <stop
- id="stop3244-9-33-7-0-9"
- stop-color="#fff"
- offset="0" />
- <stop
- id="stop3246-3-5-0-8-5"
- stop-color="#ddd"
- offset=".26238" />
- <stop
- id="stop3248-1-7-8-8-1"
- stop-color="#abacae"
- offset=".66094" />
- <stop
- id="stop3250-9-3-0-5-1"
- stop-color="#89898b"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3035"
- gradientUnits="userSpaceOnUse"
- cy="186.17"
- cx="99.156998"
- gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
- r="62.769001">
- <stop
- id="stop3822-2-6-3"
- stop-color="#3d3d3d"
- offset="0" />
- <stop
- id="stop3864-8-7-7"
- stop-color="#686868"
- stop-opacity=".49804"
- offset=".5" />
- <stop
- id="stop3824-1-2-5"
- stop-color="#686868"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient4433"
- y2="25.611"
- gradientUnits="userSpaceOnUse"
- x2="23.077999"
- gradientTransform="matrix(1,0,0,1.0521,0,-0.90547)"
- y1="13.035"
- x1="22.759001">
- <stop
- id="stop6305-1-0-2"
- stop-color="#fff"
- offset="0" />
- <stop
- id="stop6307-5-0-6"
- stop-color="#fff"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4829">
- <stop
- style="stop-color:#f4fbfc;stop-opacity:1;"
- offset="0"
- id="stop4831" />
- <stop
- style="stop-color:#d6d6d6;stop-opacity:1;"
- offset="1"
- id="stop4833" />
- </linearGradient>
- <radialGradient
- id="SVGID_4_"
- cx="224.50391"
- cy="186.51421"
- r="127.0051"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop27" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop29" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop31" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop33" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop35" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop37" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="26.769501"
- cy="286.66409"
- cx="324.69339"
- id="SVGID_5_">
- <stop
- id="stop50"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop52"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop54"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop56"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop58"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop60"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="46.444901"
- cy="392.77249"
- cx="325"
- id="SVGID_6_">
- <stop
- id="stop73"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop75"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop77"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop79"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop81"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop83"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <clipPath
- id="clipPath-349538100">
- <g
- id="g17"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path19"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3914">
- <g
- id="g3912"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path3910"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3920">
- <g
- id="g3918"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path3916"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <linearGradient
- id="linearGradient6987"
- osb:paint="solid">
- <stop
- style="stop-color:#77d2fb;stop-opacity:1;"
- offset="0"
- id="stop6985" />
- </linearGradient>
- <filter
- y="0%"
- x="0%"
- height="100%"
- width="100%"
- id="alpha">
- <feColorMatrix
- id="feColorMatrix929"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- in="SourceGraphic" />
- </filter>
- <mask
- id="mask0">
- <g
- id="g934"
- filter="url(#alpha)">
- <rect
- id="rect932"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- height="384"
- width="384" />
- </g>
- </mask>
- <clipPath
- id="clip1">
- <rect
- id="rect937"
- height="384"
- width="384" />
- </clipPath>
- <g
- clip-path="url(#clip1)"
- id="surface5">
- <path
- id="path940"
- style="fill:rgb(100%,100%,100%)"
- 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" />
- </g>
- <mask
- id="mask1">
- <g
- id="g945"
- filter="url(#alpha)">
- <rect
- id="rect943"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- height="384"
- width="384" />
- </g>
- </mask>
- <clipPath
- id="clip2">
- <rect
- id="rect948"
- height="384"
- width="384" />
- </clipPath>
- <g
- clip-path="url(#clip2)"
- id="surface8">
- <path
- id="path951"
- style="fill:rgb(0%,0%,0%)"
- 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" />
- </g>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="249.017"
- y1="515.328"
- x2="249.882"
- x1="-248.932"
- id="linearGradient1117">
- <stop
- id="stop954"
- offset="0"
- style="stop-color:#aa75e6;stop-opacity:1" />
- <stop
- id="stop956"
- offset="1"
- style="stop-color:#8935f0;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient-1"
- y2="116.54461"
- x2="186.14996"
- y1="116.54461"
- x1="0"
- gradientTransform="scale(0.69850138,1.4316364)"
- gradientUnits="userSpaceOnUse">
- <stop
- id="stop4511"
- offset="0%"
- stop-color="#FFFFFF" />
- <stop
- id="stop4513"
- offset="14.13%"
- stop-opacity="0.9576"
- stop-color="#FFFFFF" />
- <stop
- id="stop4515"
- offset="100%"
- stop-opacity="0.7"
- stop-color="#FFFFFF" />
- </linearGradient>
- <linearGradient
- id="linearGradient-2"
- y2="112.26521"
- x2="373.38791"
- y1="112.26521"
- x1="187.35059"
- gradientTransform="scale(0.68561406,1.4585465)"
- gradientUnits="userSpaceOnUse">
- <stop
- id="stop4518"
- offset="0%"
- stop-color="#F1F1F2" />
- <stop
- id="stop4520"
- offset="9.191442%"
- stop-color="#E4E5E6" />
- <stop
- id="stop4522"
- offset="23.57%"
- stop-color="#D9DADB" />
- <stop
- id="stop4524"
- offset="43.8%"
- stop-color="#D2D4D5" />
- <stop
- id="stop4526"
- offset="100%"
- stop-color="#D0D2D3" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(-49.413969,39.769372)"
- inkscape:collect="always"
- xlink:href="#linearGradient944"
- id="linearGradient948"
- gradientUnits="userSpaceOnUse"
- x1="122.34071"
- y1="117.04197"
- x2="84.091423"
- y2="71.020111" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient944">
- <stop
- style="stop-color:#d5dada;stop-opacity:1"
- offset="0"
- id="stop940" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1"
- offset="1"
- id="stop942" />
- </linearGradient>
- <filter
- style="color-interpolation-filters:sRGB"
- id="c"
- height="1.1655999"
- width="1.1655999"
- x="-0.082800001"
- y="-0.082800001">
- <feGaussianBlur
- stdDeviation="2.1101835"
- id="feGaussianBlur10" />
- </filter>
- <filter
- style="color-interpolation-filters:sRGB"
- id="a"
- height="1.031026"
- width="1.031376"
- x="-0.015688"
- y="-0.015513">
- <feGaussianBlur
- stdDeviation=".7986332"
- id="feGaussianBlur2" />
- </filter>
- <clipPath
- id="clip1-8">
- <path
- d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
- id="path952" />
- </clipPath>
- <clipPath
- id="clip2-3">
- <path
- 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"
- id="path955" />
- </clipPath>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="285.73337"
- x2="-21.756306"
- y1="267.25842"
- x1="-33.315849"
- id="linearGradient993"
- xlink:href="#linearGradient991"
- inkscape:collect="always"
- gradientTransform="matrix(3.7795276,0,0,3.7795276,373.62818,-931.73983)" />
- <radialGradient
- r="20"
- gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
- cx="15.026"
- cy="8.6258001"
- gradientUnits="userSpaceOnUse"
- fy="8.5088997"
- fx="4.4590001"
- id="radialGradient3029-4">
- <stop
- style="stop-color:#1429d2;stop-opacity:1"
- offset="0"
- stop-color="#c24251"
- id="stop4170-8" />
- <stop
- style="stop-color:#63c7e5;stop-opacity:1"
- offset="1"
- stop-color="#a63643"
- id="stop4176-3" />
- </radialGradient>
- <radialGradient
- r="20.396999"
- gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
- cx="23.896"
- cy="3.99"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3032-3">
- <stop
- offset="0"
- stop-color="#fff"
- id="stop3244-9-33-7-0-9-4" />
- <stop
- offset=".26238"
- stop-color="#ddd"
- id="stop3246-3-5-0-8-5-0" />
- <stop
- offset=".66094"
- stop-color="#abacae"
- id="stop3248-1-7-8-8-1-8" />
- <stop
- offset="1"
- stop-color="#89898b"
- id="stop3250-9-3-0-5-1-4" />
- </radialGradient>
- <radialGradient
- r="62.769001"
- gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
- cx="99.156998"
- cy="186.17"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3035-3">
- <stop
- offset="0"
- stop-color="#3d3d3d"
- id="stop3822-2-6-3-0" />
- <stop
- offset=".5"
- stop-opacity=".49804"
- stop-color="#686868"
- id="stop3864-8-7-7-2" />
- <stop
- offset="1"
- stop-opacity="0"
- stop-color="#686868"
- id="stop3824-1-2-5-4" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="127.0051"
- cy="186.51421"
- cx="224.50391"
- id="SVGID_4_-1">
- <stop
- id="stop27-7"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop29-6"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop31-2"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop33-6"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop35-2"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop37-5"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="SVGID_5_-9"
- cx="324.69339"
- cy="286.66409"
- r="26.769501"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop50-2" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop52-0" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop54-5" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop56-9" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop58-7" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop60-2" />
- </radialGradient>
- <radialGradient
- id="SVGID_6_-7"
- cx="325"
- cy="392.77249"
- r="46.444901"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop73-5" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop75-3" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop77-2" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop79-0" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop81-7" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop83-2" />
- </radialGradient>
- <clipPath
- id="clipPath-349538100-0">
- <g
- transform="translate(0,-1004.4)"
- id="g17-3">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path19-8"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3914-3">
- <g
- transform="translate(0,-1004.4)"
- id="g3912-6">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path3910-2"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3920-2">
- <g
- transform="translate(0,-1004.4)"
- id="g3918-2">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path3916-9"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <filter
- id="alpha-3"
- width="100%"
- height="100%"
- x="0%"
- y="0%">
- <feColorMatrix
- in="SourceGraphic"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- id="feColorMatrix929-8" />
- </filter>
- <mask
- id="mask0-2">
- <g
- filter="url(#alpha)"
- id="g934-8"
- style="filter:url(#alpha-3)">
- <rect
- width="384"
- height="384"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- id="rect932-5" />
- </g>
- </mask>
- <clipPath
- id="clip1-4">
- <rect
- width="384"
- height="384"
- id="rect937-5" />
- </clipPath>
- <g
- id="surface5-6"
- clip-path="url(#clip1-4)">
- <path
- 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"
- style="fill:rgb(100%,100%,100%)"
- id="path940-7" />
- </g>
- <mask
- id="mask1-7">
- <g
- filter="url(#alpha)"
- id="g945-3"
- style="filter:url(#alpha-3)">
- <rect
- width="384"
- height="384"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- id="rect943-6" />
- </g>
- </mask>
- <clipPath
- id="clip2-4">
- <rect
- width="384"
- height="384"
- id="rect948-5" />
- </clipPath>
- <g
- id="surface8-5"
- clip-path="url(#clip2-4)">
- <path
- 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"
- style="fill:rgb(0%,0%,0%)"
- id="path951-0" />
- </g>
- <filter
- y="-0.082800001"
- x="-0.082800001"
- width="1.1655999"
- height="1.1655999"
- id="c-3"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur10-1"
- stdDeviation="2.1101835" />
- </filter>
- <filter
- y="-0.015513"
- x="-0.015688"
- width="1.031376"
- height="1.031026"
- id="a-2"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur2-9"
- stdDeviation=".7986332" />
- </filter>
- <linearGradient
- y2="71.020111"
- x2="84.091423"
- y1="117.04197"
- x1="122.34071"
- gradientTransform="translate(-204.4472,49.508307)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1194"
- xlink:href="#linearGradient944"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient10457">
- <stop
- id="stop10453"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop10455"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4187">
- <stop
- id="stop4189"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop4191"
- offset="0.02099473"
- style="stop-color:#ffffff;stop-opacity:0.23529412" />
- <stop
- id="stop4193"
- offset="0.97696"
- style="stop-color:#ffffff;stop-opacity:0.15686275" />
- <stop
- id="stop4195"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687" />
- </linearGradient>
- <linearGradient
- id="linearGradient3702-501-757-6-946">
- <stop
- id="stop3228"
- offset="0"
- style="stop-color:#181818;stop-opacity:0" />
- <stop
- id="stop3230"
- offset="0.5"
- style="stop-color:#181818;stop-opacity:1" />
- <stop
- id="stop3232"
- offset="1"
- style="stop-color:#181818;stop-opacity:0" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(2.7297298,0,0,2.7297298,-399.6245,-51.888255)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4187"
- id="linearGradient3159"
- x1="23.999998"
- x2="23.99999"
- y1="5.3168221"
- y2="43" />
- <radialGradient
- cx="6.7304144"
- cy="9.9571075"
- fx="6.2001843"
- fy="9.9571075"
- gradientTransform="matrix(0,6.6366175,-8.147646,0,-66.832792,189.52692)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient27416-1-2-0-1"
- id="radialGradient3395"
- r="12.671875" />
- <radialGradient
- cx="4.9929786"
- cy="43.5"
- fx="4.9929786"
- fy="43.5"
- gradientTransform="matrix(5.694965,0,0,0.99999992,-322.77631,21.625258)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient10457"
- id="radialGradient2455-1"
- r="2.5" />
- <radialGradient
- cx="4.9929786"
- cy="43.5"
- fx="4.9929786"
- fy="43.5"
- gradientTransform="matrix(5.694965,0,0,0.99999992,345.44569,-108.62522)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient10457"
- id="radialGradient2457-5"
- r="2.5" />
- <linearGradient
- gradientTransform="matrix(2.8421052,0,0,0.71428566,-402.32153,34.053819)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3702-501-757-6-946"
- id="linearGradient2459-7"
- x1="25.058096"
- x2="25.058096"
- y1="47.027729"
- y2="39.999443" />
- <radialGradient
- cx="-4.0287771"
- cy="93.467628"
- fx="-4.0287771"
- fy="93.467628"
- gradientTransform="matrix(1.5563924,0,0,0.16978829,-327.84065,48.755539)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient10457"
- id="radialGradient4377"
- r="35.338131" />
- <linearGradient
- id="linearGradient27416-1-2-0-1">
- <stop
- id="stop27420-2-0-8-7"
- offset="0"
- style="stop-color:#8cd5ff;stop-opacity:1" />
- <stop
- id="stop10017"
- offset="0.55456889"
- style="stop-color:#3689e6;stop-opacity:1" />
- <stop
- id="stop27422-3-5-3-3"
- offset="1"
- style="stop-color:#3689e6;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.88479,-40.401242)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient10457"
- id="linearGradient11309"
- x1="352"
- x2="352"
- y1="196"
- y2="132" />
- <linearGradient
- gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.87552,-41.224919)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient10457"
- id="linearGradient11319"
- x1="320"
- x2="320"
- y1="196"
- y2="152" />
- <linearGradient
- gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.88015,-40.81308)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient10457"
- id="linearGradient11321"
- x1="352"
- x2="352"
- y1="196"
- y2="131" />
- <radialGradient
- id="radialGradient3029-45"
- fx="4.4590001"
- fy="8.5088997"
- gradientUnits="userSpaceOnUse"
- cy="8.6258001"
- cx="15.026"
- gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
- r="20">
- <stop
- id="stop4170-2"
- stop-color="#c24251"
- offset="0" />
- <stop
- id="stop4172-8"
- stop-color="#c24251"
- offset=".26238" />
- <stop
- id="stop4174-2"
- stop-color="#a63643"
- offset=".66094" />
- <stop
- id="stop4176-2"
- stop-color="#a63643"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3032-0"
- gradientUnits="userSpaceOnUse"
- cy="3.99"
- cx="23.896"
- gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
- r="20.396999">
- <stop
- id="stop3244-9-33-7-0-9-9"
- stop-color="#fff"
- offset="0" />
- <stop
- id="stop3246-3-5-0-8-5-5"
- stop-color="#ddd"
- offset=".26238" />
- <stop
- id="stop3248-1-7-8-8-1-0"
- stop-color="#abacae"
- offset=".66094" />
- <stop
- id="stop3250-9-3-0-5-1-5"
- stop-color="#89898b"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3035-8"
- gradientUnits="userSpaceOnUse"
- cy="186.17"
- cx="99.156998"
- gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
- r="62.769001">
- <stop
- id="stop3822-2-6-3-5"
- stop-color="#3d3d3d"
- offset="0" />
- <stop
- id="stop3864-8-7-7-29"
- stop-color="#686868"
- stop-opacity=".49804"
- offset=".5" />
- <stop
- id="stop3824-1-2-5-9"
- stop-color="#686868"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="SVGID_4_-0"
- cx="224.50391"
- cy="186.51421"
- r="127.0051"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop27-2" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop29-0" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop31-4" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop33-3" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop35-3" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop37-8" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="26.769501"
- cy="286.66409"
- cx="324.69339"
- id="SVGID_5_-8">
- <stop
- id="stop50-7"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop52-7"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop54-4"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop56-4"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop58-2"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop60-6"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="46.444901"
- cy="392.77249"
- cx="325"
- id="SVGID_6_-2">
- <stop
- id="stop73-4"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop75-0"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop77-4"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop79-5"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop81-8"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop83-6"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <clipPath
- id="clipPath-349538100-3">
- <g
- id="g17-8"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path19-2"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3914-7">
- <g
- id="g3912-7"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path3910-1"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3920-7">
- <g
- id="g3918-7"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path3916-0"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <filter
- y="0%"
- x="0%"
- height="100%"
- width="100%"
- id="alpha-9">
- <feColorMatrix
- id="feColorMatrix929-4"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- in="SourceGraphic" />
- </filter>
- <mask
- id="mask0-4">
- <g
- style="filter:url(#alpha-9)"
- id="g934-4"
- filter="url(#alpha)">
- <rect
- id="rect932-8"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- height="384"
- width="384" />
- </g>
- </mask>
- <clipPath
- id="clip1-9">
- <rect
- id="rect937-2"
- height="384"
- width="384" />
- </clipPath>
- <g
- clip-path="url(#clip1-9)"
- id="surface5-8">
- <path
- id="path940-6"
- style="fill:rgb(100%,100%,100%)"
- 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" />
- </g>
- <mask
- id="mask1-0">
- <g
- style="filter:url(#alpha-9)"
- id="g945-4"
- filter="url(#alpha)">
- <rect
- id="rect943-2"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- height="384"
- width="384" />
- </g>
- </mask>
- <clipPath
- id="clip2-41">
- <rect
- id="rect948-4"
- height="384"
- width="384" />
- </clipPath>
- <g
- clip-path="url(#clip2-41)"
- id="surface8-1">
- <path
- id="path951-3"
- style="fill:rgb(0%,0%,0%)"
- 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" />
- </g>
- <filter
- style="color-interpolation-filters:sRGB"
- id="c-2"
- height="1.1655999"
- width="1.1655999"
- x="-0.082800001"
- y="-0.082800001">
- <feGaussianBlur
- stdDeviation="2.1101835"
- id="feGaussianBlur10-8" />
- </filter>
- <filter
- style="color-interpolation-filters:sRGB"
- id="a-0"
- height="1.031026"
- width="1.031376"
- x="-0.015688"
- y="-0.015513">
- <feGaussianBlur
- stdDeviation=".7986332"
- id="feGaussianBlur2-8" />
- </filter>
- <clipPath
- id="clip1-8-4">
- <path
- d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
- id="path952-0" />
- </clipPath>
- <clipPath
- id="clip2-3-7">
- <path
- 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"
- id="path955-7" />
- </clipPath>
- <radialGradient
- r="20"
- gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
- cx="15.026"
- cy="8.6258001"
- gradientUnits="userSpaceOnUse"
- fy="8.5088997"
- fx="4.4590001"
- id="radialGradient3029-4-6">
- <stop
- style="stop-color:#354bf9;stop-opacity:1"
- offset="0"
- stop-color="#c24251"
- id="stop4170-8-9" />
- <stop
- style="stop-color:#58cdf0;stop-opacity:1"
- offset="1"
- stop-color="#a63643"
- id="stop4176-3-5" />
- </radialGradient>
- <radialGradient
- r="20.396999"
- gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
- cx="23.896"
- cy="3.99"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3032-3-8">
- <stop
- offset="0"
- stop-color="#fff"
- id="stop3244-9-33-7-0-9-4-3" />
- <stop
- offset=".26238"
- stop-color="#ddd"
- id="stop3246-3-5-0-8-5-0-8" />
- <stop
- offset=".66094"
- stop-color="#abacae"
- id="stop3248-1-7-8-8-1-8-5" />
- <stop
- offset="1"
- stop-color="#89898b"
- id="stop3250-9-3-0-5-1-4-4" />
- </radialGradient>
- <radialGradient
- r="62.769001"
- gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
- cx="99.156998"
- cy="186.17"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3035-3-1">
- <stop
- offset="0"
- stop-color="#3d3d3d"
- id="stop3822-2-6-3-0-6" />
- <stop
- offset=".5"
- stop-opacity=".49804"
- stop-color="#686868"
- id="stop3864-8-7-7-2-3" />
- <stop
- offset="1"
- stop-opacity="0"
- stop-color="#686868"
- id="stop3824-1-2-5-4-5" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="127.0051"
- cy="186.51421"
- cx="224.50391"
- id="SVGID_4_-1-5">
- <stop
- id="stop27-7-6"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop29-6-7"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop31-2-5"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop33-6-5"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop35-2-8"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop37-5-0"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="SVGID_5_-9-4"
- cx="324.69339"
- cy="286.66409"
- r="26.769501"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop50-2-9" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop52-0-5" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop54-5-6" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop56-9-8" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop58-7-7" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop60-2-7" />
- </radialGradient>
- <radialGradient
- id="SVGID_6_-7-4"
- cx="325"
- cy="392.77249"
- r="46.444901"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop73-5-7" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop75-3-4" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop77-2-1" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop79-0-8" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop81-7-2" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop83-2-2" />
- </radialGradient>
- <clipPath
- id="clipPath-349538100-0-5">
- <g
- transform="translate(0,-1004.4)"
- id="g17-3-3">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path19-8-6"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3914-3-3">
- <g
- transform="translate(0,-1004.4)"
- id="g3912-6-0">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path3910-2-2"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3920-2-4">
- <g
- transform="translate(0,-1004.4)"
- id="g3918-2-6">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path3916-9-7"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <filter
- id="alpha-3-1"
- width="100%"
- height="100%"
- x="0%"
- y="0%">
- <feColorMatrix
- in="SourceGraphic"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- id="feColorMatrix929-8-3" />
- </filter>
- <mask
- id="mask0-2-4">
- <g
- filter="url(#alpha)"
- id="g934-8-8"
- style="filter:url(#alpha-3-1)">
- <rect
- width="384"
- height="384"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- id="rect932-5-8" />
- </g>
- </mask>
- <clipPath
- id="clip1-4-1">
- <rect
- width="384"
- height="384"
- id="rect937-5-7" />
- </clipPath>
- <g
- id="surface5-6-0"
- clip-path="url(#clip1-4-1)">
- <path
- 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"
- style="fill:rgb(100%,100%,100%)"
- id="path940-7-5" />
- </g>
- <mask
- id="mask1-7-6">
- <g
- filter="url(#alpha)"
- id="g945-3-8"
- style="filter:url(#alpha-3-1)">
- <rect
- width="384"
- height="384"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- id="rect943-6-4" />
- </g>
- </mask>
- <clipPath
- id="clip2-4-6">
- <rect
- width="384"
- height="384"
- id="rect948-5-5" />
- </clipPath>
- <g
- id="surface8-5-1"
- clip-path="url(#clip2-4-6)">
- <path
- 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"
- style="fill:rgb(0%,0%,0%)"
- id="path951-0-1" />
- </g>
- <filter
- y="-0.082800001"
- x="-0.082800001"
- width="1.1655999"
- height="1.1655999"
- id="c-3-5"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur10-1-7"
- stdDeviation="2.1101835" />
- </filter>
- <filter
- y="-0.015513"
- x="-0.015688"
- width="1.031376"
- height="1.031026"
- id="a-2-4"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur2-9-3"
- stdDeviation=".7986332" />
- </filter>
- <filter
- id="Xz97CxlifTHANJtERI5kl0UUr7WfRYvq"
- width="400%"
- height="400%"
- x="-200%"
- y="-200%"
- color-interpolation-filters="sRGB"
- filterUnits="objectBoundingBox">
- <feGaussianBlur
- in="SourceGraphic"
- stdDeviation="4.294"
- id="feGaussianBlur1005" />
- <feOffset
- dx="0"
- dy="4"
- result="pf_100_offsetBlur"
- id="feOffset1007" />
- <feFlood
- flood-opacity=".4"
- id="feFlood1009" />
- <feComposite
- in2="pf_100_offsetBlur"
- operator="in"
- result="pf_100_dropShadow"
- id="feComposite1011" />
- <feBlend
- in="SourceGraphic"
- in2="pf_100_dropShadow"
- mode="normal"
- id="feBlend1013" />
- </filter>
- <filter
- id="4Gm5ayg2wEcihmTWLHNpl5NooRhnv9nx"
- width="400%"
- height="400%"
- x="-200%"
- y="-200%"
- color-interpolation-filters="sRGB"
- filterUnits="objectBoundingBox">
- <feGaussianBlur
- stdDeviation="4.294"
- id="feGaussianBlur1042" />
- </filter>
- <linearGradient
- id="linearGradient4345"
- inkscape:collect="always">
- <stop
- id="stop4347"
- offset="0"
- style="stop-color:#9bdb4d;stop-opacity:1" />
- <stop
- id="stop4349"
- offset="1"
- style="stop-color:#3a9104;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4327">
- <stop
- style="stop-color:#d1ff82;stop-opacity:1"
- offset="0"
- id="stop4329" />
- <stop
- style="stop-color:#9bdb4d;stop-opacity:1"
- offset="1"
- id="stop4331" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4315">
- <stop
- style="stop-color:#fff394;stop-opacity:1"
- offset="0"
- id="stop4317" />
- <stop
- style="stop-color:#d1ff82;stop-opacity:1"
- offset="1"
- id="stop4319" />
- </linearGradient>
- <linearGradient
- id="linearGradient3820-7-2-8-6">
- <stop
- id="stop3822-2-6-5-0"
- style="stop-color:#3d3d3d;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3864-8-7-4-1"
- style="stop-color:#686868;stop-opacity:0.49803922"
- offset="0.5" />
- <stop
- id="stop3824-1-2-6-7"
- style="stop-color:#686868;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4806">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4808" />
- <stop
- offset="0.42447853"
- style="stop-color:#ffffff;stop-opacity:0.23529412"
- id="stop4810" />
- <stop
- offset="0.82089913"
- style="stop-color:#ffffff;stop-opacity:0.15686275"
- id="stop4812" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop4814" />
- </linearGradient>
- <linearGradient
- xlink:href="#linearGradient4806"
- id="linearGradient3118"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(4.16388,0,0,4.16388,-236.03265,-50.534426)"
- x1="71.204407"
- y1="15.369057"
- x2="71.204407"
- y2="40.495617" />
- <radialGradient
- xlink:href="#linearGradient3820-7-2-8-6"
- id="radialGradient3163"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.45008973,0.25985944,-0.10079159,0.17457619,20.093182,44.077587)"
- cx="99.157013"
- cy="186.17059"
- fx="99.157013"
- fy="186.17059"
- r="62.769119" />
- <linearGradient
- id="linearGradient3242-7-3-8-0-4-58-06">
- <stop
- offset="0"
- style="stop-color:#cdf87e;stop-opacity:1"
- id="stop3244-5-8-5-6-4-3-8" />
- <stop
- offset="0.26238"
- style="stop-color:#a2e34f;stop-opacity:1"
- id="stop3246-9-5-1-5-3-0-7" />
- <stop
- offset="0.66093999"
- style="stop-color:#68b723;stop-opacity:1"
- id="stop3248-7-2-0-7-5-35-9" />
- <stop
- offset="1"
- style="stop-color:#1d7e0d;stop-opacity:1"
- id="stop3250-8-2-8-5-6-40-4" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(0,2.4235253,-2.6392787,0,226.36903,-84.88818)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3242-7-3-8-0-4-58-06"
- id="radialGradient3381"
- fy="48.76759"
- fx="66.127159"
- r="31.000002"
- cy="48.76759"
- cx="66.127159" />
- <linearGradient
- gradientTransform="matrix(2.1134672,0,0,1.645562,50.724212,61.899946)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4361"
- id="linearGradient3030"
- y2="37.130203"
- x2="24.138529"
- y1="9.1762295"
- x1="24.138529" />
- <linearGradient
- id="linearGradient4361">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4363" />
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:0.23529412"
- id="stop4365" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.15686275"
- id="stop4367" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop4369" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(1.6592445,0,0,2.0928522,60.832154,51.571789)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4351"
- id="linearGradient3030-1"
- y2="26.484531"
- x2="24.138529"
- y1="19.795095"
- x1="24.138529" />
- <linearGradient
- id="linearGradient4351">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4353" />
- <stop
- offset="0.00000015"
- style="stop-color:#ffffff;stop-opacity:0.23529412"
- id="stop4355" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.15686275"
- id="stop4357" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop4359" />
- </linearGradient>
- <radialGradient
- cx="-14.890854"
- cy="11.546391"
- r="19.99999"
- fx="-14.890854"
- fy="11.546391"
- id="radialGradient3183"
- xlink:href="#linearGradient4330"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-9.9735355e-6,17.900638,18.571439,0,-152.28499,218.151)" />
- <linearGradient
- id="linearGradient4330">
- <stop
- offset="0"
- style="stop-color:#95a3ab;stop-opacity:1"
- id="stop4332" />
- <stop
- offset="0.26238"
- style="stop-color:#667885;stop-opacity:1"
- id="stop4334" />
- <stop
- offset="0.704952"
- style="stop-color:#485a6c;stop-opacity:1"
- id="stop4336" />
- <stop
- offset="1"
- style="stop-color:#273445;stop-opacity:1"
- id="stop4338" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4272">
- <stop
- style="stop-color:#d1ff82;stop-opacity:1"
- offset="0"
- id="stop4274" />
- <stop
- style="stop-color:#68b723;stop-opacity:1"
- offset="1"
- id="stop4276" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4246">
- <stop
- style="stop-color:#9bdb4d;stop-opacity:1"
- offset="0"
- id="stop4248" />
- <stop
- style="stop-color:#206b00;stop-opacity:1"
- offset="1"
- id="stop4250" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4352">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop4354" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.37820512"
- offset="1"
- id="stop4356" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4315"
- id="radialGradient4254-3"
- cx="31.953705"
- cy="12.999992"
- fx="31.953705"
- fy="12.999992"
- r="5.5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-6.7294293,0,0,-3.2049303,225.03535,33.731874)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4327"
- id="radialGradient4252-3"
- cx="31.999998"
- cy="-4.0714331"
- fx="31.999998"
- fy="-4.0714331"
- r="5.5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.1418729,3.7095783,-3.0530017,1.7625305,-85.054065,-120.36629)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4327"
- id="radialGradient4252-0"
- cx="31.999998"
- cy="-4.0714331"
- fx="31.999998"
- fy="-4.0714331"
- r="5.5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.1418729,3.7095783,-3.0530017,1.7625305,-85.054065,-120.36629)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4327"
- id="radialGradient4681-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.4302854,4.2093776,-3.4641016,2,-154.64665,-95.784643)"
- cx="30.854206"
- cy="-20.571434"
- fx="30.854206"
- fy="-20.571434"
- r="5.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4272"
- id="radialGradient4278-1"
- cx="32"
- cy="27"
- fx="32"
- fy="27"
- r="5.5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3779312e-6,3.2049304,-5.1271858,2.2049922e-6,148.12754,-101.67648)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4345"
- id="radialGradient4262-2"
- cx="27.562176"
- cy="-10.313467"
- fx="27.562176"
- fy="-10.313467"
- r="5.5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-2.0831333,3.6078455,-3.0530015,-1.7625302,31.349364,-125.24363)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4345"
- id="radialGradient4262-28"
- cx="27.562176"
- cy="-10.313467"
- fx="27.562176"
- fy="-10.313467"
- r="5.5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-2.0831333,3.6078455,-3.0530015,-1.7625302,31.349364,-125.24363)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4246"
- id="radialGradient4260-6"
- cx="32.000004"
- cy="51"
- fx="32.000004"
- fy="51"
- r="5.5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-5.0426854e-8,6.7303541,-7.049879,-5.2835362e-8,369.2374,-214.49)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4352"
- id="linearGradient4358-3"
- x1="32"
- y1="3"
- x2="32"
- y2="13"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.7624701,0,0,1.7627118,-47.967977,-5.6694573)" />
- <radialGradient
- id="radialGradient3029-7"
- fx="4.4590001"
- fy="8.5088997"
- gradientUnits="userSpaceOnUse"
- cy="8.6258001"
- cx="15.026"
- gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
- r="20">
- <stop
- id="stop4170-85"
- stop-color="#c24251"
- offset="0" />
- <stop
- id="stop4172-3"
- stop-color="#c24251"
- offset=".26238" />
- <stop
- id="stop4174-9"
- stop-color="#a63643"
- offset=".66094" />
- <stop
- id="stop4176-8"
- stop-color="#a63643"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3032-8"
- gradientUnits="userSpaceOnUse"
- cy="3.99"
- cx="23.896"
- gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
- r="20.396999">
- <stop
- id="stop3244-9-33-7-0-9-8"
- stop-color="#fff"
- offset="0" />
- <stop
- id="stop3246-3-5-0-8-5-3"
- stop-color="#ddd"
- offset=".26238" />
- <stop
- id="stop3248-1-7-8-8-1-3"
- stop-color="#abacae"
- offset=".66094" />
- <stop
- id="stop3250-9-3-0-5-1-0"
- stop-color="#89898b"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3035-2"
- gradientUnits="userSpaceOnUse"
- cy="186.17"
- cx="99.156998"
- gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
- r="62.769001">
- <stop
- id="stop3822-2-6-3-3"
- stop-color="#3d3d3d"
- offset="0" />
- <stop
- id="stop3864-8-7-7-7"
- stop-color="#686868"
- stop-opacity=".49804"
- offset=".5" />
- <stop
- id="stop3824-1-2-5-98"
- stop-color="#686868"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="SVGID_4_-7"
- cx="224.50391"
- cy="186.51421"
- r="127.0051"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop27-0" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop29-60" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop31-23" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop33-7" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop35-0" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop37-2" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="26.769501"
- cy="286.66409"
- cx="324.69339"
- id="SVGID_5_-1">
- <stop
- id="stop50-9"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop52-09"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop54-7"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop56-5"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop58-8"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop60-5"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="46.444901"
- cy="392.77249"
- cx="325"
- id="SVGID_6_-3">
- <stop
- id="stop73-8"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop75-8"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop77-8"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop79-1"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop81-2"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop83-1"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <clipPath
- id="clipPath-349538100-8">
- <g
- id="g17-1"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path19-1"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3914-32">
- <g
- id="g3912-8"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path3910-29"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3920-9">
- <g
- id="g3918-8"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path3916-2"
- 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"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <filter
- y="0%"
- x="0%"
- height="100%"
- width="100%"
- id="alpha-31">
- <feColorMatrix
- id="feColorMatrix929-3"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- in="SourceGraphic" />
- </filter>
- <mask
- id="mask0-8">
- <g
- style="filter:url(#alpha-31)"
- id="g934-2"
- filter="url(#alpha)">
- <rect
- id="rect932-58"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- height="384"
- width="384" />
- </g>
- </mask>
- <clipPath
- id="clip1-1">
- <rect
- id="rect937-25"
- height="384"
- width="384" />
- </clipPath>
- <g
- clip-path="url(#clip1-1)"
- id="surface5-1">
- <path
- id="path940-78"
- style="fill:rgb(100%,100%,100%)"
- 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" />
- </g>
- <mask
- id="mask1-1">
- <g
- style="filter:url(#alpha-31)"
- id="g945-8"
- filter="url(#alpha)">
- <rect
- id="rect943-62"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- height="384"
- width="384" />
- </g>
- </mask>
- <clipPath
- id="clip2-0">
- <rect
- id="rect948-9"
- height="384"
- width="384" />
- </clipPath>
- <g
- clip-path="url(#clip2-0)"
- id="surface8-3">
- <path
- id="path951-4"
- style="fill:rgb(0%,0%,0%)"
- 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" />
- </g>
- <filter
- style="color-interpolation-filters:sRGB"
- id="c-4"
- height="1.1655999"
- width="1.1655999"
- x="-0.082800001"
- y="-0.082800001">
- <feGaussianBlur
- stdDeviation="2.1101835"
- id="feGaussianBlur10-2" />
- </filter>
- <filter
- style="color-interpolation-filters:sRGB"
- id="a-3"
- height="1.031026"
- width="1.031376"
- x="-0.015688"
- y="-0.015513">
- <feGaussianBlur
- stdDeviation=".7986332"
- id="feGaussianBlur2-4" />
- </filter>
- <clipPath
- id="clip1-8-5">
- <path
- d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
- id="path952-5" />
- </clipPath>
- <clipPath
- id="clip2-3-9">
- <path
- 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"
- id="path955-6" />
- </clipPath>
- <radialGradient
- r="20"
- gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
- cx="15.026"
- cy="8.6258001"
- gradientUnits="userSpaceOnUse"
- fy="8.5088997"
- fx="4.4590001"
- id="radialGradient3029-4-7">
- <stop
- style="stop-color:#354bf9;stop-opacity:1"
- offset="0"
- stop-color="#c24251"
- id="stop4170-8-8" />
- <stop
- style="stop-color:#58cdf0;stop-opacity:1"
- offset="1"
- stop-color="#a63643"
- id="stop4176-3-2" />
- </radialGradient>
- <radialGradient
- r="20.396999"
- gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
- cx="23.896"
- cy="3.99"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3032-3-5">
- <stop
- offset="0"
- stop-color="#fff"
- id="stop3244-9-33-7-0-9-4-2" />
- <stop
- offset=".26238"
- stop-color="#ddd"
- id="stop3246-3-5-0-8-5-0-5" />
- <stop
- offset=".66094"
- stop-color="#abacae"
- id="stop3248-1-7-8-8-1-8-6" />
- <stop
- offset="1"
- stop-color="#89898b"
- id="stop3250-9-3-0-5-1-4-5" />
- </radialGradient>
- <radialGradient
- r="62.769001"
- gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
- cx="99.156998"
- cy="186.17"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3035-3-9">
- <stop
- offset="0"
- stop-color="#3d3d3d"
- id="stop3822-2-6-3-0-8" />
- <stop
- offset=".5"
- stop-opacity=".49804"
- stop-color="#686868"
- id="stop3864-8-7-7-2-35" />
- <stop
- offset="1"
- stop-opacity="0"
- stop-color="#686868"
- id="stop3824-1-2-5-4-9" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="127.0051"
- cy="186.51421"
- cx="224.50391"
- id="SVGID_4_-1-6">
- <stop
- id="stop27-7-2"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop29-6-0"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop31-2-7"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop33-6-2"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop35-2-5"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop37-5-3"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="SVGID_5_-9-45"
- cx="324.69339"
- cy="286.66409"
- r="26.769501"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop50-2-8" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop52-0-9" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop54-5-0" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop56-9-2" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop58-7-4" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop60-2-72" />
- </radialGradient>
- <radialGradient
- id="SVGID_6_-7-3"
- cx="325"
- cy="392.77249"
- r="46.444901"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop73-5-1" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop75-3-1" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop77-2-3" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop79-0-6" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop81-7-9" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop83-2-5" />
- </radialGradient>
- <clipPath
- id="clipPath-349538100-0-1">
- <g
- transform="translate(0,-1004.4)"
- id="g17-3-5">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path19-8-3"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3914-3-2">
- <g
- transform="translate(0,-1004.4)"
- id="g3912-6-4">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path3910-2-6"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3920-2-7">
- <g
- transform="translate(0,-1004.4)"
- id="g3918-2-5">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- 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"
- id="path3916-9-2"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <filter
- id="alpha-3-17"
- width="100%"
- height="100%"
- x="0%"
- y="0%">
- <feColorMatrix
- in="SourceGraphic"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- id="feColorMatrix929-8-1" />
- </filter>
- <mask
- id="mask0-2-3">
- <g
- filter="url(#alpha)"
- id="g934-8-2"
- style="filter:url(#alpha-3-17)">
- <rect
- width="384"
- height="384"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- id="rect932-5-5" />
- </g>
- </mask>
- <clipPath
- id="clip1-4-0">
- <rect
- width="384"
- height="384"
- id="rect937-5-9" />
- </clipPath>
- <g
- id="surface5-6-5"
- clip-path="url(#clip1-4-0)">
- <path
- 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"
- style="fill:rgb(100%,100%,100%)"
- id="path940-7-9" />
- </g>
- <mask
- id="mask1-7-9">
- <g
- filter="url(#alpha)"
- id="g945-3-9"
- style="filter:url(#alpha-3-17)">
- <rect
- width="384"
- height="384"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- id="rect943-6-5" />
- </g>
- </mask>
- <clipPath
- id="clip2-4-61">
- <rect
- width="384"
- height="384"
- id="rect948-5-8" />
- </clipPath>
- <g
- id="surface8-5-0"
- clip-path="url(#clip2-4-61)">
- <path
- 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"
- style="fill:rgb(0%,0%,0%)"
- id="path951-0-5" />
- </g>
- <filter
- y="-0.082800001"
- x="-0.082800001"
- width="1.1655999"
- height="1.1655999"
- id="c-3-3"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur10-1-6"
- stdDeviation="2.1101835" />
- </filter>
- <filter
- y="-0.015513"
- x="-0.015688"
- width="1.031376"
- height="1.031026"
- id="a-2-6"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur2-9-9"
- stdDeviation=".7986332" />
- </filter>
- <filter
- id="Xz97CxlifTHANJtERI5kl0UUr7WfRYvq-1"
- width="400%"
- height="400%"
- x="-200%"
- y="-200%"
- color-interpolation-filters="sRGB"
- filterUnits="objectBoundingBox">
- <feGaussianBlur
- in="SourceGraphic"
- stdDeviation="4.294"
- id="feGaussianBlur1005-4" />
- <feOffset
- dx="0"
- dy="4"
- result="pf_100_offsetBlur"
- id="feOffset1007-1" />
- <feFlood
- flood-opacity=".4"
- id="feFlood1009-7" />
- <feComposite
- in2="pf_100_offsetBlur"
- operator="in"
- result="pf_100_dropShadow"
- id="feComposite1011-2" />
- <feBlend
- in="SourceGraphic"
- in2="pf_100_dropShadow"
- mode="normal"
- id="feBlend1013-0" />
- </filter>
- <filter
- id="4Gm5ayg2wEcihmTWLHNpl5NooRhnv9nx-2"
- width="400%"
- height="400%"
- x="-200%"
- y="-200%"
- color-interpolation-filters="sRGB"
- filterUnits="objectBoundingBox">
- <feGaussianBlur
- stdDeviation="4.294"
- id="feGaussianBlur1042-5" />
- </filter>
- <clipPath
- id="clipPath849">
- <rect
- width="384"
- height="384"
- id="rect847" />
- </clipPath>
- <clipPath
- id="clipPath853">
- <rect
- width="384"
- height="384"
- id="rect851" />
- </clipPath>
- <clipPath
- id="clipPath857">
- <rect
- width="384"
- height="384"
- id="rect855" />
- </clipPath>
- <filter
- filterUnits="objectBoundingBox"
- color-interpolation-filters="sRGB"
- y="-200%"
- x="-200%"
- height="400%"
- width="400%"
- id="xPHBR2KRsqNJJmxgfSMnWsjFL63MuKr0-5">
- <feGaussianBlur
- id="feGaussianBlur823-5"
- stdDeviation="4.294"
- in="SourceGraphic" />
- <feOffset
- id="feOffset825-5"
- result="pf_100_offsetBlur"
- dy="4"
- dx="0" />
- <feFlood
- id="feFlood827-1"
- flood-opacity=".4" />
- <feComposite
- id="feComposite829-3"
- result="pf_100_dropShadow"
- operator="in"
- in2="pf_100_offsetBlur" />
- <feBlend
- id="feBlend831-9"
- mode="normal"
- in2="pf_100_dropShadow"
- in="SourceGraphic" />
- </filter>
- <filter
- filterUnits="objectBoundingBox"
- color-interpolation-filters="sRGB"
- y="-200%"
- x="-200%"
- height="400%"
- width="400%"
- id="2JmMAOqgjSUXbdZfecnmpMzAW6swRgvN-1">
- <feGaussianBlur
- id="feGaussianBlur858-5"
- stdDeviation="4.294" />
- </filter>
- <linearGradient
- id="linearGradient1225">
- <stop
- id="stop1221"
- offset="0"
- style="stop-color:#f37329;stop-opacity:1" />
- <stop
- id="stop1223"
- offset="1"
- style="stop-color:#e95420;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- xlink:href="#linearGradient4806"
- id="linearGradient3118-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(4.16388,0,0,4.16388,-236.03265,-50.036246)"
- x1="71.204407"
- y1="15.369057"
- x2="71.204407"
- y2="40.495617" />
- <radialGradient
- xlink:href="#linearGradient3820-7-2-8-6"
- id="radialGradient3163-3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.6869404,0,0,0.21461693,-4.02174,68.573331)"
- cx="99.157013"
- cy="186.17059"
- fx="99.157013"
- fy="186.17059"
- r="62.769119" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="118.04783"
- x2="64.5"
- y1="13.998179"
- x1="64.5"
- id="linearGradient1227"
- xlink:href="#linearGradient1225" />
- </defs>
- <sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="1920"
- inkscape:window-height="1030"
- id="namedview12"
- showgrid="false"
- inkscape:zoom="3.4766084"
- inkscape:cx="-57.568505"
- inkscape:cy="15.480172"
- inkscape:window-x="0"
- inkscape:window-y="26"
- inkscape:window-maximized="1"
- inkscape:current-layer="svg10" />
- <g
- fill="#c185b1"
- opacity=".99"
- transform="matrix(1.1503549 0 0 1.1503549 -4.486125 -7.525565)"
- id="g6"
- style="fill:#83a2d1;fill-opacity:1">
- <path
- 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"
- id="path2"
- style="fill:#83a2d1;fill-opacity:1" />
- <path
- 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"
- id="path4"
- style="fill:#83a2d1;fill-opacity:1" />
- </g>
- <path
- inkscape:connector-curvature="0"
- d=""
- 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"
- id="path864"
- r="28.431282"
- cy="97.610519"
- cx="103.31834" />
- <g
- id="g4866"
- transform="matrix(3.6852994,-0.56691334,0.56691334,3.6852994,312.53184,-937.29284)"
- style="opacity:0.38900003">
- <rect
- 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"
- id="rect4848"
- width="25.830492"
- height="29.56739"
- x="-61.94516"
- y="253.76543"
- rx="1.4423118"
- ry="1.4423118"
- transform="rotate(-0.01865124)" />
- <rect
- transform="rotate(-0.01865124)"
- ry="1.4423118"
- rx="1.4423118"
- y="253.76543"
- x="-61.94516"
- height="29.56739"
- width="25.830492"
- id="rect4850"
- 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" />
- <rect
- 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"
- id="rect4852"
- width="25.830492"
- height="29.56739"
- x="-61.94516"
- y="253.76543"
- rx="1.4423118"
- ry="1.4423118"
- transform="rotate(-0.01865124)" />
- <rect
- transform="rotate(-0.01865124)"
- ry="1.4423118"
- rx="1.4423118"
- y="253.76543"
- x="-61.94516"
- height="29.56739"
- width="25.830492"
- id="rect4854"
- 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" />
- <rect
- 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"
- id="rect4856"
- width="25.830492"
- height="29.56739"
- x="-61.94516"
- y="253.76543"
- rx="1.4423118"
- ry="1.4423118"
- transform="rotate(-0.01865124)" />
- <rect
- transform="rotate(-0.01865124)"
- ry="1.4423118"
- rx="1.4423118"
- y="253.76543"
- x="-61.94516"
- height="29.56739"
- width="25.830492"
- id="rect4858"
- 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" />
- </g>
- <rect
- 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"
- id="rect4587"
- width="96.312836"
- height="110.24642"
- x="220.72105"
- y="67.471504"
- rx="5.3778739"
- ry="5.3778739"
- transform="rotate(-8.7639662)" />
- <path
- inkscape:connector-curvature="0"
- d=""
- 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"
- id="path864-2"
- r="28.431282"
- cy="97.610519"
- cx="103.31834" />
- <path
- inkscape:connector-curvature="0"
- style="opacity:0.2;fill:#ffffff"
- 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"
- id="path1040" />
- <path
- inkscape:connector-curvature="0"
- id="path851-3"
- d="m 30.06098,7.2715132 c -0.497868,0.5740046 -0.742456,1.2813716 -0.742456,1.9860716 0,0.522416 0.134711,1.0428692 0.399133,1.5058212 -0.795629,-0.590754 -1.665525,-1.0973402 -2.60018,-1.5027392 -0.187616,-0.08144 -0.40592,0.0046 -0.487302,0.192413 -0.08144,0.187671 0.0046,0.40597 0.19241,0.48741 1.777272,0.7708862 3.307091,1.9286162 4.512727,3.3457152 -0.513749,-0.354576 -1.116664,-0.536173 -1.722445,-0.536173 -0.702621,0 -1.4079,0.243217 -1.981232,0.738379 1.067601,1.234413 2.913008,1.397018 4.178539,0.391095 1.09301,1.455242 1.864496,3.142938 2.241559,4.943998 -0.499391,-0.09907 -1.104492,-0.343348 -1.659155,-0.905032 0,0 -0.494833,-0.417542 -1.237126,-0.56193 l -7.24e-4,3.15e-4 c -0.14646,-0.02869 -0.302438,-0.04652 -0.465947,-0.04843 -0.09811,-0.0011 -0.19891,0.0033 -0.302044,0.01487 -0.962767,0.107193 -2.129661,0.811778 -3.167946,3.041139 -0.0025,0.0045 -0.0046,0.0093 -0.007,0.01422 0,0 -2.356924,-2.081317 -4.848121,-2.096702 -1.615282,-0.0097 -3.97599,0.818209 -6.425825,0.784169 -1.329715,-0.01899 -2.685527,-0.292512 -3.963672,-1.091277 0,0 -0.125743,0.80948 -0.05141,1.995651 0.01881,0.315041 0.05312,0.656429 0.106994,1.015658 0.07896,0.529033 0.201551,1.097825 0.386802,1.680288 0.0225,0.07 0.04595,0.140354 0.06979,0.210464 0.10618,0.30946 0.229781,0.621097 0.375352,0.933208 l 3.61e-4,3.62e-4 c 0.235432,0.505125 0.525654,1.008901 0.883237,1.494593 0.729108,0.0018 1.790631,-0.06196 2.434298,-0.341782 0.04046,-0.01758 0.07938,-0.03589 0.116461,-0.05526 0.06969,-0.03649 0.144329,-0.05306 0.217507,-0.05185 0.160996,0.0025 0.314998,0.09151 0.394507,0.244255 0.116323,0.221881 0.03031,0.496092 -0.19186,0.611793 -0.05354,0.02858 -0.10937,0.05477 -0.167644,0.08014 -0.590917,0.256879 -1.376016,0.361464 -2.048709,0.399903 5.8e-5,5.4e-5 5.8e-5,1.56e-4 1.12e-4,1.56e-4 0.476927,0.488593 1.039562,0.945193 1.703292,1.350613 0.656519,-0.216805 1.46444,-0.52387 1.842209,-0.806843 0.07672,-0.05763 0.165723,-0.08726 0.254821,-0.09059 0.01273,-3.62e-4 0.0255,-3.62e-4 0.0382,1.59e-4 0.130573,0.0061 0.25747,0.06834 0.342111,0.181072 0.150476,0.200408 0.109823,0.484488 -0.0907,0.635018 -0.235746,0.177024 -0.567671,0.348441 -0.923854,0.503374 -0.122639,0.05331 -0.248096,0.104519 -0.373152,0.153662 -0.390346,-0.177223 -0.753153,-0.369784 -1.089519,-0.575799 0.336402,0.206044 0.699126,0.398663 1.089519,0.575908 0.496852,0.224645 1.038853,0.424321 1.629542,0.591763 0.427194,0.122354 0.879551,0.227861 1.358539,0.314481 0.25891,0.04774 0.525727,0.08941 0.800133,0.125815 0,0 -0.0056,0.007 -0.01606,0.0208 -0.01508,0.01838 -0.03964,0.04955 -0.07441,0.09103 -0.02402,0.02959 -0.05387,0.06434 -0.0874,0.104021 -0.498429,0.580205 -2.009658,2.178684 -4.065601,2.874594 -0.458981,0.155269 -0.661852,0.690071 -0.42357,1.112306 0.576096,1.021547 1.872502,2.580194 4.478167,2.770794 0.373257,0.02699 0.714847,-0.213126 0.807726,-0.576128 0.211231,-0.826718 0.788955,-2.364387 2.313214,-3.604943 0.106238,-0.08645 0.222753,-0.156915 0.346517,-0.210681 0.1959,-0.08516 0.409841,-0.128709 0.626766,-0.127356 2.185626,0.01364 4.150728,-0.842646 5.593326,-2.227137 1.76756,-1.696046 2.751601,-4.185441 2.398854,-6.840473 -0.158314,-1.193446 0.30886,-2.352833 1.184294,-3.105646 0.141291,0.895735 0.186094,1.815389 0.124825,2.745151 -0.01346,0.204184 0.141226,0.380705 0.345414,0.394177 0.0083,3.62e-4 0.01653,7.23e-4 0.02478,7.23e-4 0.19348,0 0.356451,-0.150229 0.369412,-0.346072 0.07267,-1.102991 0.0046,-2.192629 -0.19043,-3.248192 0.06824,-0.0352 0.137622,-0.06889 0.208811,-0.09984 0.02496,-0.01082 0.05021,-0.02116 0.0754,-0.03147 0,0 -0.11459,0.02384 -0.302377,0.03346 -0.173121,-0.898901 -0.438607,-1.772563 -0.788792,-2.607665 1.388369,-0.691349 2.044881,-2.340986 1.470377,-3.813863 -1.198513,0.467547 -1.930927,1.612902 -1.930927,2.825502 0,0.0022 1.05e-4,0.0043 1.08e-4,0.0064 -0.766502,-1.476365 -1.808361,-2.804883 -3.076312,-3.904488 0.953423,-1.261265 0.779213,-3.0627382 -0.432374,-4.1149148 z M 14.499961,26.192446 c -0.209976,-0.214411 -0.403218,-0.435434 -0.581306,-0.660556 0.178081,0.225129 0.371337,0.446138 0.581306,0.660556 z M 30.740579,19.21669 a 0.4537396,0.4537396 0 0 1 0.453728,0.453728 0.4537396,0.4537396 0 0 1 -0.453728,0.453728 0.4537396,0.4537396 0 0 1 -0.453836,-0.453728 0.4537396,0.4537396 0 0 1 0.453836,-0.453728 z m -18.817683,0.753461 c 0.191107,0.07856 0.432707,0.170053 0.714272,0.262089 0.734744,0.239353 1.744284,0.479274 2.85082,0.485757 0.249837,0.0014 0.452173,0.205906 0.450426,0.456698 -0.0015,0.18525 -0.112988,0.343952 -0.272765,0.413444 -0.05658,0.02456 -0.118284,0.03759 -0.183604,0.03764 -1.398527,-0.0089 -2.634684,-0.345559 -3.452159,-0.639973 -0.05388,-0.359226 -0.08817,-0.700617 -0.10699,-1.015658 z m 3.815403,2.7457 v 1.09e-4 c 0.193552,-0.0029 0.374288,0.119456 0.437435,0.312835 0.07332,0.224756 -0.03734,0.464934 -0.249869,0.557306 -0.01273,0.0055 -0.02626,0.01074 -0.04029,0.01487 -0.79262,0.258852 -2.038895,0.261605 -3.023525,0.209361 l -3.18e-4,-7.23e-4 c -0.145575,-0.312112 -0.269176,-0.623749 -0.375356,-0.933213 1.016815,0.07315 2.382463,0.102165 3.117203,-0.138031 0.04474,-0.01461 0.09006,-0.02192 0.134732,-0.02257 z m 5.086986,4.943337 c 0.116135,7.23e-4 0.231876,0.04596 0.319766,0.135061 0.176232,0.178038 0.174416,0.465055 -0.0041,0.641627 -0.182823,0.180399 -0.515048,0.393432 -0.859901,0.589556 -0.478989,-0.08662 -0.931345,-0.192127 -1.358539,-0.314481 0.557213,-0.270629 1.350552,-0.693312 1.580887,-0.920775 0.08928,-0.08828 0.205729,-0.131795 0.32186,-0.130988 z"
- style="fill:#ffffff;stroke-width:0.05635817" />
- </svg>
|