org.gustavoperedo.FontDownloader.svg 163 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg
  3. xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:cc="http://creativecommons.org/ns#"
  6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7. xmlns:svg="http://www.w3.org/2000/svg"
  8. xmlns="http://www.w3.org/2000/svg"
  9. xmlns:xlink="http://www.w3.org/1999/xlink"
  10. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  11. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  12. width="297mm"
  13. height="297mm"
  14. viewBox="0 0 297 297"
  15. version="1.1"
  16. id="svg8"
  17. inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
  18. sodipodi:docname="org.gustavoperedo.FontDownloader.svg">
  19. <defs
  20. id="defs2">
  21. <rect
  22. x="89.050053"
  23. y="59.998969"
  24. width="179.62511"
  25. height="147.4131"
  26. id="rect15164" />
  27. <inkscape:path-effect
  28. effect="bspline"
  29. id="path-effect14700"
  30. is_visible="true"
  31. lpeversion="1"
  32. weight="33.333333"
  33. steps="2"
  34. helper_size="0"
  35. apply_no_weight="true"
  36. apply_with_weight="true"
  37. only_selected="false" />
  38. <inkscape:path-effect
  39. effect="fillet_chamfer"
  40. id="path-effect14634"
  41. is_visible="true"
  42. lpeversion="1"
  43. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.3018492,0,1"
  44. unit="px"
  45. method="auto"
  46. mode="F"
  47. radius="0"
  48. chamfer_steps="1"
  49. flexible="false"
  50. use_knot_distance="true"
  51. apply_no_radius="true"
  52. apply_with_radius="true"
  53. only_selected="true"
  54. hide_knots="false" />
  55. <inkscape:path-effect
  56. effect="fillet_chamfer"
  57. id="path-effect14632"
  58. is_visible="true"
  59. lpeversion="1"
  60. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.8869926,0,1"
  61. unit="px"
  62. method="auto"
  63. mode="F"
  64. radius="0"
  65. chamfer_steps="1"
  66. flexible="false"
  67. use_knot_distance="true"
  68. apply_no_radius="true"
  69. apply_with_radius="true"
  70. only_selected="false"
  71. hide_knots="false" />
  72. <marker
  73. style="overflow:visible;"
  74. id="Arrow1Mend"
  75. refX="0.0"
  76. refY="0.0"
  77. orient="auto"
  78. inkscape:stockid="Arrow1Mend"
  79. inkscape:isstock="true">
  80. <path
  81. transform="scale(0.4) rotate(180) translate(10,0)"
  82. style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
  83. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  84. id="path4942" />
  85. </marker>
  86. <marker
  87. style="overflow:visible;"
  88. id="Arrow1Lend"
  89. refX="0.0"
  90. refY="0.0"
  91. orient="auto"
  92. inkscape:stockid="Arrow1Lend"
  93. inkscape:isstock="true">
  94. <path
  95. transform="scale(0.8) rotate(180) translate(12.5,0)"
  96. style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
  97. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  98. id="path4936" />
  99. </marker>
  100. <inkscape:path-effect
  101. effect="fillet_chamfer"
  102. id="path-effect14248"
  103. is_visible="true"
  104. lpeversion="1"
  105. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,18.84434,0,1"
  106. unit="px"
  107. method="auto"
  108. mode="F"
  109. radius="0"
  110. chamfer_steps="1"
  111. flexible="false"
  112. use_knot_distance="true"
  113. apply_no_radius="true"
  114. apply_with_radius="true"
  115. only_selected="true"
  116. hide_knots="false" />
  117. <rect
  118. x="31.145919"
  119. y="31.488489"
  120. width="99.343591"
  121. height="98.451146"
  122. id="rect14200" />
  123. <inkscape:path-effect
  124. effect="fillet_chamfer"
  125. id="path-effect14182"
  126. is_visible="true"
  127. lpeversion="1"
  128. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.7934735,0,1"
  129. unit="px"
  130. method="auto"
  131. mode="F"
  132. radius="0"
  133. chamfer_steps="1"
  134. flexible="false"
  135. use_knot_distance="true"
  136. apply_no_radius="true"
  137. apply_with_radius="true"
  138. only_selected="true"
  139. hide_knots="false" />
  140. <inkscape:path-effect
  141. effect="fillet_chamfer"
  142. id="path-effect14180"
  143. is_visible="true"
  144. lpeversion="1"
  145. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.7934735,0,1"
  146. unit="px"
  147. method="auto"
  148. mode="F"
  149. radius="0"
  150. chamfer_steps="1"
  151. flexible="false"
  152. use_knot_distance="true"
  153. apply_no_radius="true"
  154. apply_with_radius="true"
  155. only_selected="true"
  156. hide_knots="false" />
  157. <inkscape:path-effect
  158. effect="fillet_chamfer"
  159. id="path-effect14166"
  160. is_visible="true"
  161. lpeversion="1"
  162. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.7934735,0,1"
  163. unit="px"
  164. method="auto"
  165. mode="F"
  166. radius="0"
  167. chamfer_steps="1"
  168. flexible="false"
  169. use_knot_distance="true"
  170. apply_no_radius="true"
  171. apply_with_radius="true"
  172. only_selected="true"
  173. hide_knots="false" />
  174. <inkscape:path-effect
  175. effect="fillet_chamfer"
  176. id="path-effect14162"
  177. is_visible="true"
  178. lpeversion="1"
  179. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.7934735,0,1"
  180. unit="px"
  181. method="auto"
  182. mode="F"
  183. radius="0"
  184. chamfer_steps="1"
  185. flexible="false"
  186. use_knot_distance="true"
  187. apply_no_radius="true"
  188. apply_with_radius="true"
  189. only_selected="true"
  190. hide_knots="false" />
  191. <inkscape:path-effect
  192. effect="fillet_chamfer"
  193. id="path-effect14023"
  194. is_visible="true"
  195. lpeversion="1"
  196. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.524429,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  197. unit="px"
  198. method="auto"
  199. mode="F"
  200. radius="0"
  201. chamfer_steps="1"
  202. flexible="false"
  203. use_knot_distance="true"
  204. apply_no_radius="true"
  205. apply_with_radius="true"
  206. only_selected="true"
  207. hide_knots="false" />
  208. <inkscape:path-effect
  209. effect="fillet_chamfer"
  210. id="path-effect14021"
  211. is_visible="true"
  212. lpeversion="1"
  213. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,1,1,0,3.5128133,0,1"
  214. unit="px"
  215. method="auto"
  216. mode="F"
  217. radius="0"
  218. chamfer_steps="1"
  219. flexible="false"
  220. use_knot_distance="true"
  221. apply_no_radius="true"
  222. apply_with_radius="true"
  223. only_selected="true"
  224. hide_knots="false" />
  225. <inkscape:path-effect
  226. effect="fillet_chamfer"
  227. id="path-effect14017"
  228. is_visible="true"
  229. lpeversion="1"
  230. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.9277031,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  231. unit="px"
  232. method="auto"
  233. mode="F"
  234. radius="0"
  235. chamfer_steps="1"
  236. flexible="false"
  237. use_knot_distance="true"
  238. apply_no_radius="true"
  239. apply_with_radius="true"
  240. only_selected="true"
  241. hide_knots="false" />
  242. <inkscape:path-effect
  243. effect="fillet_chamfer"
  244. id="path-effect13803"
  245. is_visible="true"
  246. lpeversion="1"
  247. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.9301228,0,1 @ F,0,0,1,0,3.152028,0,1"
  248. unit="px"
  249. method="auto"
  250. mode="F"
  251. radius="0"
  252. chamfer_steps="1"
  253. flexible="false"
  254. use_knot_distance="true"
  255. apply_no_radius="true"
  256. apply_with_radius="true"
  257. only_selected="true"
  258. hide_knots="false" />
  259. <inkscape:path-effect
  260. effect="bspline"
  261. id="path-effect12911"
  262. is_visible="true"
  263. lpeversion="1"
  264. weight="33.333333"
  265. steps="2"
  266. helper_size="0"
  267. apply_no_weight="true"
  268. apply_with_weight="true"
  269. only_selected="false" />
  270. <inkscape:path-effect
  271. effect="bspline"
  272. id="path-effect12907"
  273. is_visible="true"
  274. lpeversion="1"
  275. weight="33.333333"
  276. steps="2"
  277. helper_size="0"
  278. apply_no_weight="true"
  279. apply_with_weight="true"
  280. only_selected="false" />
  281. <inkscape:path-effect
  282. effect="fillet_chamfer"
  283. id="path-effect12903"
  284. is_visible="true"
  285. lpeversion="1"
  286. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.92512162,0,1 @ F,0,0,1,0,0,0,1"
  287. unit="px"
  288. method="auto"
  289. mode="F"
  290. radius="0"
  291. chamfer_steps="1"
  292. flexible="false"
  293. use_knot_distance="true"
  294. apply_no_radius="true"
  295. apply_with_radius="true"
  296. only_selected="true"
  297. hide_knots="false" />
  298. <inkscape:path-effect
  299. effect="fillet_chamfer"
  300. id="path-effect12899"
  301. is_visible="true"
  302. lpeversion="1"
  303. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.92512162,0,1 @ F,0,0,1,0,0,0,1"
  304. unit="px"
  305. method="auto"
  306. mode="F"
  307. radius="0"
  308. chamfer_steps="1"
  309. flexible="false"
  310. use_knot_distance="true"
  311. apply_no_radius="true"
  312. apply_with_radius="true"
  313. only_selected="true"
  314. hide_knots="false" />
  315. <inkscape:path-effect
  316. effect="bspline"
  317. id="path-effect12895"
  318. is_visible="true"
  319. lpeversion="1"
  320. weight="33.333333"
  321. steps="2"
  322. helper_size="0"
  323. apply_no_weight="true"
  324. apply_with_weight="true"
  325. only_selected="false" />
  326. <inkscape:path-effect
  327. effect="bspline"
  328. id="path-effect12891"
  329. is_visible="true"
  330. lpeversion="1"
  331. weight="33.333333"
  332. steps="2"
  333. helper_size="0"
  334. apply_no_weight="true"
  335. apply_with_weight="true"
  336. only_selected="false" />
  337. <inkscape:path-effect
  338. effect="bspline"
  339. id="path-effect12881"
  340. is_visible="true"
  341. lpeversion="1"
  342. weight="33.333333"
  343. steps="2"
  344. helper_size="0"
  345. apply_no_weight="true"
  346. apply_with_weight="true"
  347. only_selected="false" />
  348. <rect
  349. x="182.05107"
  350. y="33.999077"
  351. width="32.805588"
  352. height="11.38055"
  353. id="rect12823" />
  354. <inkscape:path-effect
  355. effect="spiro"
  356. id="path-effect12219"
  357. is_visible="true"
  358. lpeversion="1" />
  359. <inkscape:path-effect
  360. effect="fillet_chamfer"
  361. id="path-effect11434"
  362. is_visible="true"
  363. lpeversion="1"
  364. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  365. unit="px"
  366. method="auto"
  367. mode="F"
  368. radius="0"
  369. chamfer_steps="1"
  370. flexible="false"
  371. use_knot_distance="true"
  372. apply_no_radius="true"
  373. apply_with_radius="true"
  374. only_selected="true"
  375. hide_knots="false" />
  376. <inkscape:path-effect
  377. effect="fillet_chamfer"
  378. id="path-effect11429"
  379. is_visible="true"
  380. lpeversion="1"
  381. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.97823958,0,1 @ F,0,1,1,0,0,0,1"
  382. unit="px"
  383. method="auto"
  384. mode="F"
  385. radius="0"
  386. chamfer_steps="1"
  387. flexible="false"
  388. use_knot_distance="true"
  389. apply_no_radius="true"
  390. apply_with_radius="true"
  391. only_selected="true"
  392. hide_knots="false" />
  393. <rect
  394. x="181.13075"
  395. y="8.9807703"
  396. width="14.450331"
  397. height="33.047544"
  398. id="rect9683" />
  399. <rect
  400. x="181.23167"
  401. y="8.8861564"
  402. width="15.7688"
  403. height="33.939917"
  404. id="rect9674" />
  405. <rect
  406. x="182.08682"
  407. y="10.43185"
  408. width="16.040422"
  409. height="31.963596"
  410. id="rect9665" />
  411. <inkscape:path-effect
  412. effect="spiro"
  413. id="path-effect9416"
  414. is_visible="true"
  415. lpeversion="1" />
  416. <inkscape:path-effect
  417. effect="spiro"
  418. id="path-effect9412"
  419. is_visible="true"
  420. lpeversion="1" />
  421. <inkscape:path-effect
  422. effect="spiro"
  423. id="path-effect9372"
  424. is_visible="true"
  425. lpeversion="1" />
  426. <inkscape:path-effect
  427. effect="fillet_chamfer"
  428. id="path-effect9166"
  429. is_visible="true"
  430. lpeversion="1"
  431. satellites_param="F,0,0,1,0,3.7594929,0,1 @ F,0,0,1,0,3.7594929,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  432. unit="px"
  433. method="auto"
  434. mode="F"
  435. radius="0"
  436. chamfer_steps="1"
  437. flexible="false"
  438. use_knot_distance="true"
  439. apply_no_radius="true"
  440. apply_with_radius="true"
  441. only_selected="true"
  442. hide_knots="false" />
  443. <inkscape:path-effect
  444. effect="fillet_chamfer"
  445. id="path-effect9162"
  446. is_visible="true"
  447. lpeversion="1"
  448. satellites_param="F,0,1,1,0,3.6424142,0,1 @ F,0,0,1,0,3.6633026,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  449. unit="px"
  450. method="auto"
  451. mode="F"
  452. radius="0"
  453. chamfer_steps="1"
  454. flexible="false"
  455. use_knot_distance="true"
  456. apply_no_radius="true"
  457. apply_with_radius="true"
  458. only_selected="true"
  459. hide_knots="false" />
  460. <inkscape:path-effect
  461. effect="bspline"
  462. id="path-effect9160"
  463. is_visible="true"
  464. lpeversion="1"
  465. weight="33.333333"
  466. steps="2"
  467. helper_size="0"
  468. apply_no_weight="true"
  469. apply_with_weight="true"
  470. only_selected="false" />
  471. <inkscape:path-effect
  472. effect="bspline"
  473. id="path-effect9156"
  474. is_visible="true"
  475. lpeversion="1"
  476. weight="33.333333"
  477. steps="2"
  478. helper_size="0"
  479. apply_no_weight="true"
  480. apply_with_weight="true"
  481. only_selected="false" />
  482. <inkscape:path-effect
  483. effect="bspline"
  484. id="path-effect9152"
  485. is_visible="true"
  486. lpeversion="1"
  487. weight="33.333333"
  488. steps="2"
  489. helper_size="0"
  490. apply_no_weight="true"
  491. apply_with_weight="true"
  492. only_selected="false" />
  493. <inkscape:path-effect
  494. effect="fillet_chamfer"
  495. id="path-effect9090"
  496. is_visible="true"
  497. lpeversion="1"
  498. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  499. unit="px"
  500. method="auto"
  501. mode="F"
  502. radius="0"
  503. chamfer_steps="1"
  504. flexible="false"
  505. use_knot_distance="true"
  506. apply_no_radius="true"
  507. apply_with_radius="true"
  508. only_selected="true"
  509. hide_knots="false" />
  510. <inkscape:path-effect
  511. effect="fillet_chamfer"
  512. id="path-effect9086"
  513. is_visible="true"
  514. lpeversion="1"
  515. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.3796697,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.63565297,0,1 @ F,0,0,1,0,0.064062288,0,1 @ F,0,1,1,0,0.63565297,0,1"
  516. unit="px"
  517. method="auto"
  518. mode="F"
  519. radius="0"
  520. chamfer_steps="1"
  521. flexible="false"
  522. use_knot_distance="true"
  523. apply_no_radius="true"
  524. apply_with_radius="true"
  525. only_selected="true"
  526. hide_knots="false" />
  527. <inkscape:path-effect
  528. effect="fillet_chamfer"
  529. id="path-effect9082"
  530. is_visible="true"
  531. lpeversion="1"
  532. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  533. unit="px"
  534. method="auto"
  535. mode="F"
  536. radius="0"
  537. chamfer_steps="1"
  538. flexible="false"
  539. use_knot_distance="true"
  540. apply_no_radius="true"
  541. apply_with_radius="true"
  542. only_selected="true"
  543. hide_knots="false" />
  544. <inkscape:path-effect
  545. effect="fillet_chamfer"
  546. id="path-effect9080"
  547. is_visible="true"
  548. lpeversion="1"
  549. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.4014755,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.704358,0,1"
  550. unit="px"
  551. method="auto"
  552. mode="F"
  553. radius="0"
  554. chamfer_steps="1"
  555. flexible="false"
  556. use_knot_distance="true"
  557. apply_no_radius="true"
  558. apply_with_radius="true"
  559. only_selected="true"
  560. hide_knots="false" />
  561. <inkscape:path-effect
  562. effect="fillet_chamfer"
  563. id="path-effect9078"
  564. is_visible="true"
  565. lpeversion="1"
  566. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.3300372,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.253378,0,1"
  567. unit="px"
  568. method="auto"
  569. mode="F"
  570. radius="0"
  571. chamfer_steps="1"
  572. flexible="false"
  573. use_knot_distance="true"
  574. apply_no_radius="true"
  575. apply_with_radius="true"
  576. only_selected="true"
  577. hide_knots="false" />
  578. <inkscape:path-effect
  579. effect="fillet_chamfer"
  580. id="path-effect9076"
  581. is_visible="true"
  582. lpeversion="1"
  583. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  584. unit="px"
  585. method="auto"
  586. mode="F"
  587. radius="0"
  588. chamfer_steps="1"
  589. flexible="false"
  590. use_knot_distance="true"
  591. apply_no_radius="true"
  592. apply_with_radius="true"
  593. only_selected="true"
  594. hide_knots="false" />
  595. <inkscape:path-effect
  596. effect="bspline"
  597. id="path-effect8960"
  598. is_visible="true"
  599. lpeversion="1"
  600. weight="33.333333"
  601. steps="2"
  602. helper_size="0"
  603. apply_no_weight="true"
  604. apply_with_weight="true"
  605. only_selected="false" />
  606. <inkscape:path-effect
  607. effect="bspline"
  608. id="path-effect8846"
  609. is_visible="true"
  610. lpeversion="1"
  611. weight="33.333333"
  612. steps="2"
  613. helper_size="0"
  614. apply_no_weight="true"
  615. apply_with_weight="true"
  616. only_selected="false" />
  617. <inkscape:path-effect
  618. effect="fillet_chamfer"
  619. id="path-effect8842"
  620. is_visible="true"
  621. lpeversion="1"
  622. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,4.4562307,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  623. unit="px"
  624. method="auto"
  625. mode="F"
  626. radius="0"
  627. chamfer_steps="1"
  628. flexible="false"
  629. use_knot_distance="true"
  630. apply_no_radius="true"
  631. apply_with_radius="true"
  632. only_selected="true"
  633. hide_knots="false" />
  634. <inkscape:path-effect
  635. effect="spiro"
  636. id="path-effect8840"
  637. is_visible="true"
  638. lpeversion="1" />
  639. <inkscape:path-effect
  640. effect="fillet_chamfer"
  641. id="path-effect8836"
  642. is_visible="true"
  643. lpeversion="1"
  644. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.5998603,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.1051924,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  645. unit="px"
  646. method="auto"
  647. mode="F"
  648. radius="0"
  649. chamfer_steps="1"
  650. flexible="false"
  651. use_knot_distance="true"
  652. apply_no_radius="true"
  653. apply_with_radius="true"
  654. only_selected="true"
  655. hide_knots="false" />
  656. <inkscape:path-effect
  657. effect="fillet_chamfer"
  658. id="path-effect8834"
  659. is_visible="true"
  660. lpeversion="1"
  661. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.163174,0,1 @ F,0,0,1,0,2.7057588,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  662. unit="px"
  663. method="auto"
  664. mode="F"
  665. radius="0"
  666. chamfer_steps="1"
  667. flexible="false"
  668. use_knot_distance="true"
  669. apply_no_radius="true"
  670. apply_with_radius="true"
  671. only_selected="true"
  672. hide_knots="false" />
  673. <inkscape:path-effect
  674. effect="fillet_chamfer"
  675. id="path-effect8246"
  676. is_visible="true"
  677. lpeversion="1"
  678. satellites_param="F,0,0,1,0,3.823164,0,1 @ F,0,0,1,0,4.1699088,0,1 @ F,0,0,1,0,3.1932977,0,1"
  679. unit="px"
  680. method="auto"
  681. mode="F"
  682. radius="0"
  683. chamfer_steps="1"
  684. flexible="false"
  685. use_knot_distance="true"
  686. apply_no_radius="true"
  687. apply_with_radius="true"
  688. only_selected="true"
  689. hide_knots="false" />
  690. <inkscape:path-effect
  691. effect="fillet_chamfer"
  692. id="path-effect8190"
  693. is_visible="true"
  694. lpeversion="1"
  695. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.1368453,0,1 @ F,0,0,1,0,0,0,1"
  696. unit="px"
  697. method="auto"
  698. mode="F"
  699. radius="0"
  700. chamfer_steps="1"
  701. flexible="false"
  702. use_knot_distance="true"
  703. apply_no_radius="true"
  704. apply_with_radius="true"
  705. only_selected="true"
  706. hide_knots="false" />
  707. <inkscape:path-effect
  708. effect="fillet_chamfer"
  709. id="path-effect8184"
  710. is_visible="true"
  711. lpeversion="1"
  712. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.1368453,0,1 @ F,0,0,1,0,0,0,1"
  713. unit="px"
  714. method="auto"
  715. mode="F"
  716. radius="0"
  717. chamfer_steps="1"
  718. flexible="false"
  719. use_knot_distance="true"
  720. apply_no_radius="true"
  721. apply_with_radius="true"
  722. only_selected="true"
  723. hide_knots="false" />
  724. <inkscape:path-effect
  725. effect="fillet_chamfer"
  726. id="path-effect8180"
  727. is_visible="true"
  728. lpeversion="1"
  729. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.56422126,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.53940812,0,1 @ F,0,0,1,0,0.85532771,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  730. unit="px"
  731. method="auto"
  732. mode="F"
  733. radius="0"
  734. chamfer_steps="1"
  735. flexible="false"
  736. use_knot_distance="true"
  737. apply_no_radius="true"
  738. apply_with_radius="true"
  739. only_selected="true"
  740. hide_knots="false" />
  741. <inkscape:path-effect
  742. effect="fillet_chamfer"
  743. id="path-effect8029"
  744. is_visible="true"
  745. lpeversion="1"
  746. satellites_param="F,0,0,1,0,0.83383119,0,1 @ F,0,0,1,0,0.92851094,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  747. unit="px"
  748. method="auto"
  749. mode="F"
  750. radius="0"
  751. chamfer_steps="1"
  752. flexible="false"
  753. use_knot_distance="true"
  754. apply_no_radius="true"
  755. apply_with_radius="true"
  756. only_selected="true"
  757. hide_knots="false" />
  758. <inkscape:path-effect
  759. effect="fillet_chamfer"
  760. id="path-effect8025"
  761. is_visible="true"
  762. lpeversion="1"
  763. satellites_param="F,0,0,1,0,0.83383119,0,1 @ F,0,0,1,0,0.92851094,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  764. unit="px"
  765. method="auto"
  766. mode="F"
  767. radius="0"
  768. chamfer_steps="1"
  769. flexible="false"
  770. use_knot_distance="true"
  771. apply_no_radius="true"
  772. apply_with_radius="true"
  773. only_selected="true"
  774. hide_knots="false" />
  775. <inkscape:path-effect
  776. effect="fillet_chamfer"
  777. id="path-effect8019"
  778. is_visible="true"
  779. lpeversion="1"
  780. satellites_param="F,0,0,1,0,0.83383119,0,1 @ F,0,0,1,0,0.92851094,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  781. unit="px"
  782. method="auto"
  783. mode="F"
  784. radius="0"
  785. chamfer_steps="1"
  786. flexible="false"
  787. use_knot_distance="true"
  788. apply_no_radius="true"
  789. apply_with_radius="true"
  790. only_selected="true"
  791. hide_knots="false" />
  792. <inkscape:path-effect
  793. effect="fillet_chamfer"
  794. id="path-effect8015"
  795. is_visible="true"
  796. lpeversion="1"
  797. satellites_param="F,0,0,1,0,0.83383119,0,1 @ F,0,0,1,0,0.92851094,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  798. unit="px"
  799. method="auto"
  800. mode="F"
  801. radius="0"
  802. chamfer_steps="1"
  803. flexible="false"
  804. use_knot_distance="true"
  805. apply_no_radius="true"
  806. apply_with_radius="true"
  807. only_selected="true"
  808. hide_knots="false" />
  809. <inkscape:path-effect
  810. effect="fillet_chamfer"
  811. id="path-effect8009"
  812. is_visible="true"
  813. lpeversion="1"
  814. satellites_param="F,0,0,1,0,2.58726,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.84755525,0,1 @ F,0,0,1,0,0.81433335,0,1 @ F,0,0,1,0,0,0,1"
  815. unit="px"
  816. method="auto"
  817. mode="F"
  818. radius="0"
  819. chamfer_steps="1"
  820. flexible="false"
  821. use_knot_distance="true"
  822. apply_no_radius="true"
  823. apply_with_radius="true"
  824. only_selected="true"
  825. hide_knots="false" />
  826. <inkscape:path-effect
  827. effect="fillet_chamfer"
  828. id="path-effect7828"
  829. is_visible="true"
  830. lpeversion="1"
  831. satellites_param="F,0,0,1,0,1.0113014,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.95701606,0,1"
  832. unit="px"
  833. method="auto"
  834. mode="F"
  835. radius="0"
  836. chamfer_steps="1"
  837. flexible="false"
  838. use_knot_distance="true"
  839. apply_no_radius="true"
  840. apply_with_radius="true"
  841. only_selected="true"
  842. hide_knots="false" />
  843. <rect
  844. x="45.749982"
  845. y="58.969794"
  846. width="135.86336"
  847. height="204.05844"
  848. id="rect7382" />
  849. <inkscape:path-effect
  850. effect="fillet_chamfer"
  851. id="path-effect7324"
  852. is_visible="true"
  853. lpeversion="1"
  854. satellites_param="F,0,0,1,0,2.49917,0,1 @ F,0,0,1,0,1.5915343,0,1 @ F,0,1,1,0,2.587263,0,1 @ F,0,0,1,0,2.7854496,0,1 @ F,0,0,1,0,0,0,1"
  855. unit="px"
  856. method="auto"
  857. mode="F"
  858. radius="0"
  859. chamfer_steps="1"
  860. flexible="false"
  861. use_knot_distance="true"
  862. apply_no_radius="true"
  863. apply_with_radius="true"
  864. only_selected="true"
  865. hide_knots="false" />
  866. <inkscape:path-effect
  867. effect="fillet_chamfer"
  868. id="path-effect7318"
  869. is_visible="true"
  870. lpeversion="1"
  871. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0472242,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.80302588,0,1"
  872. unit="px"
  873. method="auto"
  874. mode="F"
  875. radius="0"
  876. chamfer_steps="1"
  877. flexible="false"
  878. use_knot_distance="true"
  879. apply_no_radius="true"
  880. apply_with_radius="true"
  881. only_selected="true"
  882. hide_knots="false" />
  883. <inkscape:path-effect
  884. effect="fillet_chamfer"
  885. id="path-effect7314"
  886. is_visible="true"
  887. lpeversion="1"
  888. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.95638602,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  889. unit="px"
  890. method="auto"
  891. mode="F"
  892. radius="0"
  893. chamfer_steps="1"
  894. flexible="false"
  895. use_knot_distance="true"
  896. apply_no_radius="true"
  897. apply_with_radius="true"
  898. only_selected="true"
  899. hide_knots="false" />
  900. <inkscape:path-effect
  901. effect="fillet_chamfer"
  902. id="path-effect7308"
  903. is_visible="true"
  904. lpeversion="1"
  905. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.8264927,0,1 @ F,0,0,1,0,2.4007995,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  906. unit="px"
  907. method="auto"
  908. mode="F"
  909. radius="0"
  910. chamfer_steps="1"
  911. flexible="false"
  912. use_knot_distance="true"
  913. apply_no_radius="true"
  914. apply_with_radius="true"
  915. only_selected="true"
  916. hide_knots="false" />
  917. <inkscape:path-effect
  918. effect="fillet_chamfer"
  919. id="path-effect7304"
  920. is_visible="true"
  921. lpeversion="1"
  922. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.4114625,0,1 @ F,0,0,1,0,2.0600253,0,1 @ F,0,0,1,0,2.30318,0,1 @ F,0,0,1,0,1.1562566,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.547728,0,1 @ F,0,0,1,0,1.7288581,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.9569798,0,1 @ F,0,0,1,0,1.66577,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.70817963,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  923. unit="px"
  924. method="auto"
  925. mode="F"
  926. radius="0"
  927. chamfer_steps="1"
  928. flexible="false"
  929. use_knot_distance="true"
  930. apply_no_radius="true"
  931. apply_with_radius="true"
  932. only_selected="true"
  933. hide_knots="false" />
  934. <inkscape:path-effect
  935. effect="spiro"
  936. id="path-effect7284"
  937. is_visible="true"
  938. lpeversion="1" />
  939. <inkscape:path-effect
  940. effect="spiro"
  941. id="path-effect7280"
  942. is_visible="true"
  943. lpeversion="1" />
  944. <inkscape:path-effect
  945. effect="spiro"
  946. id="path-effect6968"
  947. is_visible="true"
  948. lpeversion="1" />
  949. <inkscape:path-effect
  950. effect="spiro"
  951. id="path-effect6964"
  952. is_visible="true"
  953. lpeversion="1" />
  954. <inkscape:path-effect
  955. effect="fillet_chamfer"
  956. id="path-effect6960"
  957. is_visible="true"
  958. lpeversion="1"
  959. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,5.199067,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  960. unit="px"
  961. method="auto"
  962. mode="F"
  963. radius="0"
  964. chamfer_steps="1"
  965. flexible="false"
  966. use_knot_distance="true"
  967. apply_no_radius="true"
  968. apply_with_radius="true"
  969. only_selected="true"
  970. hide_knots="false" />
  971. <inkscape:path-effect
  972. effect="fillet_chamfer"
  973. id="path-effect6958"
  974. is_visible="true"
  975. lpeversion="1"
  976. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,5.0397351,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  977. unit="px"
  978. method="auto"
  979. mode="F"
  980. radius="0"
  981. chamfer_steps="1"
  982. flexible="false"
  983. use_knot_distance="true"
  984. apply_no_radius="true"
  985. apply_with_radius="true"
  986. only_selected="true"
  987. hide_knots="false" />
  988. <inkscape:path-effect
  989. effect="fillet_chamfer"
  990. id="path-effect6882"
  991. is_visible="true"
  992. lpeversion="1"
  993. satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,19.62738,0,1 @ F,0,0,1,0,0,0,1"
  994. unit="px"
  995. method="auto"
  996. mode="F"
  997. radius="0"
  998. chamfer_steps="1"
  999. flexible="false"
  1000. use_knot_distance="true"
  1001. apply_no_radius="true"
  1002. apply_with_radius="true"
  1003. only_selected="true"
  1004. hide_knots="false" />
  1005. <inkscape:path-effect
  1006. effect="spiro"
  1007. id="path-effect6878"
  1008. is_visible="true"
  1009. lpeversion="1" />
  1010. <inkscape:path-effect
  1011. effect="fillet_chamfer"
  1012. id="path-effect6804"
  1013. is_visible="true"
  1014. lpeversion="1"
  1015. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.1508914,0,1 @ F,0,0,1,0,0,0,1"
  1016. unit="px"
  1017. method="auto"
  1018. mode="F"
  1019. radius="0"
  1020. chamfer_steps="1"
  1021. flexible="false"
  1022. use_knot_distance="true"
  1023. apply_no_radius="true"
  1024. apply_with_radius="true"
  1025. only_selected="true"
  1026. hide_knots="false" />
  1027. <inkscape:path-effect
  1028. effect="fillet_chamfer"
  1029. id="path-effect6796"
  1030. is_visible="true"
  1031. lpeversion="1"
  1032. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,5.4597737,0,1 @ F,0,0,1,0,0,0,1"
  1033. unit="px"
  1034. method="auto"
  1035. mode="F"
  1036. radius="0"
  1037. chamfer_steps="1"
  1038. flexible="false"
  1039. use_knot_distance="true"
  1040. apply_no_radius="true"
  1041. apply_with_radius="true"
  1042. only_selected="true"
  1043. hide_knots="false" />
  1044. <inkscape:path-effect
  1045. effect="fillet_chamfer"
  1046. id="path-effect6790"
  1047. is_visible="true"
  1048. lpeversion="1"
  1049. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,6.4284806,0,1 @ F,0,0,1,0,1.0259536,0,1"
  1050. unit="px"
  1051. method="auto"
  1052. mode="F"
  1053. radius="0"
  1054. chamfer_steps="1"
  1055. flexible="false"
  1056. use_knot_distance="true"
  1057. apply_no_radius="true"
  1058. apply_with_radius="true"
  1059. only_selected="true"
  1060. hide_knots="false" />
  1061. <inkscape:path-effect
  1062. effect="fillet_chamfer"
  1063. id="path-effect6782"
  1064. is_visible="true"
  1065. lpeversion="1"
  1066. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,8.7559946,0,1 @ F,0,0,1,0,0,0,1"
  1067. unit="px"
  1068. method="auto"
  1069. mode="F"
  1070. radius="0"
  1071. chamfer_steps="1"
  1072. flexible="false"
  1073. use_knot_distance="true"
  1074. apply_no_radius="true"
  1075. apply_with_radius="true"
  1076. only_selected="true"
  1077. hide_knots="false" />
  1078. <inkscape:path-effect
  1079. effect="fillet_chamfer"
  1080. id="path-effect6774"
  1081. is_visible="true"
  1082. lpeversion="1"
  1083. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,6.7097701,0,1 @ F,0,0,1,0,0,0,1"
  1084. unit="px"
  1085. method="auto"
  1086. mode="F"
  1087. radius="0"
  1088. chamfer_steps="1"
  1089. flexible="false"
  1090. use_knot_distance="true"
  1091. apply_no_radius="true"
  1092. apply_with_radius="true"
  1093. only_selected="true"
  1094. hide_knots="false" />
  1095. <inkscape:path-effect
  1096. effect="fillet_chamfer"
  1097. id="path-effect6766"
  1098. is_visible="true"
  1099. lpeversion="1"
  1100. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,11.79319,0,1 @ F,0,0,1,0,0,0,1"
  1101. unit="px"
  1102. method="auto"
  1103. mode="F"
  1104. radius="0"
  1105. chamfer_steps="1"
  1106. flexible="false"
  1107. use_knot_distance="true"
  1108. apply_no_radius="true"
  1109. apply_with_radius="true"
  1110. only_selected="true"
  1111. hide_knots="false" />
  1112. <inkscape:path-effect
  1113. effect="fillet_chamfer"
  1114. id="path-effect5780"
  1115. is_visible="true"
  1116. lpeversion="1"
  1117. satellites_param="F,0,0,1,0,4.7581086,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,5.0739542,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1118. unit="px"
  1119. method="auto"
  1120. mode="F"
  1121. radius="0"
  1122. chamfer_steps="1"
  1123. flexible="false"
  1124. use_knot_distance="true"
  1125. apply_no_radius="true"
  1126. apply_with_radius="true"
  1127. only_selected="true"
  1128. hide_knots="false" />
  1129. <inkscape:path-effect
  1130. effect="fillet_chamfer"
  1131. id="path-effect5742"
  1132. is_visible="true"
  1133. lpeversion="1"
  1134. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.1419539,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0772472,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.2631921,0,1"
  1135. unit="px"
  1136. method="auto"
  1137. mode="F"
  1138. radius="0"
  1139. chamfer_steps="1"
  1140. flexible="false"
  1141. use_knot_distance="true"
  1142. apply_no_radius="true"
  1143. apply_with_radius="true"
  1144. only_selected="true"
  1145. hide_knots="false" />
  1146. <inkscape:path-effect
  1147. effect="fillet_chamfer"
  1148. id="path-effect5738"
  1149. is_visible="true"
  1150. lpeversion="1"
  1151. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.235468,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1152. unit="px"
  1153. method="auto"
  1154. mode="F"
  1155. radius="0"
  1156. chamfer_steps="1"
  1157. flexible="false"
  1158. use_knot_distance="true"
  1159. apply_no_radius="true"
  1160. apply_with_radius="true"
  1161. only_selected="true"
  1162. hide_knots="false" />
  1163. <inkscape:path-effect
  1164. effect="fillet_chamfer"
  1165. id="path-effect5736"
  1166. is_visible="true"
  1167. lpeversion="1"
  1168. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.1118243,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1169. unit="px"
  1170. method="auto"
  1171. mode="F"
  1172. radius="0"
  1173. chamfer_steps="1"
  1174. flexible="false"
  1175. use_knot_distance="true"
  1176. apply_no_radius="true"
  1177. apply_with_radius="true"
  1178. only_selected="true"
  1179. hide_knots="false" />
  1180. <inkscape:path-effect
  1181. effect="fillet_chamfer"
  1182. id="path-effect5734"
  1183. is_visible="true"
  1184. lpeversion="1"
  1185. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0586216,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1186. unit="px"
  1187. method="auto"
  1188. mode="F"
  1189. radius="0"
  1190. chamfer_steps="1"
  1191. flexible="false"
  1192. use_knot_distance="true"
  1193. apply_no_radius="true"
  1194. apply_with_radius="true"
  1195. only_selected="true"
  1196. hide_knots="false" />
  1197. <inkscape:path-effect
  1198. effect="fillet_chamfer"
  1199. id="path-effect5727"
  1200. is_visible="true"
  1201. lpeversion="1"
  1202. satellites_param="F,0,1,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1203. unit="px"
  1204. method="auto"
  1205. mode="F"
  1206. radius="0"
  1207. chamfer_steps="1"
  1208. flexible="false"
  1209. use_knot_distance="true"
  1210. apply_no_radius="true"
  1211. apply_with_radius="true"
  1212. only_selected="true"
  1213. hide_knots="false" />
  1214. <inkscape:path-effect
  1215. effect="fillet_chamfer"
  1216. id="path-effect5719"
  1217. is_visible="true"
  1218. lpeversion="1"
  1219. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0899381,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0294692,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1220. unit="px"
  1221. method="auto"
  1222. mode="F"
  1223. radius="0"
  1224. chamfer_steps="1"
  1225. flexible="false"
  1226. use_knot_distance="true"
  1227. apply_no_radius="true"
  1228. apply_with_radius="true"
  1229. only_selected="true"
  1230. hide_knots="false" />
  1231. <inkscape:path-effect
  1232. effect="fillet_chamfer"
  1233. id="path-effect5717"
  1234. is_visible="true"
  1235. lpeversion="1"
  1236. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.94468642,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.93037527,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1237. unit="px"
  1238. method="auto"
  1239. mode="F"
  1240. radius="0"
  1241. chamfer_steps="1"
  1242. flexible="false"
  1243. use_knot_distance="true"
  1244. apply_no_radius="true"
  1245. apply_with_radius="true"
  1246. only_selected="true"
  1247. hide_knots="false" />
  1248. <inkscape:path-effect
  1249. effect="fillet_chamfer"
  1250. id="path-effect5715"
  1251. is_visible="true"
  1252. lpeversion="1"
  1253. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0809708,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1254. unit="px"
  1255. method="auto"
  1256. mode="F"
  1257. radius="0"
  1258. chamfer_steps="1"
  1259. flexible="false"
  1260. use_knot_distance="true"
  1261. apply_no_radius="true"
  1262. apply_with_radius="true"
  1263. only_selected="true"
  1264. hide_knots="false" />
  1265. <inkscape:path-effect
  1266. effect="fillet_chamfer"
  1267. id="path-effect5711"
  1268. is_visible="true"
  1269. lpeversion="1"
  1270. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0956057,0,1 @ F,0,0,1,0,2.7040796,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.281744,0,1"
  1271. unit="px"
  1272. method="auto"
  1273. mode="F"
  1274. radius="0"
  1275. chamfer_steps="1"
  1276. flexible="false"
  1277. use_knot_distance="true"
  1278. apply_no_radius="true"
  1279. apply_with_radius="true"
  1280. only_selected="true"
  1281. hide_knots="false" />
  1282. <inkscape:path-effect
  1283. effect="fillet_chamfer"
  1284. id="path-effect5709"
  1285. is_visible="true"
  1286. lpeversion="1"
  1287. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.2621358,0,1 @ F,0,0,1,0,2.140279,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.5148418,0,1"
  1288. unit="px"
  1289. method="auto"
  1290. mode="F"
  1291. radius="0"
  1292. chamfer_steps="1"
  1293. flexible="false"
  1294. use_knot_distance="true"
  1295. apply_no_radius="true"
  1296. apply_with_radius="true"
  1297. only_selected="true"
  1298. hide_knots="false" />
  1299. <inkscape:path-effect
  1300. effect="fillet_chamfer"
  1301. id="path-effect5707"
  1302. is_visible="true"
  1303. lpeversion="1"
  1304. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.8327178,0,1 @ F,0,0,1,0,1.762619,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.0855127,0,1"
  1305. unit="px"
  1306. method="auto"
  1307. mode="F"
  1308. radius="0"
  1309. chamfer_steps="1"
  1310. flexible="false"
  1311. use_knot_distance="true"
  1312. apply_no_radius="true"
  1313. apply_with_radius="true"
  1314. only_selected="true"
  1315. hide_knots="false" />
  1316. <inkscape:path-effect
  1317. effect="fillet_chamfer"
  1318. id="path-effect5701"
  1319. is_visible="true"
  1320. lpeversion="1"
  1321. satellites_param="F,0,0,1,0,1.3768297,0,1 @ F,0,0,1,0,0,0,1 @ F,0,1,1,0,4.0526068,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1322. unit="px"
  1323. method="auto"
  1324. mode="F"
  1325. radius="0"
  1326. chamfer_steps="1"
  1327. flexible="false"
  1328. use_knot_distance="true"
  1329. apply_no_radius="true"
  1330. apply_with_radius="true"
  1331. only_selected="true"
  1332. hide_knots="false" />
  1333. <inkscape:path-effect
  1334. effect="fillet_chamfer"
  1335. id="path-effect5699"
  1336. is_visible="true"
  1337. lpeversion="1"
  1338. satellites_param="F,0,0,1,0,10.734258,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1339. unit="px"
  1340. method="auto"
  1341. mode="F"
  1342. radius="0"
  1343. chamfer_steps="1"
  1344. flexible="false"
  1345. use_knot_distance="true"
  1346. apply_no_radius="true"
  1347. apply_with_radius="true"
  1348. only_selected="true"
  1349. hide_knots="false" />
  1350. <inkscape:path-effect
  1351. effect="fillet_chamfer"
  1352. id="path-effect5695"
  1353. is_visible="true"
  1354. lpeversion="1"
  1355. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1356. unit="px"
  1357. method="auto"
  1358. mode="F"
  1359. radius="0"
  1360. chamfer_steps="1"
  1361. flexible="false"
  1362. use_knot_distance="true"
  1363. apply_no_radius="true"
  1364. apply_with_radius="true"
  1365. only_selected="true"
  1366. hide_knots="false" />
  1367. <inkscape:path-effect
  1368. effect="fillet_chamfer"
  1369. id="path-effect5693"
  1370. is_visible="true"
  1371. lpeversion="1"
  1372. satellites_param="IF,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1373. unit="px"
  1374. method="auto"
  1375. mode="F"
  1376. radius="0"
  1377. chamfer_steps="1"
  1378. flexible="false"
  1379. use_knot_distance="true"
  1380. apply_no_radius="true"
  1381. apply_with_radius="true"
  1382. only_selected="true"
  1383. hide_knots="false" />
  1384. <inkscape:path-effect
  1385. effect="fillet_chamfer"
  1386. id="path-effect5691"
  1387. is_visible="true"
  1388. lpeversion="1"
  1389. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1390. unit="px"
  1391. method="auto"
  1392. mode="F"
  1393. radius="0"
  1394. chamfer_steps="1"
  1395. flexible="false"
  1396. use_knot_distance="true"
  1397. apply_no_radius="true"
  1398. apply_with_radius="true"
  1399. only_selected="true"
  1400. hide_knots="false" />
  1401. <inkscape:path-effect
  1402. effect="fillet_chamfer"
  1403. id="path-effect5643"
  1404. is_visible="true"
  1405. lpeversion="1"
  1406. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
  1407. unit="px"
  1408. method="auto"
  1409. mode="F"
  1410. radius="0"
  1411. chamfer_steps="1"
  1412. flexible="false"
  1413. use_knot_distance="true"
  1414. apply_no_radius="true"
  1415. apply_with_radius="true"
  1416. only_selected="true"
  1417. hide_knots="false" />
  1418. <inkscape:path-effect
  1419. effect="bspline"
  1420. id="path-effect5495"
  1421. is_visible="true"
  1422. lpeversion="1"
  1423. weight="33.333333"
  1424. steps="2"
  1425. helper_size="0"
  1426. apply_no_weight="true"
  1427. apply_with_weight="true"
  1428. only_selected="false" />
  1429. <inkscape:path-effect
  1430. effect="fillet_chamfer"
  1431. id="path-effect5431"
  1432. is_visible="true"
  1433. lpeversion="1"
  1434. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,8.4632,0,1 @ F,0,0,1,0,0,0,1"
  1435. unit="px"
  1436. method="auto"
  1437. mode="F"
  1438. radius="0"
  1439. chamfer_steps="1"
  1440. flexible="false"
  1441. use_knot_distance="true"
  1442. apply_no_radius="true"
  1443. apply_with_radius="true"
  1444. only_selected="true"
  1445. hide_knots="false" />
  1446. <marker
  1447. style="overflow:visible"
  1448. id="marker5377"
  1449. refX="0.0"
  1450. refY="0.0"
  1451. orient="auto"
  1452. inkscape:stockid="Arrow1Lstart"
  1453. inkscape:isstock="true">
  1454. <path
  1455. transform="scale(0.8) translate(12.5,0)"
  1456. style="fill-rule:evenodd;stroke:#5976a2;stroke-width:1pt;stroke-opacity:1;fill:#6d93c5;fill-opacity:1"
  1457. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  1458. id="path5375" />
  1459. </marker>
  1460. <inkscape:path-effect
  1461. effect="fillet_chamfer"
  1462. id="path-effect5349"
  1463. is_visible="true"
  1464. lpeversion="1"
  1465. satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.134697,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,13.931761,0,1"
  1466. unit="px"
  1467. method="auto"
  1468. mode="F"
  1469. radius="0"
  1470. chamfer_steps="1"
  1471. flexible="false"
  1472. use_knot_distance="true"
  1473. apply_no_radius="true"
  1474. apply_with_radius="true"
  1475. only_selected="true"
  1476. hide_knots="false" />
  1477. <marker
  1478. style="overflow:visible"
  1479. id="marker5305"
  1480. refX="0.0"
  1481. refY="0.0"
  1482. orient="auto"
  1483. inkscape:stockid="Arrow1Lstart"
  1484. inkscape:isstock="true">
  1485. <path
  1486. transform="scale(0.8) translate(12.5,0)"
  1487. style="fill-rule:evenodd;stroke:#c4bcb4;stroke-width:1pt;stroke-opacity:1;fill:#a75784;fill-opacity:1"
  1488. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  1489. id="path5303" />
  1490. </marker>
  1491. <marker
  1492. style="overflow:visible"
  1493. id="marker5271"
  1494. refX="0.0"
  1495. refY="0.0"
  1496. orient="auto"
  1497. inkscape:stockid="Arrow1Lstart"
  1498. inkscape:isstock="true">
  1499. <path
  1500. transform="scale(0.8) translate(12.5,0)"
  1501. style="fill-rule:evenodd;stroke:#5976a2;stroke-width:1pt;stroke-opacity:1;fill:#6d93c5;fill-opacity:1"
  1502. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  1503. id="path5269" />
  1504. </marker>
  1505. <marker
  1506. style="overflow:visible"
  1507. id="marker5243"
  1508. refX="0.0"
  1509. refY="0.0"
  1510. orient="auto"
  1511. inkscape:stockid="Arrow1Lstart"
  1512. inkscape:isstock="true">
  1513. <path
  1514. transform="scale(0.8) translate(12.5,0)"
  1515. style="fill-rule:evenodd;stroke:#dddddd;stroke-width:1pt;stroke-opacity:1;fill:#3f3a3a;fill-opacity:1"
  1516. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  1517. id="path5241" />
  1518. </marker>
  1519. <marker
  1520. style="overflow:visible"
  1521. id="marker5221"
  1522. refX="0.0"
  1523. refY="0.0"
  1524. orient="auto"
  1525. inkscape:stockid="Arrow1Lstart"
  1526. inkscape:isstock="true">
  1527. <path
  1528. transform="scale(0.8) translate(12.5,0)"
  1529. style="fill-rule:evenodd;stroke:#c4bcb4;stroke-width:1pt;stroke-opacity:1;fill:#a75784;fill-opacity:1"
  1530. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  1531. id="path5219" />
  1532. </marker>
  1533. <marker
  1534. style="overflow:visible"
  1535. id="marker5205"
  1536. refX="0.0"
  1537. refY="0.0"
  1538. orient="auto"
  1539. inkscape:stockid="Arrow1Lstart"
  1540. inkscape:isstock="true">
  1541. <path
  1542. transform="scale(0.8) translate(12.5,0)"
  1543. style="fill-rule:evenodd;stroke:#c4bcb4;stroke-width:1pt;stroke-opacity:1;fill:#a75784;fill-opacity:1"
  1544. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  1545. id="path5203" />
  1546. </marker>
  1547. <marker
  1548. style="overflow:visible"
  1549. id="Arrow1Lstart"
  1550. refX="0.0"
  1551. refY="0.0"
  1552. orient="auto"
  1553. inkscape:stockid="Arrow1Lstart"
  1554. inkscape:isstock="true">
  1555. <path
  1556. transform="scale(0.8) translate(12.5,0)"
  1557. style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:#b8d3cd;fill-opacity:1"
  1558. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  1559. id="path4933" />
  1560. </marker>
  1561. <rect
  1562. x="45.129635"
  1563. y="54.946714"
  1564. width="202.9487"
  1565. height="190.22995"
  1566. id="rect4857" />
  1567. <rect
  1568. x="48.344325"
  1569. y="194.25686"
  1570. width="91.48948"
  1571. height="58.494407"
  1572. id="rect3729" />
  1573. <rect
  1574. x="52.069068"
  1575. y="193.38943"
  1576. width="185.2942"
  1577. height="69.520217"
  1578. id="rect3615" />
  1579. <inkscape:path-effect
  1580. effect="bspline"
  1581. id="path-effect3401"
  1582. is_visible="true"
  1583. lpeversion="1"
  1584. weight="33.333333"
  1585. steps="2"
  1586. helper_size="0"
  1587. apply_no_weight="true"
  1588. apply_with_weight="true"
  1589. only_selected="false" />
  1590. <inkscape:path-effect
  1591. effect="bspline"
  1592. id="path-effect3307"
  1593. is_visible="true"
  1594. lpeversion="1"
  1595. weight="33.333333"
  1596. steps="2"
  1597. helper_size="0"
  1598. apply_no_weight="true"
  1599. apply_with_weight="true"
  1600. only_selected="false" />
  1601. <linearGradient
  1602. id="linearGradient2972"
  1603. osb:paint="solid">
  1604. <stop
  1605. style="stop-color:#a56e6e;stop-opacity:1;"
  1606. offset="0"
  1607. id="stop2970" />
  1608. </linearGradient>
  1609. <rect
  1610. x="66.588691"
  1611. y="147.70443"
  1612. width="92.201096"
  1613. height="108.04266"
  1614. id="rect859" />
  1615. <inkscape:perspective
  1616. sodipodi:type="inkscape:persp3d"
  1617. inkscape:vp_x="-434.70716 : 415.15748 : 1"
  1618. inkscape:vp_y="2709.1236 : 1922.2699 : 0"
  1619. inkscape:vp_z="166.42857 : -569.66907 : 1"
  1620. inkscape:persp3d-origin="-414.1701 : -686.9087 : 1"
  1621. id="perspective841" />
  1622. <filter
  1623. id="filter6181"
  1624. color-interpolation-filters="sRGB">
  1625. <feGaussianBlur
  1626. id="feGaussianBlur6183"
  1627. stdDeviation="1.6001681" />
  1628. </filter>
  1629. <linearGradient
  1630. id="linearGradient3487">
  1631. <stop
  1632. id="stop3489"
  1633. style="stop-color:#e6cde2"
  1634. offset="0" />
  1635. <stop
  1636. id="stop3491"
  1637. style="stop-color:#e6cde2;stop-opacity:0"
  1638. offset="1" />
  1639. </linearGradient>
  1640. <linearGradient
  1641. id="linearGradient3495">
  1642. <stop
  1643. id="stop3497"
  1644. style="stop-color:#c1cbe4"
  1645. offset="0" />
  1646. <stop
  1647. id="stop3499"
  1648. style="stop-color:#c1cbe4;stop-opacity:0"
  1649. offset="1" />
  1650. </linearGradient>
  1651. <linearGradient
  1652. id="linearGradient3503">
  1653. <stop
  1654. id="stop3505"
  1655. style="stop-color:#c4ebdd"
  1656. offset="0" />
  1657. <stop
  1658. id="stop3507"
  1659. style="stop-color:#c4ebdd;stop-opacity:0"
  1660. offset="1" />
  1661. </linearGradient>
  1662. <linearGradient
  1663. id="linearGradient3511">
  1664. <stop
  1665. id="stop3513"
  1666. style="stop-color:#ebeec7"
  1667. offset="0" />
  1668. <stop
  1669. id="stop3515"
  1670. style="stop-color:#ebeec7;stop-opacity:0"
  1671. offset="1" />
  1672. </linearGradient>
  1673. <linearGradient
  1674. id="linearGradient3519">
  1675. <stop
  1676. id="stop3521"
  1677. style="stop-color:#fcd9cd"
  1678. offset="0" />
  1679. <stop
  1680. id="stop3523"
  1681. style="stop-color:#fcd9cd;stop-opacity:0"
  1682. offset="1" />
  1683. </linearGradient>
  1684. <linearGradient
  1685. id="linearGradient6036">
  1686. <stop
  1687. id="stop6038"
  1688. style="stop-color:#fff"
  1689. offset="0" />
  1690. <stop
  1691. id="stop6040"
  1692. style="stop-color:#fff;stop-opacity:0"
  1693. offset="1" />
  1694. </linearGradient>
  1695. <linearGradient
  1696. id="linearGradient8471"
  1697. y2="43"
  1698. gradientUnits="userSpaceOnUse"
  1699. x2="24"
  1700. gradientTransform="matrix(2.7838,0,0,2.7838,-2.8108,-2.8108)"
  1701. y1="5"
  1702. x1="24">
  1703. <stop
  1704. id="stop3926"
  1705. style="stop-color:#fff"
  1706. offset="0" />
  1707. <stop
  1708. id="stop3928"
  1709. style="stop-color:#fff;stop-opacity:.23529"
  1710. offset=".063165" />
  1711. <stop
  1712. id="stop3930"
  1713. style="stop-color:#fff;stop-opacity:.15686"
  1714. offset=".95056" />
  1715. <stop
  1716. id="stop3932"
  1717. style="stop-color:#fff;stop-opacity:.39216"
  1718. offset="1" />
  1719. </linearGradient>
  1720. <radialGradient
  1721. id="radialGradient8487"
  1722. gradientUnits="userSpaceOnUse"
  1723. cy="8.4498"
  1724. cx="7.4957"
  1725. gradientTransform="matrix(5.2307e-8,6.2919,-6.6561,-1.1592e-7,120.24,-34.094)"
  1726. r="20">
  1727. <stop
  1728. id="stop41892"
  1729. style="stop-color:#dbdbdb"
  1730. offset="0" />
  1731. <stop
  1732. id="stop41894"
  1733. style="stop-color:#b5b5b5"
  1734. offset=".26238" />
  1735. <stop
  1736. id="stop41896"
  1737. style="stop-color:#848484"
  1738. offset=".66094" />
  1739. <stop
  1740. id="stop41898"
  1741. style="stop-color:#585858"
  1742. offset="1" />
  1743. </radialGradient>
  1744. <linearGradient
  1745. id="linearGradient8489"
  1746. y2="3.899"
  1747. gradientUnits="userSpaceOnUse"
  1748. x2="24"
  1749. gradientTransform="matrix(2.6923,0,0,2.6923,-0.61538,-0.61538)"
  1750. y1="44"
  1751. x1="24">
  1752. <stop
  1753. id="stop41902"
  1754. style="stop-color:#484848"
  1755. offset="0" />
  1756. <stop
  1757. id="stop41904"
  1758. style="stop-color:#767676"
  1759. offset="1" />
  1760. </linearGradient>
  1761. <linearGradient
  1762. id="linearGradient9415"
  1763. y2="9.8622"
  1764. xlink:href="#linearGradient3487"
  1765. spreadMethod="reflect"
  1766. gradientUnits="userSpaceOnUse"
  1767. x2="24.274"
  1768. y1="10.775"
  1769. x1="20.58" />
  1770. <linearGradient
  1771. id="linearGradient9417"
  1772. y2="9.7956"
  1773. xlink:href="#linearGradient3495"
  1774. spreadMethod="reflect"
  1775. gradientUnits="userSpaceOnUse"
  1776. x2="21.047"
  1777. y1="11.2"
  1778. x1="17.495" />
  1779. <linearGradient
  1780. id="linearGradient9419"
  1781. y2="10.732"
  1782. xlink:href="#linearGradient3503"
  1783. spreadMethod="reflect"
  1784. gradientUnits="userSpaceOnUse"
  1785. x2="16.994"
  1786. y1="13.046"
  1787. x1="14.085" />
  1788. <linearGradient
  1789. id="linearGradient9421"
  1790. y2="13.462"
  1791. xlink:href="#linearGradient3511"
  1792. spreadMethod="reflect"
  1793. gradientUnits="userSpaceOnUse"
  1794. x2="14.609"
  1795. y1="16.188"
  1796. x1="12.372" />
  1797. <linearGradient
  1798. id="linearGradient9423"
  1799. y2="20.613"
  1800. xlink:href="#linearGradient3519"
  1801. spreadMethod="reflect"
  1802. gradientUnits="userSpaceOnUse"
  1803. x2="9.7298"
  1804. y1="17.886"
  1805. x1="10.609" />
  1806. <linearGradient
  1807. id="linearGradient9452"
  1808. y2="199.71"
  1809. gradientUnits="userSpaceOnUse"
  1810. x2="28.479"
  1811. gradientTransform="matrix(0.60138,0,0,0.60231,66.291,-39.635)"
  1812. y1="115.94"
  1813. x1="28.479">
  1814. <stop
  1815. id="stop3792"
  1816. style="stop-color:#fff"
  1817. offset="0" />
  1818. <stop
  1819. id="stop3794"
  1820. style="stop-color:#fff;stop-opacity:.34483"
  1821. offset="1" />
  1822. </linearGradient>
  1823. <radialGradient
  1824. id="radialGradient9455"
  1825. fx="14.688"
  1826. fy="37.456"
  1827. gradientUnits="userSpaceOnUse"
  1828. cy="41.059"
  1829. cx="17.059"
  1830. gradientTransform="matrix(1.9278,-0.88987,0.4265,1.7058,23.129,35.267)"
  1831. r="5.7385">
  1832. <stop
  1833. id="stop3812"
  1834. style="stop-color:#e4fc58"
  1835. offset="0" />
  1836. <stop
  1837. id="stop3814"
  1838. style="stop-color:#a3cb27"
  1839. offset=".66094" />
  1840. <stop
  1841. id="stop3816"
  1842. style="stop-color:#74a111"
  1843. offset="1" />
  1844. </radialGradient>
  1845. <radialGradient
  1846. id="radialGradient9458"
  1847. gradientUnits="userSpaceOnUse"
  1848. cy="16.98"
  1849. cx="35.294"
  1850. gradientTransform="matrix(2.9700429,-3.7594872e-8,6.3495413e-8,8.0306093,206.6256,-66.913894)"
  1851. r="12.03">
  1852. <stop
  1853. id="stop3798"
  1854. style="stop-color:#e4fc58"
  1855. offset="0" />
  1856. <stop
  1857. id="stop3800"
  1858. style="stop-color:#a3cb27"
  1859. offset=".32453" />
  1860. <stop
  1861. id="stop3802"
  1862. style="stop-color:#74a111"
  1863. offset="1" />
  1864. </radialGradient>
  1865. <linearGradient
  1866. id="linearGradient9460"
  1867. y2="4.0338"
  1868. gradientUnits="userSpaceOnUse"
  1869. x2="26.717"
  1870. gradientTransform="matrix(2.1051676,0,0,2.6636201,237.14978,40.182895)"
  1871. y1="46.002"
  1872. x1="26.717">
  1873. <stop
  1874. id="stop3806"
  1875. style="stop-color:#547411"
  1876. offset="0" />
  1877. <stop
  1878. id="stop3808"
  1879. style="stop-color:#8aaf19"
  1880. offset="1" />
  1881. </linearGradient>
  1882. <radialGradient
  1883. id="radialGradient9463"
  1884. gradientUnits="userSpaceOnUse"
  1885. cy="4.625"
  1886. cx="62.625"
  1887. gradientTransform="matrix(1.7754,0,0,0.83422,-44.275,91.778)"
  1888. r="10.625">
  1889. <stop
  1890. id="stop8840"
  1891. offset="0" />
  1892. <stop
  1893. id="stop8842"
  1894. style="stop-opacity:0"
  1895. offset="1" />
  1896. </radialGradient>
  1897. <linearGradient
  1898. id="linearGradient9466"
  1899. y2="45.962"
  1900. xlink:href="#linearGradient6036"
  1901. gradientUnits="userSpaceOnUse"
  1902. x2="18.203"
  1903. gradientTransform="matrix(0.73241,0,0,-0.73241,46.168,80.31)"
  1904. y1="4.0378"
  1905. x1="18.776" />
  1906. <linearGradient
  1907. id="linearGradient9469"
  1908. y2="45.176"
  1909. gradientUnits="userSpaceOnUse"
  1910. x2="20.019"
  1911. gradientTransform="matrix(1.7805,0,0,1.7805,21.268,19.268)"
  1912. y1="3"
  1913. x1="20.019">
  1914. <stop
  1915. id="stop3774"
  1916. style="stop-color:#b4b4b4"
  1917. offset="0" />
  1918. <stop
  1919. id="stop3776"
  1920. style="stop-color:#969696"
  1921. offset="1" />
  1922. </linearGradient>
  1923. <linearGradient
  1924. id="linearGradient9472"
  1925. y2="54.698"
  1926. xlink:href="#linearGradient6036"
  1927. gradientUnits="userSpaceOnUse"
  1928. x2="48.799"
  1929. gradientTransform="matrix(1.7931,0,0,1.7931,20.342,17.171)"
  1930. y1="3.61"
  1931. x1="10.502" />
  1932. <linearGradient
  1933. id="linearGradient9487"
  1934. y2="32.509"
  1935. gradientUnits="userSpaceOnUse"
  1936. x2="21.448"
  1937. gradientTransform="matrix(1.6875,0,0,1.6875,23.5,21.5)"
  1938. y1="15.5"
  1939. x1="21.448">
  1940. <stop
  1941. id="stop3430"
  1942. style="stop-color:#aaa"
  1943. offset="0" />
  1944. <stop
  1945. id="stop3432"
  1946. style="stop-color:#d4d4d4"
  1947. offset="1" />
  1948. </linearGradient>
  1949. <linearGradient
  1950. id="linearGradient9491"
  1951. y2="14.203"
  1952. gradientUnits="userSpaceOnUse"
  1953. x2="35.391"
  1954. gradientTransform="matrix(0,2.0766,-2.0766,0,111.97,12.115)"
  1955. y1="32.416"
  1956. x1="12.274">
  1957. <stop
  1958. id="stop3265"
  1959. style="stop-color:#dededb"
  1960. offset="0" />
  1961. <stop
  1962. id="stop3267"
  1963. style="stop-color:#e6e6e6"
  1964. offset=".5" />
  1965. <stop
  1966. id="stop3269"
  1967. style="stop-color:#d2d2d2"
  1968. offset="1" />
  1969. </linearGradient>
  1970. <radialGradient
  1971. id="radialGradient9494"
  1972. gradientUnits="userSpaceOnUse"
  1973. cy="41.636"
  1974. cx="23.335"
  1975. gradientTransform="matrix(1.7236,0,0,0.50919,23.781,68.231)"
  1976. r="22.627">
  1977. <stop
  1978. id="stop23421"
  1979. offset="0" />
  1980. <stop
  1981. id="stop23423"
  1982. style="stop-opacity:0"
  1983. offset="1" />
  1984. </radialGradient>
  1985. <linearGradient
  1986. id="e">
  1987. <stop
  1988. stop-color="#b0b0b0"
  1989. offset="0"
  1990. id="stop7" />
  1991. <stop
  1992. stop-color="#f5f5f5"
  1993. offset="1"
  1994. id="stop9" />
  1995. </linearGradient>
  1996. <linearGradient
  1997. id="a"
  1998. stop-color="#fff">
  1999. <stop
  2000. offset="0"
  2001. id="stop12" />
  2002. <stop
  2003. stop-opacity="0"
  2004. offset="1"
  2005. id="stop14" />
  2006. </linearGradient>
  2007. <filter
  2008. id="i"
  2009. height="1.384"
  2010. width="1.384"
  2011. color-interpolation-filters="sRGB"
  2012. y="-.192"
  2013. x="-.192">
  2014. <feGaussianBlur
  2015. stdDeviation="5.28"
  2016. id="feGaussianBlur17" />
  2017. </filter>
  2018. <linearGradient
  2019. id="j"
  2020. y2="138.66"
  2021. xlink:href="#a"
  2022. gradientUnits="userSpaceOnUse"
  2023. x2="48"
  2024. y1="20.221"
  2025. x1="48" />
  2026. <clipPath
  2027. id="f">
  2028. <rect
  2029. rx="6"
  2030. ry="6"
  2031. height="84"
  2032. width="84"
  2033. y="6"
  2034. x="6"
  2035. fill="#fff"
  2036. id="rect21" />
  2037. </clipPath>
  2038. <linearGradient
  2039. id="d"
  2040. y2="7.0165"
  2041. gradientUnits="userSpaceOnUse"
  2042. x2="45.448"
  2043. gradientTransform="matrix(1.0059 0 0 .99417 100 0)"
  2044. y1="92.54"
  2045. x1="45.448">
  2046. <stop
  2047. offset="0"
  2048. id="stop24" />
  2049. <stop
  2050. stop-opacity=".58824"
  2051. offset="1"
  2052. id="stop26" />
  2053. </linearGradient>
  2054. <clipPath
  2055. id="g">
  2056. <rect
  2057. rx="8.0455"
  2058. ry="8.0455"
  2059. height="112.64"
  2060. width="112.64"
  2061. y="7.6818"
  2062. x="27.682"
  2063. fill="#fff"
  2064. id="rect29" />
  2065. </clipPath>
  2066. <linearGradient
  2067. id="v"
  2068. y2="6"
  2069. xlink:href="#d"
  2070. gradientUnits="userSpaceOnUse"
  2071. x2="32.251"
  2072. gradientTransform="translate(0,1)"
  2073. y1="90"
  2074. x1="32.251" />
  2075. <radialGradient
  2076. id="h"
  2077. xlink:href="#a"
  2078. gradientUnits="userSpaceOnUse"
  2079. cy="90.172"
  2080. cx="48"
  2081. gradientTransform="matrix(1.1573 0 0 .99591 -7.551 .19713)"
  2082. r="42" />
  2083. <linearGradient
  2084. id="u"
  2085. y2="63.893"
  2086. xlink:href="#a"
  2087. gradientUnits="userSpaceOnUse"
  2088. x2="36.357"
  2089. y1="6"
  2090. x1="36.357" />
  2091. <linearGradient
  2092. id="t"
  2093. y2="6"
  2094. gradientUnits="userSpaceOnUse"
  2095. x2="48"
  2096. gradientTransform="translate(.002534 .002375)"
  2097. y1="90"
  2098. x1="48">
  2099. <stop
  2100. stop-color="#8f6033"
  2101. offset="0"
  2102. id="stop35" />
  2103. <stop
  2104. stop-color="#a87849"
  2105. offset="1"
  2106. id="stop37" />
  2107. </linearGradient>
  2108. <linearGradient
  2109. id="s"
  2110. y2="31.657"
  2111. gradientUnits="userSpaceOnUse"
  2112. x2="49.996"
  2113. y1="71.738"
  2114. x1="49.996">
  2115. <stop
  2116. stop-color="#bf2222"
  2117. offset="0"
  2118. id="stop40" />
  2119. <stop
  2120. stop-color="#e94c4c"
  2121. offset="1"
  2122. id="stop42" />
  2123. </linearGradient>
  2124. <linearGradient
  2125. id="r"
  2126. y2="24"
  2127. gradientUnits="userSpaceOnUse"
  2128. x2="40"
  2129. gradientTransform="matrix(1,0,0,1.125,0,-10.5)"
  2130. y1="80"
  2131. x1="56">
  2132. <stop
  2133. stop-color="#e7e7e7"
  2134. offset="0"
  2135. id="stop45" />
  2136. <stop
  2137. stop-color="#fff"
  2138. offset="1"
  2139. id="stop47" />
  2140. </linearGradient>
  2141. <linearGradient
  2142. id="q"
  2143. y2="6"
  2144. xlink:href="#e"
  2145. gradientUnits="userSpaceOnUse"
  2146. x2="51"
  2147. gradientTransform="matrix(0,-1,1,0,42,54)"
  2148. y1="6"
  2149. x1="45" />
  2150. <linearGradient
  2151. id="p"
  2152. y2="6"
  2153. xlink:href="#e"
  2154. gradientUnits="userSpaceOnUse"
  2155. x2="52"
  2156. gradientTransform="matrix(0,1,-1,0,54,-42)"
  2157. y1="6"
  2158. x1="44" />
  2159. <linearGradient
  2160. id="o"
  2161. y2="5"
  2162. gradientUnits="userSpaceOnUse"
  2163. x2="53"
  2164. gradientTransform="matrix(0,-1,1,0,43,54)"
  2165. y1="5"
  2166. x1="43">
  2167. <stop
  2168. stop-color="#848484"
  2169. offset="0"
  2170. id="stop52" />
  2171. <stop
  2172. stop-color="#f5f5f5"
  2173. offset="1"
  2174. id="stop54" />
  2175. </linearGradient>
  2176. <linearGradient
  2177. id="n"
  2178. y2="15.055"
  2179. xlink:href="#a"
  2180. gradientUnits="userSpaceOnUse"
  2181. x2="36"
  2182. y1="6"
  2183. x1="36" />
  2184. <linearGradient
  2185. id="m"
  2186. y2="6"
  2187. gradientUnits="userSpaceOnUse"
  2188. x2="37"
  2189. y1="16"
  2190. x1="37">
  2191. <stop
  2192. stop-color="#3b3b3b"
  2193. offset="0"
  2194. id="stop58" />
  2195. <stop
  2196. stop-color="#aeaeae"
  2197. offset=".12203"
  2198. id="stop60" />
  2199. <stop
  2200. stop-color="#e9e9e9"
  2201. offset=".24519"
  2202. id="stop62" />
  2203. <stop
  2204. stop-color="#8a8a8a"
  2205. offset=".44692"
  2206. id="stop64" />
  2207. <stop
  2208. stop-color="#f0f0f0"
  2209. offset="1"
  2210. id="stop66" />
  2211. </linearGradient>
  2212. <linearGradient
  2213. id="l"
  2214. y2="5.9996"
  2215. xlink:href="#d"
  2216. gradientUnits="userSpaceOnUse"
  2217. x2="32.251"
  2218. gradientTransform="matrix(1.0238 0 0 1.0119 -1.1429 .929)"
  2219. y1="90"
  2220. x1="32.251" />
  2221. <linearGradient
  2222. id="k"
  2223. y2="90.239"
  2224. xlink:href="#d"
  2225. gradientUnits="userSpaceOnUse"
  2226. x2="32.251"
  2227. gradientTransform="matrix(1.0238,0,0,-1.0119,-1.1429,98.071)"
  2228. y1="6.1317"
  2229. x1="32.251" />
  2230. <linearGradient
  2231. id="f-3"
  2232. y2="1.0923001"
  2233. gradientUnits="userSpaceOnUse"
  2234. x2="6.6201"
  2235. gradientTransform="matrix(-3.5754836,0,0,3.0823052,74.390602,19.873355)"
  2236. y1="16.385"
  2237. x1="6.6201"
  2238. spreadMethod="pad">
  2239. <stop
  2240. stop-color="#dcdcdc"
  2241. offset="0"
  2242. id="stop27" />
  2243. <stop
  2244. stop-color="#ebebeb"
  2245. offset=".30654"
  2246. id="stop29" />
  2247. <stop
  2248. stop-color="#fff"
  2249. offset=".70706"
  2250. id="stop31" />
  2251. <stop
  2252. stop-color="#fafafa"
  2253. offset=".84501"
  2254. id="stop33" />
  2255. <stop
  2256. stop-color="#f0f0f0"
  2257. offset="1"
  2258. id="stop35-6" />
  2259. </linearGradient>
  2260. <filter
  2261. style="color-interpolation-filters:sRGB"
  2262. id="filter3899">
  2263. <feGaussianBlur
  2264. id="feGaussianBlur3901"
  2265. stdDeviation="0.57" />
  2266. </filter>
  2267. <linearGradient
  2268. x1="12"
  2269. y1="4.5"
  2270. x2="12"
  2271. y2="20.5"
  2272. id="linearGradient3182"
  2273. xlink:href="#linearGradient3655"
  2274. gradientUnits="userSpaceOnUse"
  2275. gradientTransform="matrix(4,0,0,4,0,-82)" />
  2276. <linearGradient
  2277. id="linearGradient3655">
  2278. <stop
  2279. id="stop3657"
  2280. style="stop-color:#ad0707;stop-opacity:1"
  2281. offset="0" />
  2282. <stop
  2283. id="stop3659"
  2284. style="stop-color:#f75535;stop-opacity:1"
  2285. offset="1" />
  2286. </linearGradient>
  2287. <linearGradient
  2288. id="outerBackgroundGradient-8">
  2289. <stop
  2290. style="stop-color:#465674;stop-opacity:1"
  2291. offset="0"
  2292. id="stop3864-8-6-9" />
  2293. <stop
  2294. style="stop-color:#798bac;stop-opacity:1"
  2295. offset="1"
  2296. id="stop3866-9-1-0" />
  2297. </linearGradient>
  2298. <linearGradient
  2299. id="outerBackgroundGradient-43">
  2300. <stop
  2301. style="stop-color:#2c333d;stop-opacity:1"
  2302. offset="0"
  2303. id="stop3864-8-6-744" />
  2304. <stop
  2305. style="stop-color:#485362;stop-opacity:1"
  2306. offset="1"
  2307. id="stop3866-9-1-541" />
  2308. </linearGradient>
  2309. <clipPath
  2310. clipPathUnits="userSpaceOnUse"
  2311. id="clipPath4492">
  2312. <path
  2313. id="path4494"
  2314. d="m 15.562635,9.6015624 c -3.857522,0 -6.9609379,3.1034156 -6.9609379,6.9609376 v 16.875 c 0,3.857522 3.1034159,6.960937 6.9609379,6.960937 h 16.875 c 3.857522,0 6.960937,-3.103415 6.960937,-6.960937 v -16.875 c 0,-3.857522 -3.103415,-6.9609376 -6.960937,-6.9609376 z"
  2315. style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#b35151;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
  2316. inkscape:connector-curvature="0" />
  2317. </clipPath>
  2318. <linearGradient
  2319. id="linearGradient3929">
  2320. <stop
  2321. style="stop-color:#f6a602;stop-opacity:1;"
  2322. offset="0"
  2323. id="stop3931" />
  2324. <stop
  2325. style="stop-color:#ffb621;stop-opacity:1;"
  2326. offset="1"
  2327. id="stop3933" />
  2328. </linearGradient>
  2329. <clipPath
  2330. clipPathUnits="userSpaceOnUse"
  2331. id="clipPath10483">
  2332. <path
  2333. inkscape:connector-curvature="0"
  2334. id="path10485"
  2335. d="m 84,46.500023 c -27.43126,0 -49.5,22.06873 -49.5,49.5 V 216.00002 c 0,27.43127 22.06874,49.5 49.5,49.5 h 120 c 27.43127,0 49.5,-22.06873 49.5,-49.5 V 96.000023 c 0,-27.43127 -22.06873,-49.5 -49.5,-49.5 z"
  2336. style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#bf4f4f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
  2337. </clipPath>
  2338. <clipPath
  2339. clipPathUnits="userSpaceOnUse"
  2340. id="clipPath4295">
  2341. <path
  2342. style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4299);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
  2343. d="m -429,-10.2 c -43.89002,0 -79.2,35.309971 -79.2,79.2 v 192 c 0,43.89003 35.30998,79.2 79.2,79.2 h 192 c 43.89003,0 79.2,-35.30997 79.2,-79.2 V 69 c 0,-43.890029 -35.30997,-79.2 -79.2,-79.2 z"
  2344. id="path4297"
  2345. inkscape:connector-curvature="0" />
  2346. </clipPath>
  2347. <linearGradient
  2348. inkscape:collect="always"
  2349. xlink:href="#linearGradient4259"
  2350. id="linearGradient4265"
  2351. x1="-389"
  2352. y1="333"
  2353. x2="59"
  2354. y2="333"
  2355. gradientUnits="userSpaceOnUse" />
  2356. <linearGradient
  2357. inkscape:collect="always"
  2358. id="linearGradient4259">
  2359. <stop
  2360. style="stop-color:#2ba4e2;stop-opacity:1"
  2361. offset="0"
  2362. id="stop4261" />
  2363. <stop
  2364. style="stop-color:#3dbfff;stop-opacity:1"
  2365. offset="1"
  2366. id="stop4263" />
  2367. </linearGradient>
  2368. <filter
  2369. id="i-7"
  2370. height="1.384"
  2371. width="1.384"
  2372. color-interpolation-filters="sRGB"
  2373. y="-.192"
  2374. x="-.192">
  2375. <feGaussianBlur
  2376. stdDeviation="5.28"
  2377. id="feGaussianBlur17-2" />
  2378. </filter>
  2379. <clipPath
  2380. id="f-2">
  2381. <rect
  2382. rx="6"
  2383. ry="6"
  2384. height="84"
  2385. width="84"
  2386. y="6"
  2387. x="6"
  2388. fill="#fff"
  2389. id="rect21-6" />
  2390. </clipPath>
  2391. <clipPath
  2392. id="g-6">
  2393. <rect
  2394. rx="8.0455"
  2395. ry="8.0455"
  2396. height="112.64"
  2397. width="112.64"
  2398. y="7.6818"
  2399. x="27.682"
  2400. fill="#fff"
  2401. id="rect29-1" />
  2402. </clipPath>
  2403. <radialGradient
  2404. id="h-5"
  2405. xlink:href="#a"
  2406. gradientUnits="userSpaceOnUse"
  2407. cy="90.172"
  2408. cx="48"
  2409. gradientTransform="matrix(1.1573 0 0 .99591 -7.551 .19713)"
  2410. r="42" />
  2411. <filter
  2412. style="color-interpolation-filters:sRGB"
  2413. id="filter3899-5">
  2414. <feGaussianBlur
  2415. id="feGaussianBlur3901-6"
  2416. stdDeviation="0.57" />
  2417. </filter>
  2418. <clipPath
  2419. clipPathUnits="userSpaceOnUse"
  2420. id="clipPath4492-9">
  2421. <path
  2422. id="path4494-3"
  2423. d="m 15.562635,9.6015624 c -3.857522,0 -6.9609379,3.1034156 -6.9609379,6.9609376 v 16.875 c 0,3.857522 3.1034159,6.960937 6.9609379,6.960937 h 16.875 c 3.857522,0 6.960937,-3.103415 6.960937,-6.960937 v -16.875 c 0,-3.857522 -3.103415,-6.9609376 -6.960937,-6.9609376 z"
  2424. style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#b35151;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
  2425. inkscape:connector-curvature="0" />
  2426. </clipPath>
  2427. <clipPath
  2428. clipPathUnits="userSpaceOnUse"
  2429. id="clipPath10483-8">
  2430. <path
  2431. inkscape:connector-curvature="0"
  2432. id="path10485-8"
  2433. d="m 84,46.500023 c -27.43126,0 -49.5,22.06873 -49.5,49.5 V 216.00002 c 0,27.43127 22.06874,49.5 49.5,49.5 h 120 c 27.43127,0 49.5,-22.06873 49.5,-49.5 V 96.000023 c 0,-27.43127 -22.06873,-49.5 -49.5,-49.5 z"
  2434. style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#bf4f4f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
  2435. </clipPath>
  2436. <clipPath
  2437. clipPathUnits="userSpaceOnUse"
  2438. id="clipPath4295-5">
  2439. <path
  2440. style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4299);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
  2441. d="m -429,-10.2 c -43.89002,0 -79.2,35.309971 -79.2,79.2 v 192 c 0,43.89003 35.30998,79.2 79.2,79.2 h 192 c 43.89003,0 79.2,-35.30997 79.2,-79.2 V 69 c 0,-43.890029 -35.30997,-79.2 -79.2,-79.2 z"
  2442. id="path4297-0"
  2443. inkscape:connector-curvature="0" />
  2444. </clipPath>
  2445. <rect
  2446. x="66.588691"
  2447. y="147.70443"
  2448. width="92.201096"
  2449. height="108.04266"
  2450. id="rect859-6" />
  2451. <inkscape:perspective
  2452. sodipodi:type="inkscape:persp3d"
  2453. inkscape:vp_x="-435.80566 : 418.49926 : 1"
  2454. inkscape:vp_y="2709.1236 : 1922.2699 : 0"
  2455. inkscape:vp_z="165.33007 : -566.32729 : 1"
  2456. inkscape:persp3d-origin="-415.2686 : -683.56692 : 1"
  2457. id="perspective841-1" />
  2458. <filter
  2459. id="filter6181-1"
  2460. color-interpolation-filters="sRGB">
  2461. <feGaussianBlur
  2462. id="feGaussianBlur6183-5"
  2463. stdDeviation="1.6001681" />
  2464. </filter>
  2465. <radialGradient
  2466. id="radialGradient8487-7"
  2467. gradientUnits="userSpaceOnUse"
  2468. cy="8.4498"
  2469. cx="7.4957"
  2470. gradientTransform="matrix(5.2307e-8,6.2919,-6.6561,-1.1592e-7,120.24,-34.094)"
  2471. r="20">
  2472. <stop
  2473. id="stop41892-5"
  2474. style="stop-color:#dbdbdb"
  2475. offset="0" />
  2476. <stop
  2477. id="stop41894-9"
  2478. style="stop-color:#b5b5b5"
  2479. offset=".26238" />
  2480. <stop
  2481. id="stop41896-6"
  2482. style="stop-color:#848484"
  2483. offset=".66094" />
  2484. <stop
  2485. id="stop41898-2"
  2486. style="stop-color:#585858"
  2487. offset="1" />
  2488. </radialGradient>
  2489. <linearGradient
  2490. id="linearGradient9415-8"
  2491. y2="9.8622"
  2492. xlink:href="#linearGradient3487"
  2493. spreadMethod="reflect"
  2494. gradientUnits="userSpaceOnUse"
  2495. x2="24.274"
  2496. y1="10.775"
  2497. x1="20.58" />
  2498. <linearGradient
  2499. id="linearGradient9417-5"
  2500. y2="9.7956"
  2501. xlink:href="#linearGradient3495"
  2502. spreadMethod="reflect"
  2503. gradientUnits="userSpaceOnUse"
  2504. x2="21.047"
  2505. y1="11.2"
  2506. x1="17.495" />
  2507. <linearGradient
  2508. id="linearGradient9419-7"
  2509. y2="10.732"
  2510. xlink:href="#linearGradient3503"
  2511. spreadMethod="reflect"
  2512. gradientUnits="userSpaceOnUse"
  2513. x2="16.994"
  2514. y1="13.046"
  2515. x1="14.085" />
  2516. <linearGradient
  2517. id="linearGradient9421-4"
  2518. y2="13.462"
  2519. xlink:href="#linearGradient3511"
  2520. spreadMethod="reflect"
  2521. gradientUnits="userSpaceOnUse"
  2522. x2="14.609"
  2523. y1="16.188"
  2524. x1="12.372" />
  2525. <linearGradient
  2526. id="linearGradient9423-1"
  2527. y2="20.613"
  2528. xlink:href="#linearGradient3519"
  2529. spreadMethod="reflect"
  2530. gradientUnits="userSpaceOnUse"
  2531. x2="9.7298"
  2532. y1="17.886"
  2533. x1="10.609" />
  2534. <radialGradient
  2535. id="radialGradient9455-9"
  2536. fx="14.688"
  2537. fy="37.456"
  2538. gradientUnits="userSpaceOnUse"
  2539. cy="41.059"
  2540. cx="17.059"
  2541. gradientTransform="matrix(1.9278,-0.88987,0.4265,1.7058,23.129,35.267)"
  2542. r="5.7385">
  2543. <stop
  2544. id="stop3812-7"
  2545. style="stop-color:#e4fc58"
  2546. offset="0" />
  2547. <stop
  2548. id="stop3814-5"
  2549. style="stop-color:#a3cb27"
  2550. offset=".66094" />
  2551. <stop
  2552. id="stop3816-3"
  2553. style="stop-color:#74a111"
  2554. offset="1" />
  2555. </radialGradient>
  2556. <radialGradient
  2557. id="radialGradient9458-8"
  2558. gradientUnits="userSpaceOnUse"
  2559. cy="16.98"
  2560. cx="35.294"
  2561. gradientTransform="matrix(2.9700429,-3.7594872e-8,6.3495413e-8,8.0306093,206.6256,-66.913894)"
  2562. r="12.03">
  2563. <stop
  2564. id="stop3798-8"
  2565. style="stop-color:#e4fc58"
  2566. offset="0" />
  2567. <stop
  2568. id="stop3800-3"
  2569. style="stop-color:#a3cb27"
  2570. offset=".32453" />
  2571. <stop
  2572. id="stop3802-1"
  2573. style="stop-color:#74a111"
  2574. offset="1" />
  2575. </radialGradient>
  2576. <radialGradient
  2577. id="radialGradient9463-6"
  2578. gradientUnits="userSpaceOnUse"
  2579. cy="4.625"
  2580. cx="62.625"
  2581. gradientTransform="matrix(1.7754,0,0,0.83422,-44.275,91.778)"
  2582. r="10.625">
  2583. <stop
  2584. id="stop8840-4"
  2585. offset="0" />
  2586. <stop
  2587. id="stop8842-3"
  2588. style="stop-opacity:0"
  2589. offset="1" />
  2590. </radialGradient>
  2591. <radialGradient
  2592. id="radialGradient9494-8"
  2593. gradientUnits="userSpaceOnUse"
  2594. cy="41.636"
  2595. cx="23.335"
  2596. gradientTransform="matrix(1.7236,0,0,0.50919,23.781,68.231)"
  2597. r="22.627">
  2598. <stop
  2599. id="stop23421-8"
  2600. offset="0" />
  2601. <stop
  2602. id="stop23423-9"
  2603. style="stop-opacity:0"
  2604. offset="1" />
  2605. </radialGradient>
  2606. <path
  2607. id="Square_6_"
  2608. d="M147.318,181.079L20.895,161.048c-6.546-1.037-11.011-7.184-9.974-13.73L30.952,20.895 c1.037-6.546,7.184-11.011,13.73-9.974l126.423,20.032c6.546,1.037,11.011,7.184,9.974,13.73l-20.032,126.423 C160.01,177.651,153.863,182.117,147.318,181.079z" />
  2609. <path
  2610. id="SVGID_1_"
  2611. d="M171.956,31.132C171.51,24.911,166.334,20,160,20h-58.016l-57.301-9.079 c-6.256-0.991-12.136,3.049-13.551,9.123C24.911,20.49,20,25.666,20,32v58.016l-9.079,57.301 c-0.991,6.256,3.049,12.136,9.123,13.551C20.49,167.089,25.666,172,32,172h58.016l57.301,9.079 c6.256,0.991,12.136-3.049,13.551-9.123C167.089,171.51,172,166.334,172,160v-58.016l9.079-57.301 C182.071,38.426,178.03,32.546,171.956,31.132z" />
  2612. <path
  2613. id="Square_8_"
  2614. d="M160,172H32c-6.627,0-12-5.373-12-12V32c0-6.627,5.373-12,12-12h128c6.627,0,12,5.373,12,12v128 C172,166.627,166.627,172,160,172z" />
  2615. <path
  2616. id="SVGID_3_"
  2617. d="M181.076,147.323L172,90.019V32c0-6.333-4.909-11.507-11.128-11.956 c-1.416-6.072-7.295-10.111-13.549-9.12L90.019,20H32c-6.333,0-11.507,4.909-11.956,11.127 c-6.072,1.416-10.111,7.295-9.12,13.549L20,101.981V160c0,6.333,4.909,11.507,11.128,11.956 c1.416,6.072,7.295,10.111,13.549,9.12L101.981,172H160c6.333,0,11.507-4.909,11.956-11.128 C178.028,159.457,182.067,153.578,181.076,147.323z" />
  2618. <path
  2619. id="Square_4_"
  2620. d="M171.101,161.053L44.677,181.076c-6.546,1.037-12.693-3.429-13.729-9.975L10.924,44.677 c-1.037-6.546,3.429-12.693,9.975-13.729l126.424-20.024c6.546-1.037,12.693,3.429,13.729,9.975l20.024,126.424 C182.113,153.869,177.647,160.016,171.101,161.053z" />
  2621. <path
  2622. id="SVGID_5_"
  2623. d="M171.961,31.133c-0.001,0-0.002-0.001-0.003-0.001c0-0.001,0-0.002,0-0.003l-11.085-11.085 c0.066,0.282,0.134,0.564,0.18,0.855l1.375,8.678l1.307,8.251L172,90.019v0l0.948,5.984l8.132-51.32 c0.25-1.578,0.178-3.131-0.164-4.595L171.961,31.133z" />
  2624. <linearGradient
  2625. id="linearGradient3766"
  2626. osb:paint="gradient">
  2627. <stop
  2628. style="stop-color:#a8bb03;stop-opacity:1;"
  2629. offset="0"
  2630. id="stop3768" />
  2631. <stop
  2632. style="stop-color:#b5b900;stop-opacity:1;"
  2633. offset="1"
  2634. id="stop3770" />
  2635. </linearGradient>
  2636. <linearGradient
  2637. gradientUnits="userSpaceOnUse"
  2638. xlink:href="#linearGradient6455-7-3-3-2"
  2639. id="linearGradient5701-5"
  2640. y2="37.809635"
  2641. x2="34.130882"
  2642. y1="41.608219"
  2643. x1="38.851257" />
  2644. <linearGradient
  2645. id="linearGradient6455-7-3-3-2">
  2646. <stop
  2647. offset="0"
  2648. style="stop-color:#fbac9b;stop-opacity:1"
  2649. id="stop6457-5-1-10-5" />
  2650. <stop
  2651. offset="1"
  2652. style="stop-color:#fcfafc;stop-opacity:1"
  2653. id="stop6459-8-9-7-0" />
  2654. </linearGradient>
  2655. <linearGradient
  2656. gradientUnits="userSpaceOnUse"
  2657. xlink:href="#linearGradient6413-0-0-0-9"
  2658. id="linearGradient5699-5"
  2659. y2="37.809635"
  2660. x2="34.130882"
  2661. y1="41.608219"
  2662. x1="38.851257" />
  2663. <linearGradient
  2664. id="linearGradient6413-0-0-0-9">
  2665. <stop
  2666. offset="0"
  2667. style="stop-color:#feffff;stop-opacity:1"
  2668. id="stop6415-1-7-3-8" />
  2669. <stop
  2670. offset="1"
  2671. style="stop-color:#fe70ca;stop-opacity:1"
  2672. id="stop6417-4-9-2-3" />
  2673. </linearGradient>
  2674. <radialGradient
  2675. gradientUnits="userSpaceOnUse"
  2676. xlink:href="#linearGradient6036"
  2677. id="radialGradient5697-4"
  2678. fy="39.708927"
  2679. fx="36.49107"
  2680. r="3.1589286"
  2681. cy="39.708927"
  2682. cx="36.49107" />
  2683. <radialGradient
  2684. gradientUnits="userSpaceOnUse"
  2685. xlink:href="#linearGradient6036"
  2686. id="radialGradient5695-8"
  2687. fy="39.708927"
  2688. fx="36.49107"
  2689. r="3.1589286"
  2690. cy="39.708927"
  2691. cx="36.49107" />
  2692. <radialGradient
  2693. gradientUnits="userSpaceOnUse"
  2694. xlink:href="#linearGradient6036"
  2695. id="radialGradient5693-2"
  2696. fy="39.708927"
  2697. fx="36.49107"
  2698. r="3.1589286"
  2699. cy="39.708927"
  2700. cx="36.49107" />
  2701. <radialGradient
  2702. gradientTransform="matrix(2.0664963,0,0,2.0664963,-34.525221,-33.493375)"
  2703. gradientUnits="userSpaceOnUse"
  2704. xlink:href="#linearGradient6088-6-1-0-06-8"
  2705. id="radialGradient5691-8"
  2706. fy="31.405056"
  2707. fx="32.372566"
  2708. r="3.857446"
  2709. cy="31.405056"
  2710. cx="32.372566" />
  2711. <linearGradient
  2712. id="linearGradient6088-6-1-0-06-8">
  2713. <stop
  2714. offset="0"
  2715. style="stop-color:#ff54d2;stop-opacity:0"
  2716. id="stop6090-2-0-4-9-4" />
  2717. <stop
  2718. offset="0.32368398"
  2719. style="stop-color:#ff54d2;stop-opacity:0"
  2720. id="stop6257-4-6-1-76-0" />
  2721. <stop
  2722. offset="0.56140333"
  2723. style="stop-color:#ff54d2;stop-opacity:0.2521739"
  2724. id="stop6255-3-6-7-23-8" />
  2725. <stop
  2726. offset="1"
  2727. style="stop-color:#ff54d2;stop-opacity:0.47826087"
  2728. id="stop6092-9-6-8-9-2" />
  2729. </linearGradient>
  2730. <radialGradient
  2731. gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)"
  2732. gradientUnits="userSpaceOnUse"
  2733. xlink:href="#linearGradient6191-8-3-4-5-4"
  2734. id="radialGradient5689-3"
  2735. fy="31.405056"
  2736. fx="32.372566"
  2737. r="3.857446"
  2738. cy="31.405056"
  2739. cx="32.372566" />
  2740. <linearGradient
  2741. id="linearGradient6191-8-3-4-5-4">
  2742. <stop
  2743. offset="0"
  2744. style="stop-color:#ffffff;stop-opacity:0"
  2745. id="stop6193-75-7-6-4-2" />
  2746. <stop
  2747. offset="0.40531859"
  2748. style="stop-color:#ffffff;stop-opacity:0"
  2749. id="stop6197-3-4-1-4-8" />
  2750. <stop
  2751. offset="1"
  2752. style="stop-color:#ffffff;stop-opacity:0.47826087"
  2753. id="stop6195-7-2-5-7-8" />
  2754. </linearGradient>
  2755. <radialGradient
  2756. gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)"
  2757. gradientUnits="userSpaceOnUse"
  2758. xlink:href="#linearGradient6191-8-3-4-5-4"
  2759. id="radialGradient5687-9"
  2760. fy="31.405056"
  2761. fx="32.372566"
  2762. r="3.857446"
  2763. cy="31.405056"
  2764. cx="32.372566" />
  2765. <radialGradient
  2766. gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)"
  2767. gradientUnits="userSpaceOnUse"
  2768. xlink:href="#linearGradient6191-8-3-4-5-4"
  2769. id="radialGradient5685-6"
  2770. fy="31.405056"
  2771. fx="32.372566"
  2772. r="3.857446"
  2773. cy="31.405056"
  2774. cx="32.372566" />
  2775. <linearGradient
  2776. gradientTransform="matrix(0.05404846,0,0,0.04053616,32.383161,32.92865)"
  2777. gradientUnits="userSpaceOnUse"
  2778. xlink:href="#linearGradient6036"
  2779. id="linearGradient5713-5"
  2780. y2="65.922028"
  2781. x2="68.313301"
  2782. y1="52.925316"
  2783. x1="68.313301" />
  2784. <linearGradient
  2785. gradientUnits="userSpaceOnUse"
  2786. xlink:href="#linearGradient4316-4-6-6-4-5-1"
  2787. id="linearGradient5735-1"
  2788. y2="48.983677"
  2789. x2="92.696327"
  2790. y1="16.554602"
  2791. x1="92.696327" />
  2792. <linearGradient
  2793. id="linearGradient4316-4-6-6-4-5-1">
  2794. <stop
  2795. offset="0"
  2796. style="stop-color:#ffffff;stop-opacity:1"
  2797. id="stop4318-4-4-6-5-3-0" />
  2798. <stop
  2799. offset="0.33799788"
  2800. style="stop-color:#ffffff;stop-opacity:0.23529412"
  2801. id="stop4320-2-2-6-59-35-1" />
  2802. <stop
  2803. offset="0.61996669"
  2804. style="stop-color:#ffffff;stop-opacity:0.15686275"
  2805. id="stop4322-4-5-5-0-1-8" />
  2806. <stop
  2807. offset="1"
  2808. style="stop-color:#ffffff;stop-opacity:0.39215687"
  2809. id="stop4324-4-1-5-5-42-0" />
  2810. </linearGradient>
  2811. <radialGradient
  2812. gradientTransform="matrix(2.0664963,0,0,2.0664963,-34.525221,-33.493375)"
  2813. gradientUnits="userSpaceOnUse"
  2814. xlink:href="#linearGradient6088-74-4-8-8"
  2815. id="radialGradient5679-1"
  2816. fy="31.405056"
  2817. fx="32.372566"
  2818. r="3.857446"
  2819. cy="31.405056"
  2820. cx="32.372566" />
  2821. <linearGradient
  2822. id="linearGradient6088-74-4-8-8">
  2823. <stop
  2824. offset="0"
  2825. style="stop-color:#ff54d2;stop-opacity:0"
  2826. id="stop6090-5-66-7-7" />
  2827. <stop
  2828. offset="0.32368398"
  2829. style="stop-color:#f62b68;stop-opacity:1"
  2830. id="stop6257-5-4-6-4" />
  2831. <stop
  2832. offset="0.56140333"
  2833. style="stop-color:#ff0105;stop-opacity:1"
  2834. id="stop6255-6-7-9-7" />
  2835. <stop
  2836. offset="1"
  2837. style="stop-color:#ff54d2;stop-opacity:0.47826087"
  2838. id="stop6092-0-22-2-1" />
  2839. </linearGradient>
  2840. <radialGradient
  2841. gradientTransform="matrix(0.19553888,-2.9157311e-8,2.7395628e-8,0.18372271,17.229421,18.403041)"
  2842. gradientUnits="userSpaceOnUse"
  2843. xlink:href="#linearGradient4278-3-5-5-9"
  2844. id="radialGradient5720-8"
  2845. fy="95.388451"
  2846. fx="95.838364"
  2847. r="9.4981718"
  2848. cy="95.388451"
  2849. cx="95.838364" />
  2850. <linearGradient
  2851. id="linearGradient4278-3-5-5-9">
  2852. <stop
  2853. offset="0"
  2854. style="stop-color:#000000;stop-opacity:0"
  2855. id="stop4280-6-90-6-3" />
  2856. <stop
  2857. offset="0.5"
  2858. style="stop-color:#000000;stop-opacity:0"
  2859. id="stop4286-1-9-5-7" />
  2860. <stop
  2861. offset="1"
  2862. style="stop-color:#000000;stop-opacity:1"
  2863. id="stop4282-24-4-0-5" />
  2864. </linearGradient>
  2865. <radialGradient
  2866. gradientTransform="matrix(0,0.2344161,-0.30942651,0,37.234491,28.249571)"
  2867. gradientUnits="userSpaceOnUse"
  2868. xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-691-4-22-1-2"
  2869. id="radialGradient5723-3"
  2870. r="20.396999"
  2871. cy="3.99"
  2872. cx="23.896" />
  2873. <linearGradient
  2874. id="linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-691-4-22-1-2">
  2875. <stop
  2876. offset="0"
  2877. style="stop-color:#612f91;stop-opacity:1"
  2878. id="stop7191-4-6-8-8" />
  2879. <stop
  2880. offset="1"
  2881. style="stop-color:#1a4aa2;stop-opacity:1"
  2882. id="stop7197-2-8-6-5" />
  2883. </linearGradient>
  2884. <linearGradient
  2885. gradientTransform="matrix(0.09821987,0,0,0.09821945,33.642581,33.642799)"
  2886. gradientUnits="userSpaceOnUse"
  2887. xlink:href="#linearGradient3087-408-5-3-7-9"
  2888. id="linearGradient5726-9"
  2889. y2="45.368999"
  2890. x2="7.0776"
  2891. y1="3.0816"
  2892. x1="7.0776" />
  2893. <linearGradient
  2894. gradientTransform="matrix(0.22110724,0,0,0.22110728,6.6934256,6.693263)"
  2895. gradientUnits="userSpaceOnUse"
  2896. id="linearGradient3087-408-5-3-7-9"
  2897. y2="45.368999"
  2898. x2="7.0776"
  2899. y1="3.0816"
  2900. x1="7.0776">
  2901. <stop
  2902. offset="0"
  2903. style="stop-color:#170418;stop-opacity:1"
  2904. id="stop7201-5-71-3-5" />
  2905. <stop
  2906. offset="1"
  2907. style="stop-color:#50386b;stop-opacity:1"
  2908. id="stop7203-2-8-8-5" />
  2909. </linearGradient>
  2910. <radialGradient
  2911. gradientTransform="matrix(0,0.6733571,-1.5511106,0,68.944331,10.850549)"
  2912. gradientUnits="userSpaceOnUse"
  2913. xlink:href="#linearGradient6042-1-7-8-8"
  2914. id="radialGradient5731-0"
  2915. fy="21.239277"
  2916. fx="31.999998"
  2917. r="10.498171"
  2918. cy="21.239277"
  2919. cx="31.999998" />
  2920. <linearGradient
  2921. id="linearGradient6042-1-7-8-8">
  2922. <stop
  2923. offset="0"
  2924. style="stop-color:#07132d;stop-opacity:1"
  2925. id="stop6044-9-6-3-6" />
  2926. <stop
  2927. offset="1"
  2928. style="stop-color:#425479;stop-opacity:1"
  2929. id="stop6046-9-5-1-2" />
  2930. </linearGradient>
  2931. <radialGradient
  2932. gradientTransform="matrix(0,1.9804002,-1.9804002,0,123.92313,-164.4618)"
  2933. gradientUnits="userSpaceOnUse"
  2934. xlink:href="#linearGradient4507-6-5-9-8"
  2935. id="radialGradient5441-6"
  2936. fy="16.447752"
  2937. fx="91.349998"
  2938. r="15.639286"
  2939. cy="16.447752"
  2940. cx="91.349998" />
  2941. <linearGradient
  2942. id="linearGradient4507-6-5-9-8">
  2943. <stop
  2944. offset="0"
  2945. style="stop-color:#2d3955;stop-opacity:1"
  2946. id="stop4509-3-8-8-5" />
  2947. <stop
  2948. offset="0.72468865"
  2949. style="stop-color:#2b3853;stop-opacity:1"
  2950. id="stop5959-4-45-4-7" />
  2951. <stop
  2952. offset="0.75"
  2953. style="stop-color:#192640;stop-opacity:1"
  2954. id="stop5961-1-7-2-5" />
  2955. <stop
  2956. offset="1"
  2957. style="stop-color:#08142e;stop-opacity:1"
  2958. id="stop4511-1-0-8-9" />
  2959. </linearGradient>
  2960. <linearGradient
  2961. gradientUnits="userSpaceOnUse"
  2962. xlink:href="#linearGradient4220-7-2-0-5"
  2963. id="linearGradient5407-1"
  2964. y2="48.631081"
  2965. x2="91.566116"
  2966. y1="16.542858"
  2967. x1="91.566116" />
  2968. <linearGradient
  2969. id="linearGradient4220-7-2-0-5">
  2970. <stop
  2971. offset="0"
  2972. style="stop-color:#7a8498;stop-opacity:1"
  2973. id="stop4222-7-5-5-4" />
  2974. <stop
  2975. offset="1"
  2976. style="stop-color:#34405c;stop-opacity:1"
  2977. id="stop4224-0-5-2-0" />
  2978. </linearGradient>
  2979. <linearGradient
  2980. gradientTransform="matrix(0.37500007,0,0,0.37499833,16.757001,24.000191)"
  2981. gradientUnits="userSpaceOnUse"
  2982. xlink:href="#linearGradient4164-9-2-4"
  2983. id="linearGradient5397-1"
  2984. y2="56.114563"
  2985. x2="51.199997"
  2986. y1="8.1142893"
  2987. x1="51.199997" />
  2988. <linearGradient
  2989. id="linearGradient4164-9-2-4">
  2990. <stop
  2991. offset="0"
  2992. style="stop-color:#b6b6b6;stop-opacity:1"
  2993. id="stop4166-3-2-5" />
  2994. <stop
  2995. offset="0.33095336"
  2996. style="stop-color:#a4a4a4;stop-opacity:1"
  2997. id="stop4216-6-7-6" />
  2998. <stop
  2999. offset="1"
  3000. style="stop-color:#c5c5c5;stop-opacity:1"
  3001. id="stop4168-0-3-8" />
  3002. </linearGradient>
  3003. <linearGradient
  3004. gradientTransform="matrix(0.78776,0,0,0.78776,-20.857591,14.047705)"
  3005. gradientUnits="userSpaceOnUse"
  3006. xlink:href="#linearGradient4806-2-9-2"
  3007. id="linearGradient5400-4"
  3008. y2="40.495617"
  3009. x2="71.204407"
  3010. y1="15.369057"
  3011. x1="71.204407" />
  3012. <linearGradient
  3013. id="linearGradient4806-2-9-2">
  3014. <stop
  3015. offset="0"
  3016. style="stop-color:#ffffff;stop-opacity:1"
  3017. id="stop4808-4-6-7" />
  3018. <stop
  3019. offset="0.42447853"
  3020. style="stop-color:#ffffff;stop-opacity:0.23529412"
  3021. id="stop4810-0-9-3" />
  3022. <stop
  3023. offset="0.82089913"
  3024. style="stop-color:#ffffff;stop-opacity:0.15686275"
  3025. id="stop4812-8-7-9" />
  3026. <stop
  3027. offset="1"
  3028. style="stop-color:#ffffff;stop-opacity:0.39215687"
  3029. id="stop4814-0-7-4" />
  3030. </linearGradient>
  3031. <radialGradient
  3032. gradientTransform="matrix(0,1.4794679,-1.9528714,0,43.792011,-10.070966)"
  3033. gradientUnits="userSpaceOnUse"
  3034. xlink:href="#radialGradient3093-0-3-6-6-0-8"
  3035. id="radialGradient6657"
  3036. fy="3.99"
  3037. fx="23.896"
  3038. r="20.396999"
  3039. cy="3.99"
  3040. cx="23.896" />
  3041. <radialGradient
  3042. gradientTransform="matrix(0,1.2316483,-1.625754,0,18.486966,-28.721977)"
  3043. gradientUnits="userSpaceOnUse"
  3044. id="radialGradient3093-0-3-6-6-0-8"
  3045. r="20.396999"
  3046. cy="3.99"
  3047. cx="23.896">
  3048. <stop
  3049. offset="0"
  3050. style="stop-color:#ffffff;stop-opacity:1"
  3051. id="stop3244-9-33-7-0-9-5-0" />
  3052. <stop
  3053. offset="0.26238"
  3054. style="stop-color:#dddddd;stop-opacity:1"
  3055. id="stop3246-3-5-0-8-5-0-0" />
  3056. <stop
  3057. offset="0.66093999"
  3058. style="stop-color:#abacae;stop-opacity:1"
  3059. id="stop3248-1-7-8-8-1-0-6" />
  3060. <stop
  3061. offset="1"
  3062. style="stop-color:#89898b;stop-opacity:1"
  3063. id="stop3250-9-3-0-5-1-2-1" />
  3064. </radialGradient>
  3065. <radialGradient
  3066. gradientTransform="matrix(0.94117645,0,0,0.23529375,-22.941181,44.41176)"
  3067. gradientUnits="userSpaceOnUse"
  3068. xlink:href="#radialGradient3109-3"
  3069. id="radialGradient3169-1"
  3070. r="10.625"
  3071. cy="4.625"
  3072. cx="62.625" />
  3073. <radialGradient
  3074. gradientTransform="matrix(1.1294118,0,0,0.2823525,-58.729414,19.694118)"
  3075. gradientUnits="userSpaceOnUse"
  3076. id="radialGradient3109-3"
  3077. r="10.625"
  3078. cy="4.625"
  3079. cx="62.625">
  3080. <stop
  3081. offset="0"
  3082. style="stop-color:#000000;stop-opacity:1"
  3083. id="stop8840-3-7" />
  3084. <stop
  3085. offset="1"
  3086. style="stop-color:#000000;stop-opacity:0"
  3087. id="stop8842-5-0" />
  3088. </radialGradient>
  3089. <linearGradient
  3090. gradientTransform="matrix(0.15070105,0,0,0.15182597,40.329191,20.187484)"
  3091. gradientUnits="userSpaceOnUse"
  3092. xlink:href="#linearGradient4574-39-1"
  3093. id="linearGradient6598-5"
  3094. y2="88.801025"
  3095. x2="-175.25337"
  3096. y1="113.97943"
  3097. x1="-184.92441" />
  3098. <linearGradient
  3099. id="linearGradient4574-39-1">
  3100. <stop
  3101. offset="0"
  3102. style="stop-color:#7a0f01;stop-opacity:1"
  3103. id="stop4576-75-8" />
  3104. <stop
  3105. offset="1"
  3106. style="stop-color:#d31807;stop-opacity:1"
  3107. id="stop4578-96-3" />
  3108. </linearGradient>
  3109. <linearGradient
  3110. gradientUnits="userSpaceOnUse"
  3111. xlink:href="#linearGradient4470-86-9"
  3112. id="linearGradient4478-4-9"
  3113. y2="75.190559"
  3114. x2="-208.49672"
  3115. y1="88.750069"
  3116. x1="-211.28862" />
  3117. <linearGradient
  3118. id="linearGradient4470-86-9">
  3119. <stop
  3120. offset="0"
  3121. style="stop-color:#ec4502;stop-opacity:1"
  3122. id="stop4472-0-4" />
  3123. <stop
  3124. offset="1"
  3125. style="stop-color:#fe7617;stop-opacity:1"
  3126. id="stop4474-9-9" />
  3127. </linearGradient>
  3128. <linearGradient
  3129. gradientTransform="matrix(0.23682313,0,0,0.23897582,54.815171,17.241527)"
  3130. gradientUnits="userSpaceOnUse"
  3131. xlink:href="#linearGradient3871-6-7"
  3132. id="linearGradient6785"
  3133. y2="38.561256"
  3134. x2="-107.45584"
  3135. y1="-37.385227"
  3136. x1="-107.45584" />
  3137. <linearGradient
  3138. id="linearGradient3871-6-7">
  3139. <stop
  3140. offset="0"
  3141. style="stop-color:#0b85e9;stop-opacity:1"
  3142. id="stop3873-3-2" />
  3143. <stop
  3144. offset="1"
  3145. style="stop-color:#69d1ef;stop-opacity:1"
  3146. id="stop3875-4-0" />
  3147. </linearGradient>
  3148. <linearGradient
  3149. gradientTransform="matrix(0.23682313,0,0,0.23897582,54.815171,17.241527)"
  3150. gradientUnits="userSpaceOnUse"
  3151. xlink:href="#linearGradient3825-5-8-9"
  3152. id="linearGradient6790"
  3153. y2="39.991924"
  3154. x2="-96.557358"
  3155. y1="110.92493"
  3156. x1="-96.557358" />
  3157. <linearGradient
  3158. id="linearGradient3825-5-8-9">
  3159. <stop
  3160. offset="0"
  3161. style="stop-color:#e89c42;stop-opacity:1"
  3162. id="stop3827-2-3-55" />
  3163. <stop
  3164. offset="1"
  3165. style="stop-color:#faca67;stop-opacity:1"
  3166. id="stop3829-5-0-1" />
  3167. </linearGradient>
  3168. <linearGradient
  3169. gradientTransform="matrix(1.0540541,0,0,0.83783781,-1.2972891,5.8918999)"
  3170. gradientUnits="userSpaceOnUse"
  3171. xlink:href="#linearGradient3977-7-61"
  3172. id="linearGradient3174-3"
  3173. y2="43"
  3174. x2="23.99999"
  3175. y1="5.5641499"
  3176. x1="23.99999" />
  3177. <linearGradient
  3178. id="linearGradient3977-7-61">
  3179. <stop
  3180. offset="0"
  3181. style="stop-color:#ffffff;stop-opacity:1"
  3182. id="stop3979-6-49" />
  3183. <stop
  3184. offset="0.03626217"
  3185. style="stop-color:#ffffff;stop-opacity:0.23529412"
  3186. id="stop3981-3-78" />
  3187. <stop
  3188. offset="0.95056331"
  3189. style="stop-color:#ffffff;stop-opacity:0.15686275"
  3190. id="stop3983-8-86" />
  3191. <stop
  3192. offset="1"
  3193. style="stop-color:#ffffff;stop-opacity:0.39215687"
  3194. id="stop3985-2-07" />
  3195. </linearGradient>
  3196. <linearGradient
  3197. gradientTransform="matrix(1.1428545,0,0,0.69530686,-3.4285091,8.2459499)"
  3198. gradientUnits="userSpaceOnUse"
  3199. xlink:href="#linearGradient3600-9-51"
  3200. id="linearGradient3182-6"
  3201. y2="47.013336"
  3202. x2="25.132275"
  3203. y1="0.98520643"
  3204. x1="25.132275" />
  3205. <linearGradient
  3206. id="linearGradient3600-9-51">
  3207. <stop
  3208. offset="0"
  3209. style="stop-color:#f4f4f4;stop-opacity:1"
  3210. id="stop3602-0-0" />
  3211. <stop
  3212. offset="1"
  3213. style="stop-color:#dbdbdb;stop-opacity:1"
  3214. id="stop3604-9-04" />
  3215. </linearGradient>
  3216. <linearGradient
  3217. gradientTransform="matrix(0.99682577,5.6082336e-4,2.043022e-4,0.71682639,121.08747,4.8432599)"
  3218. gradientUnits="userSpaceOnUse"
  3219. xlink:href="#linearGradient4623-7-15"
  3220. id="linearGradient3185-6"
  3221. y2="52.887863"
  3222. x2="-76.844345"
  3223. y1="6.6805849"
  3224. x1="-76.834877" />
  3225. <linearGradient
  3226. id="linearGradient4623-7-15">
  3227. <stop
  3228. offset="0"
  3229. style="stop-color:#000000;stop-opacity:0.27058825"
  3230. id="stop4625-3-7" />
  3231. <stop
  3232. offset="1"
  3233. style="stop-color:#000000;stop-opacity:0.368"
  3234. id="stop4627-1-42" />
  3235. </linearGradient>
  3236. <linearGradient
  3237. gradientTransform="matrix(0.99352183,0.26504064,-0.20865372,0.77527588,5.1631609,-0.9676401)"
  3238. gradientUnits="userSpaceOnUse"
  3239. xlink:href="#linearGradient3977-7-61"
  3240. id="linearGradient3188-3"
  3241. y2="43"
  3242. x2="23.99999"
  3243. y1="5.5641499"
  3244. x1="23.99999" />
  3245. <linearGradient
  3246. gradientTransform="matrix(1.0786784,0.28775775,-0.17353123,0.64477442,2.5426809,0.6300199)"
  3247. gradientUnits="userSpaceOnUse"
  3248. xlink:href="#linearGradient3600-9-51"
  3249. id="linearGradient3192-0"
  3250. y2="47.013336"
  3251. x2="25.132275"
  3252. y1="0.98520643"
  3253. x1="25.132275" />
  3254. <linearGradient
  3255. gradientTransform="matrix(0.94191741,0.25183272,-0.17907033,0.66612446,121.0441,28.81807)"
  3256. gradientUnits="userSpaceOnUse"
  3257. xlink:href="#linearGradient4623-7-15"
  3258. id="linearGradient3195-4"
  3259. y2="52.887863"
  3260. x2="-76.844345"
  3261. y1="6.6805849"
  3262. x1="-76.834877" />
  3263. <radialGradient
  3264. gradientTransform="matrix(0.92701214,0,0,0.06268357,4.0977309,40.46568)"
  3265. gradientUnits="userSpaceOnUse"
  3266. xlink:href="#linearGradient4623-7-15"
  3267. id="radialGradient3814"
  3268. fy="40.430397"
  3269. fx="19.53446"
  3270. r="23.929714"
  3271. cy="40.430397"
  3272. cx="19.53446" />
  3273. <filter
  3274. inkscape:label="filter3"
  3275. id="filter4604"
  3276. style="color-interpolation-filters:sRGB" />
  3277. <filter
  3278. inkscape:label="filter4"
  3279. id="filter4606"
  3280. style="color-interpolation-filters:sRGB">
  3281. <feBlend
  3282. in2="SourceGraphic"
  3283. id="feBlend4608"
  3284. mode="normal" />
  3285. </filter>
  3286. <linearGradient
  3287. id="linearGradient4545">
  3288. <stop
  3289. offset="0"
  3290. style="stop-color:#3d3d3d;stop-opacity:0"
  3291. id="stop4547" />
  3292. <stop
  3293. offset="1"
  3294. style="stop-color:#373d40;stop-opacity:0.59893048"
  3295. id="stop4551" />
  3296. </linearGradient>
  3297. <linearGradient
  3298. id="linearGradient3924-1">
  3299. <stop
  3300. offset="0"
  3301. style="stop-color:#ffffff;stop-opacity:1"
  3302. id="stop3926-3" />
  3303. <stop
  3304. offset="0.06316455"
  3305. style="stop-color:#ffffff;stop-opacity:0.23529412"
  3306. id="stop3928-91" />
  3307. <stop
  3308. offset="0.95056331"
  3309. style="stop-color:#ffffff;stop-opacity:0.15686275"
  3310. id="stop3930-6" />
  3311. <stop
  3312. offset="1"
  3313. style="stop-color:#ffffff;stop-opacity:0.39215687"
  3314. id="stop3932-6" />
  3315. </linearGradient>
  3316. <linearGradient
  3317. id="linearGradient27416-1-2-2">
  3318. <stop
  3319. offset="0"
  3320. style="stop-color:#55c1ec;stop-opacity:1"
  3321. id="stop27420-2-0-2" />
  3322. <stop
  3323. offset="1"
  3324. style="stop-color:#3689e6;stop-opacity:1"
  3325. id="stop27422-3-5-1" />
  3326. </linearGradient>
  3327. <linearGradient
  3328. id="linearGradient4632-92-3-0-8-1-6">
  3329. <stop
  3330. offset="0"
  3331. style="stop-color:#fafafa;stop-opacity:1"
  3332. id="stop4634-68-8-0-2-9-1" />
  3333. <stop
  3334. offset="1"
  3335. style="stop-color:#e1e1e1;stop-opacity:1"
  3336. id="stop4636-8-21-7-1-4-9" />
  3337. </linearGradient>
  3338. <radialGradient
  3339. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
  3340. gradientUnits="userSpaceOnUse"
  3341. xlink:href="#linearGradient3688-166-749"
  3342. id="radialGradient3013"
  3343. fy="43.5"
  3344. fx="4.9929786"
  3345. r="2.5"
  3346. cy="43.5"
  3347. cx="4.9929786" />
  3348. <linearGradient
  3349. id="linearGradient3688-166-749">
  3350. <stop
  3351. offset="0"
  3352. style="stop-color:#181818;stop-opacity:1"
  3353. id="stop2883" />
  3354. <stop
  3355. offset="1"
  3356. style="stop-color:#181818;stop-opacity:0"
  3357. id="stop2885" />
  3358. </linearGradient>
  3359. <radialGradient
  3360. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
  3361. gradientUnits="userSpaceOnUse"
  3362. xlink:href="#linearGradient3688-166-749"
  3363. id="radialGradient3015"
  3364. fy="43.5"
  3365. fx="4.9929786"
  3366. r="2.5"
  3367. cy="43.5"
  3368. cx="4.9929786" />
  3369. <linearGradient
  3370. id="linearGradient3702-501-757">
  3371. <stop
  3372. offset="0"
  3373. style="stop-color:#181818;stop-opacity:0"
  3374. id="stop2895" />
  3375. <stop
  3376. offset="0.5"
  3377. style="stop-color:#181818;stop-opacity:1"
  3378. id="stop2897" />
  3379. <stop
  3380. offset="1"
  3381. style="stop-color:#181818;stop-opacity:0"
  3382. id="stop2899" />
  3383. </linearGradient>
  3384. <linearGradient
  3385. gradientUnits="userSpaceOnUse"
  3386. xlink:href="#linearGradient3702-501-757"
  3387. id="linearGradient4387"
  3388. y2="39.999443"
  3389. x2="25.058096"
  3390. y1="47.027729"
  3391. x1="25.058096" />
  3392. <linearGradient
  3393. id="linearGradient4011-9-9-70-61-7">
  3394. <stop
  3395. offset="0"
  3396. style="stop-color:#ffffff;stop-opacity:1;"
  3397. id="stop4013-5-4-3-8-3" />
  3398. <stop
  3399. id="stop4015-1-5-70-9-5"
  3400. style="stop-color:#ffffff;stop-opacity:0.23529412;"
  3401. offset="0.507761" />
  3402. <stop
  3403. offset="0.83456558"
  3404. style="stop-color:#ffffff;stop-opacity:0.15686275;"
  3405. id="stop4017-7-0-13-0-1" />
  3406. <stop
  3407. offset="1"
  3408. style="stop-color:#ffffff;stop-opacity:0.39215687;"
  3409. id="stop4019-1-12-7-0-7" />
  3410. </linearGradient>
  3411. <linearGradient
  3412. id="linearGradient4215-8-4-07-7">
  3413. <stop
  3414. id="stop4217-1-2-1-2"
  3415. offset="0"
  3416. style="stop-color:#e9e9e9;stop-opacity:1;" />
  3417. <stop
  3418. id="stop4219-3-4-0-96"
  3419. offset="1"
  3420. style="stop-color:#ffffff;stop-opacity:1;" />
  3421. </linearGradient>
  3422. <radialGradient
  3423. cx="4.9929786"
  3424. cy="43.5"
  3425. r="2.5"
  3426. fx="4.9929786"
  3427. fy="43.5"
  3428. id="radialGradient3339-1-4"
  3429. xlink:href="#linearGradient3688-166-749"
  3430. gradientUnits="userSpaceOnUse"
  3431. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)" />
  3432. <radialGradient
  3433. cx="4.9929786"
  3434. cy="43.5"
  3435. r="2.5"
  3436. fx="4.9929786"
  3437. fy="43.5"
  3438. id="radialGradient3337-2-2"
  3439. xlink:href="#linearGradient3688-166-749"
  3440. gradientUnits="userSpaceOnUse"
  3441. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)" />
  3442. <linearGradient
  3443. y2="55.052982"
  3444. x2="30.271185"
  3445. y1="10.028973"
  3446. x1="30.271185"
  3447. gradientTransform="matrix(1.111111,0,0,1.25,-96.572559,-8.817797)"
  3448. gradientUnits="userSpaceOnUse"
  3449. id="linearGradient3818"
  3450. xlink:href="#linearGradient27416-1-2-2"
  3451. inkscape:collect="always" />
  3452. <linearGradient
  3453. y2="43"
  3454. x2="23.99999"
  3455. y1="4.999989"
  3456. x1="23.99999"
  3457. gradientTransform="matrix(1.4324324,0,0,1.4362832,-95.395384,-3.2885759)"
  3458. gradientUnits="userSpaceOnUse"
  3459. id="linearGradient3822"
  3460. xlink:href="#linearGradient3924-1"
  3461. inkscape:collect="always" />
  3462. <radialGradient
  3463. r="27.5"
  3464. fy="4.3419166"
  3465. fx="31.999998"
  3466. cy="4.3419166"
  3467. cx="31.999998"
  3468. gradientTransform="matrix(1.0056172e-8,2.3103361,-2.310336,1.0056172e-8,-50.985718,-69.903761)"
  3469. gradientUnits="userSpaceOnUse"
  3470. id="radialGradient3826"
  3471. xlink:href="#linearGradient4632-92-3-0-8-1-6"
  3472. inkscape:collect="always" />
  3473. <linearGradient
  3474. id="linearGradient4722">
  3475. <stop
  3476. offset="0"
  3477. style="stop-color:#f8917e;stop-opacity:1"
  3478. id="stop4724" />
  3479. <stop
  3480. offset="1"
  3481. style="stop-color:#ff6600;stop-opacity:1"
  3482. id="stop4728" />
  3483. </linearGradient>
  3484. <linearGradient
  3485. id="linearGradient4168">
  3486. <stop
  3487. id="stop4170"
  3488. style="stop-color:#f8b17e;stop-opacity:1"
  3489. offset="0" />
  3490. <stop
  3491. id="stop4172"
  3492. style="stop-color:#e35d4f;stop-opacity:1"
  3493. offset="0.23208089" />
  3494. <stop
  3495. id="stop4174"
  3496. style="stop-color:#c6262e;stop-opacity:1"
  3497. offset="0.5908742" />
  3498. <stop
  3499. id="stop4176"
  3500. style="stop-color:#690b54;stop-opacity:1"
  3501. offset="1" />
  3502. </linearGradient>
  3503. <linearGradient
  3504. id="linearGradient3957">
  3505. <stop
  3506. id="stop3959"
  3507. style="stop-color:#ffffff;stop-opacity:1"
  3508. offset="0" />
  3509. <stop
  3510. id="stop3961"
  3511. style="stop-color:#c1c1c1;stop-opacity:1"
  3512. offset="1" />
  3513. </linearGradient>
  3514. <linearGradient
  3515. id="linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-3-8">
  3516. <stop
  3517. id="stop3750-8-9"
  3518. style="stop-color:#90dbec;stop-opacity:1"
  3519. offset="0" />
  3520. <stop
  3521. id="stop3752-3-2"
  3522. style="stop-color:#42baea;stop-opacity:1"
  3523. offset="0.26238" />
  3524. <stop
  3525. id="stop3754-7-2"
  3526. style="stop-color:#3689e6;stop-opacity:1"
  3527. offset="0.704952" />
  3528. <stop
  3529. id="stop3756-9-3"
  3530. style="stop-color:#2b63a0;stop-opacity:1"
  3531. offset="1" />
  3532. </linearGradient>
  3533. <linearGradient
  3534. id="linearGradient3820-7-2-1">
  3535. <stop
  3536. id="stop3822-2-6-3"
  3537. style="stop-color:#3d3d3d;stop-opacity:1"
  3538. offset="0" />
  3539. <stop
  3540. id="stop3864-8-7-7"
  3541. style="stop-color:#686868;stop-opacity:0.49803922"
  3542. offset="0.5" />
  3543. <stop
  3544. id="stop3824-1-2-5"
  3545. style="stop-color:#686868;stop-opacity:0"
  3546. offset="1" />
  3547. </linearGradient>
  3548. <linearGradient
  3549. x1="71.204407"
  3550. y1="6.2375584"
  3551. x2="71.204407"
  3552. y2="44.340794"
  3553. id="linearGradient3012"
  3554. xlink:href="#linearGradient4011-9-9-70-61-7"
  3555. gradientUnits="userSpaceOnUse"
  3556. gradientTransform="matrix(1.054054,0,0,1.054054,-51.611001,-2.7279009)" />
  3557. <radialGradient
  3558. cx="3.9722471"
  3559. cy="8.4497671"
  3560. r="19.99999"
  3561. fx="3.9722471"
  3562. fy="8.4497671"
  3563. id="radialGradient3015-1"
  3564. xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-3-8"
  3565. gradientUnits="userSpaceOnUse"
  3566. gradientTransform="matrix(0,2.4988347,-2.6434689,-6.8014435e-8,46.336814,-12.180468)" />
  3567. <radialGradient
  3568. cx="99.157013"
  3569. cy="186.17059"
  3570. r="62.769119"
  3571. fx="99.157013"
  3572. fy="186.17059"
  3573. id="radialGradient3018"
  3574. xlink:href="#linearGradient3820-7-2-1"
  3575. gradientUnits="userSpaceOnUse"
  3576. gradientTransform="matrix(0.35045396,0,0,0.32241713,-11.361196,-34.128859)" />
  3577. <linearGradient
  3578. x1="27.92535"
  3579. y1="15.149301"
  3580. x2="33.447899"
  3581. y2="22.986004"
  3582. id="linearGradient3951"
  3583. xlink:href="#linearGradient4168"
  3584. gradientUnits="userSpaceOnUse"
  3585. gradientTransform="matrix(0.99907052,-0.04310556,0.04310556,0.99907052,19.058326,5.8136191)" />
  3586. <linearGradient
  3587. x1="24"
  3588. y1="22"
  3589. x2="24"
  3590. y2="26"
  3591. id="linearGradient3963"
  3592. xlink:href="#linearGradient3957"
  3593. gradientUnits="userSpaceOnUse" />
  3594. <linearGradient
  3595. x1="21.013996"
  3596. y1="25.433903"
  3597. x2="22.805599"
  3598. y2="27.343702"
  3599. id="linearGradient3963-7"
  3600. xlink:href="#linearGradient3957"
  3601. gradientUnits="userSpaceOnUse"
  3602. gradientTransform="translate(14.20206,2.7685028)" />
  3603. <linearGradient
  3604. gradientTransform="matrix(-0.01867279,0.99982565,0.99982565,0.01867279,0.4557693,-0.54878726)"
  3605. x1="27.92535"
  3606. y1="15.149301"
  3607. x2="33.447899"
  3608. y2="22.986004"
  3609. id="linearGradient3951-4"
  3610. xlink:href="#linearGradient4168"
  3611. gradientUnits="userSpaceOnUse" />
  3612. <linearGradient
  3613. x1="27.92535"
  3614. y1="15.149301"
  3615. x2="33.447899"
  3616. y2="22.986004"
  3617. id="linearGradient3951-2"
  3618. xlink:href="#linearGradient4168"
  3619. gradientUnits="userSpaceOnUse"
  3620. gradientTransform="matrix(0.86046654,-0.04100855,0.03712541,0.95046764,2.7186868,2.1805548)" />
  3621. <linearGradient
  3622. x1="27.92535"
  3623. y1="15.149301"
  3624. x2="31.188482"
  3625. y2="19.779806"
  3626. id="linearGradient3951-2-1"
  3627. xlink:href="#linearGradient4722"
  3628. gradientUnits="userSpaceOnUse"
  3629. gradientTransform="matrix(0.86144305,-4.9307323e-4,-0.00761877,0.95116191,3.2443428,1.9173962)" />
  3630. <linearGradient
  3631. x1="27.92535"
  3632. y1="15.149301"
  3633. x2="31.188482"
  3634. y2="19.779806"
  3635. id="linearGradient3951-2-1-1"
  3636. xlink:href="#linearGradient4722"
  3637. gradientUnits="userSpaceOnUse"
  3638. gradientTransform="matrix(0.86144305,-4.9307323e-4,-0.00761877,0.95116191,51.309337,26.573188)" />
  3639. <linearGradient
  3640. x1="27.92535"
  3641. y1="15.149301"
  3642. x2="31.188482"
  3643. y2="19.779806"
  3644. id="linearGradient3951-2-1-1-4"
  3645. xlink:href="#linearGradient4722"
  3646. gradientUnits="userSpaceOnUse"
  3647. gradientTransform="matrix(0.69145796,-3.8913626e-4,-0.00611539,0.75066252,7.3232516,6.1434229)" />
  3648. <linearGradient
  3649. x1="16.116789"
  3650. y1="21.119221"
  3651. x2="16.116789"
  3652. y2="10.997566"
  3653. id="linearGradient3698"
  3654. xlink:href="#linearGradient6036"
  3655. gradientUnits="userSpaceOnUse" />
  3656. <linearGradient
  3657. x1="15.321168"
  3658. y1="3"
  3659. x2="15.321168"
  3660. y2="29.045145"
  3661. id="linearGradient3688"
  3662. xlink:href="#linearGradient6036"
  3663. gradientUnits="userSpaceOnUse" />
  3664. <linearGradient
  3665. x1="86.132919"
  3666. y1="105.105"
  3667. x2="84.63858"
  3668. y2="20.895"
  3669. id="linearGradient2836"
  3670. xlink:href="#linearGradient5128"
  3671. gradientUnits="userSpaceOnUse"
  3672. gradientTransform="matrix(0.20430229,0,0,0.20430239,2.9246465,3.1289497)" />
  3673. <linearGradient
  3674. id="linearGradient5128">
  3675. <stop
  3676. id="stop5130"
  3677. style="stop-color:#ffffff;stop-opacity:1"
  3678. offset="0" />
  3679. <stop
  3680. id="stop5132"
  3681. style="stop-color:#959595;stop-opacity:1"
  3682. offset="1" />
  3683. </linearGradient>
  3684. <linearGradient
  3685. x1="32.036148"
  3686. y1="19"
  3687. x2="32.036148"
  3688. y2="47.012184"
  3689. id="linearGradient2840"
  3690. xlink:href="#linearGradient5128"
  3691. gradientUnits="userSpaceOnUse"
  3692. gradientTransform="translate(-15,-17)" />
  3693. <linearGradient
  3694. x1="63.9995"
  3695. y1="3.1001"
  3696. x2="63.9995"
  3697. y2="122.8994"
  3698. id="linearGradient3309"
  3699. gradientUnits="userSpaceOnUse">
  3700. <stop
  3701. id="stop3311"
  3702. style="stop-color:#f6f6f6;stop-opacity:1"
  3703. offset="0" />
  3704. <stop
  3705. id="stop3313"
  3706. style="stop-color:#d2d2d2;stop-opacity:1"
  3707. offset="1" />
  3708. </linearGradient>
  3709. <linearGradient
  3710. x1="25.922546"
  3711. y1="19"
  3712. x2="25.922546"
  3713. y2="47.044857"
  3714. id="linearGradient2842"
  3715. xlink:href="#linearGradient3397"
  3716. gradientUnits="userSpaceOnUse"
  3717. gradientTransform="translate(-15,-17)" />
  3718. <linearGradient
  3719. id="linearGradient3397">
  3720. <stop
  3721. id="stop3399"
  3722. style="stop-color:#aaaaaa;stop-opacity:1"
  3723. offset="0" />
  3724. <stop
  3725. id="stop3401"
  3726. style="stop-color:#8c8c8c;stop-opacity:1"
  3727. offset="1" />
  3728. </linearGradient>
  3729. <radialGradient
  3730. cx="6.702713"
  3731. cy="73.615715"
  3732. r="7.228416"
  3733. fx="6.702713"
  3734. fy="73.615715"
  3735. id="radialGradient3751"
  3736. xlink:href="#linearGradient4623-7-15"
  3737. gradientUnits="userSpaceOnUse"
  3738. gradientTransform="matrix(2.2134617,0,0,0.4842001,1.1638028,-7.1447362)" />
  3739. <linearGradient
  3740. x1="32.036148"
  3741. y1="19"
  3742. x2="32.036148"
  3743. y2="47.012184"
  3744. id="linearGradient2840-5"
  3745. xlink:href="#linearGradient5128"
  3746. gradientUnits="userSpaceOnUse"
  3747. gradientTransform="translate(-0.1695175,13.954899)" />
  3748. <linearGradient
  3749. x1="25.922546"
  3750. y1="19"
  3751. x2="25.922546"
  3752. y2="47.044857"
  3753. id="linearGradient2842-7"
  3754. xlink:href="#linearGradient3397"
  3755. gradientUnits="userSpaceOnUse"
  3756. gradientTransform="translate(14.909798,25.376361)" />
  3757. <linearGradient
  3758. x1="86.132919"
  3759. y1="105.105"
  3760. x2="84.63858"
  3761. y2="20.895"
  3762. id="linearGradient2836-6"
  3763. xlink:href="#linearGradient5128"
  3764. gradientUnits="userSpaceOnUse"
  3765. gradientTransform="matrix(0.21111502,0,0,0.20318555,17.383263,31.615773)" />
  3766. <radialGradient
  3767. cx="36.49107"
  3768. cy="39.708927"
  3769. r="3.1589286"
  3770. fx="36.49107"
  3771. fy="39.708927"
  3772. id="radialGradient5697-4-9"
  3773. xlink:href="#linearGradient6036"
  3774. gradientUnits="userSpaceOnUse" />
  3775. <radialGradient
  3776. cx="36.49107"
  3777. cy="39.708927"
  3778. r="3.1589286"
  3779. fx="36.49107"
  3780. fy="39.708927"
  3781. id="radialGradient5695-8-7"
  3782. xlink:href="#linearGradient6036"
  3783. gradientUnits="userSpaceOnUse" />
  3784. <radialGradient
  3785. cx="36.49107"
  3786. cy="39.708927"
  3787. r="3.1589286"
  3788. fx="36.49107"
  3789. fy="39.708927"
  3790. id="radialGradient5693-2-0"
  3791. xlink:href="#linearGradient6036"
  3792. gradientUnits="userSpaceOnUse" />
  3793. <radialGradient
  3794. cx="32.372566"
  3795. cy="31.405056"
  3796. r="3.857446"
  3797. fx="32.372566"
  3798. fy="31.405056"
  3799. id="radialGradient5691-8-9"
  3800. xlink:href="#linearGradient6088-6-1-0-06-8"
  3801. gradientUnits="userSpaceOnUse"
  3802. gradientTransform="matrix(2.0664963,0,0,2.0664963,-34.525221,-33.493375)" />
  3803. <radialGradient
  3804. cx="32.372566"
  3805. cy="31.405056"
  3806. r="3.857446"
  3807. fx="32.372566"
  3808. fy="31.405056"
  3809. id="radialGradient5689-3-2"
  3810. xlink:href="#linearGradient6191-8-3-4-5-4"
  3811. gradientUnits="userSpaceOnUse"
  3812. gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)" />
  3813. <radialGradient
  3814. cx="32.372566"
  3815. cy="31.405056"
  3816. r="3.857446"
  3817. fx="32.372566"
  3818. fy="31.405056"
  3819. id="radialGradient5687-9-7"
  3820. xlink:href="#linearGradient6191-8-3-4-5-4"
  3821. gradientUnits="userSpaceOnUse"
  3822. gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)" />
  3823. <radialGradient
  3824. cx="32.372566"
  3825. cy="31.405056"
  3826. r="3.857446"
  3827. fx="32.372566"
  3828. fy="31.405056"
  3829. id="radialGradient5685-6-9"
  3830. xlink:href="#linearGradient6191-8-3-4-5-4"
  3831. gradientUnits="userSpaceOnUse"
  3832. gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)" />
  3833. <radialGradient
  3834. cx="32.372566"
  3835. cy="31.405056"
  3836. r="3.857446"
  3837. fx="32.372566"
  3838. fy="31.405056"
  3839. id="radialGradient5679-1-7"
  3840. xlink:href="#linearGradient6088-74-4-8-8"
  3841. gradientUnits="userSpaceOnUse"
  3842. gradientTransform="matrix(2.0664963,0,0,2.0664963,-34.525221,-33.493375)" />
  3843. <radialGradient
  3844. cx="95.838364"
  3845. cy="95.388451"
  3846. r="9.4981718"
  3847. fx="95.838364"
  3848. fy="95.388451"
  3849. id="radialGradient5720-8-8"
  3850. xlink:href="#linearGradient4278-3-5-5-9"
  3851. gradientUnits="userSpaceOnUse"
  3852. gradientTransform="matrix(0.19553888,-2.9157311e-8,2.7395628e-8,0.18372271,17.229421,18.403041)" />
  3853. <radialGradient
  3854. cx="23.896"
  3855. cy="3.99"
  3856. r="20.396999"
  3857. id="radialGradient5723-3-6"
  3858. xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-691-4-22-1-2"
  3859. gradientUnits="userSpaceOnUse"
  3860. gradientTransform="matrix(0,0.2344161,-0.30942651,0,37.234491,28.249571)" />
  3861. <radialGradient
  3862. cx="31.999998"
  3863. cy="21.239277"
  3864. r="10.498171"
  3865. fx="31.999998"
  3866. fy="21.239277"
  3867. id="radialGradient5731-0-1"
  3868. xlink:href="#linearGradient6042-1-7-8-8"
  3869. gradientUnits="userSpaceOnUse"
  3870. gradientTransform="matrix(0,0.6733571,-1.5511106,0,68.944331,10.850549)" />
  3871. <radialGradient
  3872. cx="91.349998"
  3873. cy="16.447752"
  3874. r="15.639286"
  3875. fx="91.349998"
  3876. fy="16.447752"
  3877. id="radialGradient5441-6-7"
  3878. xlink:href="#linearGradient4507-6-5-9-8"
  3879. gradientUnits="userSpaceOnUse"
  3880. gradientTransform="matrix(0,1.9804002,-1.9804002,0,123.92313,-164.4618)" />
  3881. <radialGradient
  3882. cx="23.896"
  3883. cy="3.99"
  3884. r="20.396999"
  3885. fx="23.896"
  3886. fy="3.99"
  3887. id="radialGradient6657-1"
  3888. xlink:href="#radialGradient3093-0-3-6-6-0-8-5"
  3889. gradientUnits="userSpaceOnUse"
  3890. gradientTransform="matrix(0,1.4794679,-1.9528714,0,43.792011,-10.070966)" />
  3891. <radialGradient
  3892. cx="23.896"
  3893. cy="3.99"
  3894. r="20.396999"
  3895. id="radialGradient3093-0-3-6-6-0-8-5"
  3896. gradientUnits="userSpaceOnUse"
  3897. gradientTransform="matrix(0,1.2316483,-1.625754,0,18.486966,-28.721977)">
  3898. <stop
  3899. id="stop3244-9-33-7-0-9-5-0-5"
  3900. style="stop-color:#ffffff;stop-opacity:1"
  3901. offset="0" />
  3902. <stop
  3903. id="stop3246-3-5-0-8-5-0-0-4"
  3904. style="stop-color:#dddddd;stop-opacity:1"
  3905. offset="0.26238" />
  3906. <stop
  3907. id="stop3248-1-7-8-8-1-0-6-7"
  3908. style="stop-color:#abacae;stop-opacity:1"
  3909. offset="0.66093999" />
  3910. <stop
  3911. id="stop3250-9-3-0-5-1-2-1-6"
  3912. style="stop-color:#89898b;stop-opacity:1"
  3913. offset="1" />
  3914. </radialGradient>
  3915. <radialGradient
  3916. cx="62.625"
  3917. cy="4.625"
  3918. r="10.625"
  3919. id="radialGradient3169-1-5"
  3920. xlink:href="#radialGradient3109-3-6"
  3921. gradientUnits="userSpaceOnUse"
  3922. gradientTransform="matrix(0.94117645,0,0,0.23529375,-22.941181,44.41176)" />
  3923. <radialGradient
  3924. cx="62.625"
  3925. cy="4.625"
  3926. r="10.625"
  3927. id="radialGradient3109-3-6"
  3928. gradientUnits="userSpaceOnUse"
  3929. gradientTransform="matrix(1.1294118,0,0,0.2823525,-58.729414,19.694118)">
  3930. <stop
  3931. id="stop8840-3-7-9"
  3932. style="stop-color:#000000;stop-opacity:1"
  3933. offset="0" />
  3934. <stop
  3935. id="stop8842-5-0-3"
  3936. style="stop-color:#000000;stop-opacity:0"
  3937. offset="1" />
  3938. </radialGradient>
  3939. <radialGradient
  3940. cx="19.53446"
  3941. cy="40.430397"
  3942. r="23.929714"
  3943. fx="19.53446"
  3944. fy="40.430397"
  3945. id="radialGradient3814-4"
  3946. xlink:href="#linearGradient4623-7-15"
  3947. gradientUnits="userSpaceOnUse"
  3948. gradientTransform="matrix(0.92701214,0,0,0.06268357,4.0977309,40.46568)" />
  3949. <filter
  3950. style="color-interpolation-filters:sRGB"
  3951. id="filter4604-4"
  3952. inkscape:label="filter3" />
  3953. <filter
  3954. style="color-interpolation-filters:sRGB"
  3955. id="filter4606-9"
  3956. inkscape:label="filter4">
  3957. <feBlend
  3958. mode="normal"
  3959. id="feBlend4608-2"
  3960. in2="SourceGraphic" />
  3961. </filter>
  3962. <radialGradient
  3963. cx="4.9929786"
  3964. cy="43.5"
  3965. r="2.5"
  3966. fx="4.9929786"
  3967. fy="43.5"
  3968. id="radialGradient3013-1"
  3969. xlink:href="#linearGradient3688-166-749"
  3970. gradientUnits="userSpaceOnUse"
  3971. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)" />
  3972. <radialGradient
  3973. cx="4.9929786"
  3974. cy="43.5"
  3975. r="2.5"
  3976. fx="4.9929786"
  3977. fy="43.5"
  3978. id="radialGradient3015-7"
  3979. xlink:href="#linearGradient3688-166-749"
  3980. gradientUnits="userSpaceOnUse"
  3981. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)" />
  3982. <radialGradient
  3983. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
  3984. gradientUnits="userSpaceOnUse"
  3985. xlink:href="#linearGradient3688-166-749"
  3986. id="radialGradient3339-1-4-4"
  3987. fy="43.5"
  3988. fx="4.9929786"
  3989. r="2.5"
  3990. cy="43.5"
  3991. cx="4.9929786" />
  3992. <radialGradient
  3993. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
  3994. gradientUnits="userSpaceOnUse"
  3995. xlink:href="#linearGradient3688-166-749"
  3996. id="radialGradient3337-2-2-9"
  3997. fy="43.5"
  3998. fx="4.9929786"
  3999. r="2.5"
  4000. cy="43.5"
  4001. cx="4.9929786" />
  4002. <radialGradient
  4003. inkscape:collect="always"
  4004. xlink:href="#linearGradient4632-92-3-0-8-1-6"
  4005. id="radialGradient3826-0"
  4006. gradientUnits="userSpaceOnUse"
  4007. gradientTransform="matrix(1.0056172e-8,2.3103361,-2.310336,1.0056172e-8,-50.985718,-69.903761)"
  4008. cx="31.999998"
  4009. cy="4.3419166"
  4010. fx="31.999998"
  4011. fy="4.3419166"
  4012. r="27.5" />
  4013. <radialGradient
  4014. gradientTransform="matrix(0,2.4988347,-2.6434689,-6.8014435e-8,46.336814,-12.180468)"
  4015. gradientUnits="userSpaceOnUse"
  4016. xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-3-8"
  4017. id="radialGradient3015-1-6"
  4018. fy="8.4497671"
  4019. fx="3.9722471"
  4020. r="19.99999"
  4021. cy="8.4497671"
  4022. cx="3.9722471" />
  4023. <radialGradient
  4024. gradientTransform="matrix(0.35045396,0,0,0.32241713,-11.361196,-34.128859)"
  4025. gradientUnits="userSpaceOnUse"
  4026. xlink:href="#linearGradient3820-7-2-1"
  4027. id="radialGradient3018-3"
  4028. fy="186.17059"
  4029. fx="99.157013"
  4030. r="62.769119"
  4031. cy="186.17059"
  4032. cx="99.157013" />
  4033. <radialGradient
  4034. gradientTransform="matrix(2.2134617,0,0,0.4842001,1.1638028,-7.1447362)"
  4035. gradientUnits="userSpaceOnUse"
  4036. xlink:href="#linearGradient4623-7-15"
  4037. id="radialGradient3751-3"
  4038. fy="73.615715"
  4039. fx="6.702713"
  4040. r="7.228416"
  4041. cy="73.615715"
  4042. cx="6.702713" />
  4043. <marker
  4044. inkscape:isstock="true"
  4045. style="overflow:visible"
  4046. id="Arrow1Lstart-0"
  4047. refX="0.0"
  4048. refY="0.0"
  4049. orient="auto"
  4050. inkscape:stockid="Arrow1Lstart">
  4051. <path
  4052. transform="scale(0.8) translate(12.5,0)"
  4053. style="fill-rule:evenodd;stroke:#c4bcb4;stroke-width:1pt;stroke-opacity:1;fill:#a75784;fill-opacity:1"
  4054. d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  4055. id="path1223" />
  4056. </marker>
  4057. <linearGradient
  4058. osb:paint="solid"
  4059. id="linearGradient1219">
  4060. <stop
  4061. id="stop1217"
  4062. offset="0"
  4063. style="stop-color:#0000ff;stop-opacity:1;" />
  4064. </linearGradient>
  4065. <linearGradient
  4066. id="linearGradient8290">
  4067. <stop
  4068. style="stop-color:#f31111;stop-opacity:1"
  4069. offset="0"
  4070. id="stop8292" />
  4071. <stop
  4072. style="stop-color:#cb0707;stop-opacity:1"
  4073. offset="1"
  4074. id="stop8294" />
  4075. </linearGradient>
  4076. <linearGradient
  4077. id="linearGradient3938">
  4078. <stop
  4079. style="stop-color:#eb2d2d;stop-opacity:1;"
  4080. offset="0"
  4081. id="stop3940" />
  4082. <stop
  4083. style="stop-color:#df2525;stop-opacity:1;"
  4084. offset="1"
  4085. id="stop3942" />
  4086. </linearGradient>
  4087. <linearGradient
  4088. id="XMLID_74_-8-1"
  4089. gradientUnits="userSpaceOnUse"
  4090. x1="64.477501"
  4091. y1="56.3008"
  4092. x2="78.466103"
  4093. y2="48.0854">
  4094. <stop
  4095. offset="0"
  4096. style="stop-color:#ffffff;stop-opacity:1;"
  4097. id="stop155-3-8" />
  4098. <stop
  4099. offset="1"
  4100. style="stop-color:#e6e6e6;stop-opacity:1;"
  4101. id="stop157-94-6" />
  4102. </linearGradient>
  4103. <radialGradient
  4104. inkscape:collect="always"
  4105. xlink:href="#XMLID_74_-8-1"
  4106. id="radialGradient3867"
  4107. cx="558.35437"
  4108. cy="385.4841"
  4109. fx="558.35437"
  4110. fy="385.4841"
  4111. r="191.6187"
  4112. gradientTransform="matrix(1,0,0,1.0499906,0,-19.270593)"
  4113. gradientUnits="userSpaceOnUse" />
  4114. <linearGradient
  4115. id="SVGID_2_"
  4116. gradientUnits="userSpaceOnUse"
  4117. x1="200.0508"
  4118. y1="185.0742"
  4119. x2="200.0508"
  4120. y2="217.4595">
  4121. <stop
  4122. offset="0"
  4123. style="stop-color:#61B74A"
  4124. id="stop13" />
  4125. <stop
  4126. offset="1"
  4127. style="stop-color:#449934"
  4128. id="stop15" />
  4129. </linearGradient>
  4130. <linearGradient
  4131. y2="217.4595"
  4132. x2="200.0508"
  4133. y1="185.0742"
  4134. x1="200.0508"
  4135. gradientTransform="matrix(13.577628,0,0,13.577628,-2026.1619,-2566.7096)"
  4136. gradientUnits="userSpaceOnUse"
  4137. id="linearGradient3021"
  4138. xlink:href="#SVGID_2_"
  4139. inkscape:collect="always" />
  4140. <linearGradient
  4141. id="linearGradient2460"
  4142. y2="44.984001"
  4143. gradientUnits="userSpaceOnUse"
  4144. x2="19.360001"
  4145. y1="21.030804"
  4146. x1="19.244999">
  4147. <stop
  4148. id="stop3602"
  4149. style="stop-color:#fafafa;stop-opacity:1;"
  4150. offset="0" />
  4151. <stop
  4152. id="stop3604"
  4153. style="stop-color:#f0f0f0;stop-opacity:1;"
  4154. offset="1" />
  4155. </linearGradient>
  4156. <linearGradient
  4157. y2="44.984001"
  4158. x2="19.360001"
  4159. y1="21.030804"
  4160. x1="19.244999"
  4161. gradientTransform="matrix(11.076923,0,0,11.076923,-9.8523013,-20.578025)"
  4162. gradientUnits="userSpaceOnUse"
  4163. id="linearGradient3096"
  4164. xlink:href="#linearGradient2460"
  4165. inkscape:collect="always" />
  4166. <linearGradient
  4167. gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)"
  4168. gradientUnits="userSpaceOnUse"
  4169. id="ButtonShadow-0-1-1-5"
  4170. y2="7.0165396"
  4171. x2="45.447727"
  4172. y1="92.539597"
  4173. x1="45.447727">
  4174. <stop
  4175. offset="0"
  4176. style="stop-color:#000000;stop-opacity:1"
  4177. id="stop3750-8-9-3-6" />
  4178. <stop
  4179. offset="1"
  4180. style="stop-color:#000000;stop-opacity:0.58823532"
  4181. id="stop3752-5-6-4-2" />
  4182. </linearGradient>
  4183. <linearGradient
  4184. y2="251.66064"
  4185. x2="1011.9534"
  4186. y1="476.25983"
  4187. x1="1016.1035"
  4188. gradientTransform="translate(-146.22032,369.08845)"
  4189. gradientUnits="userSpaceOnUse"
  4190. id="linearGradient4082"
  4191. xlink:href="#a"
  4192. inkscape:collect="always" />
  4193. <linearGradient
  4194. id="linearGradient4046">
  4195. <stop
  4196. offset="0"
  4197. style="stop-color:#000000;stop-opacity:1;"
  4198. id="stop4048" />
  4199. <stop
  4200. offset="1"
  4201. style="stop-color:#ffffff;stop-opacity:0.2"
  4202. id="stop4050" />
  4203. </linearGradient>
  4204. <linearGradient
  4205. id="linearGradient2760">
  4206. <stop
  4207. id="stop2770"
  4208. offset="0"
  4209. style="stop-color:#ffffff;stop-opacity:1;" />
  4210. <stop
  4211. id="stop2764"
  4212. offset="1"
  4213. style="stop-color:#a9a9a9;stop-opacity:1;" />
  4214. </linearGradient>
  4215. <linearGradient
  4216. id="linearGradient4846">
  4217. <stop
  4218. offset="0"
  4219. style="stop-color:#1a1a1a;stop-opacity:1"
  4220. id="stop4848" />
  4221. <stop
  4222. offset="1"
  4223. style="stop-color:#1e1e1e;stop-opacity:1;"
  4224. id="stop4856" />
  4225. </linearGradient>
  4226. <linearGradient
  4227. id="linearGradient4922">
  4228. <stop
  4229. id="stop4924"
  4230. style="stop-color:#1a1a1a;stop-opacity:1"
  4231. offset="0" />
  4232. <stop
  4233. id="stop4926"
  4234. style="stop-color:#636363;stop-opacity:1"
  4235. offset="0.15622118" />
  4236. <stop
  4237. id="stop4928"
  4238. style="stop-color:#b4b4b4;stop-opacity:1"
  4239. offset="0.33151907" />
  4240. <stop
  4241. id="stop4930"
  4242. style="stop-color:#636363;stop-opacity:1"
  4243. offset="0.53579742" />
  4244. <stop
  4245. id="stop4932"
  4246. style="stop-color:#000000;stop-opacity:1"
  4247. offset="1" />
  4248. </linearGradient>
  4249. <linearGradient
  4250. y2="110.85986"
  4251. x2="166.77547"
  4252. y1="152.12039"
  4253. x1="201.33115"
  4254. spreadMethod="reflect"
  4255. gradientTransform="matrix(1.2757694,0,0,1.2757694,-135.89444,2.4500392)"
  4256. gradientUnits="userSpaceOnUse"
  4257. id="linearGradient4884"
  4258. xlink:href="#linearGradient4888"
  4259. inkscape:collect="always" />
  4260. <linearGradient
  4261. id="linearGradient4888">
  4262. <stop
  4263. offset="0"
  4264. style="stop-color:#c0821c;stop-opacity:1;"
  4265. id="stop4892" />
  4266. <stop
  4267. id="stop4894"
  4268. style="stop-color:#e4ae48;stop-opacity:1;"
  4269. offset="1" />
  4270. </linearGradient>
  4271. <linearGradient
  4272. gradientUnits="userSpaceOnUse"
  4273. y2="158.47191"
  4274. x2="258.22205"
  4275. y1="160.82593"
  4276. x1="13.021049"
  4277. id="linearGradient4882"
  4278. xlink:href="#linearGradient4898"
  4279. inkscape:collect="always" />
  4280. <linearGradient
  4281. id="linearGradient4898">
  4282. <stop
  4283. offset="0"
  4284. style="stop-color:#a86f20;stop-opacity:1;"
  4285. id="stop4900" />
  4286. <stop
  4287. offset="1"
  4288. style="stop-color:#c68d31;stop-opacity:1"
  4289. id="stop4902" />
  4290. </linearGradient>
  4291. <linearGradient
  4292. x1="45.447727"
  4293. y1="92.539597"
  4294. x2="45.447727"
  4295. y2="7.0165396"
  4296. id="ButtonShadow"
  4297. gradientUnits="userSpaceOnUse"
  4298. gradientTransform="scale(1.0058652,0.994169)">
  4299. <stop
  4300. id="stop3750"
  4301. style="stop-color:#000000;stop-opacity:1"
  4302. offset="0" />
  4303. <stop
  4304. id="stop3752"
  4305. style="stop-color:#000000;stop-opacity:0.58823532"
  4306. offset="1" />
  4307. </linearGradient>
  4308. <filter
  4309. color-interpolation-filters="sRGB"
  4310. id="filter3174">
  4311. <feGaussianBlur
  4312. stdDeviation="1.71"
  4313. id="feGaussianBlur3176" />
  4314. </filter>
  4315. <linearGradient
  4316. y2="168.28262"
  4317. x2="214.26566"
  4318. y1="11.425488"
  4319. x1="212.86353"
  4320. spreadMethod="reflect"
  4321. gradientTransform="matrix(1.8464564,0,0,1.8464564,-123.73343,86.826257)"
  4322. gradientUnits="userSpaceOnUse"
  4323. id="linearGradient8264"
  4324. xlink:href="#linearGradient2760"
  4325. inkscape:collect="always" />
  4326. <linearGradient
  4327. inkscape:collect="always"
  4328. xlink:href="#linearGradient2460"
  4329. id="linearGradient3157"
  4330. gradientUnits="userSpaceOnUse"
  4331. gradientTransform="matrix(12.102564,0,0,12.102564,-34.468255,-46.187105)"
  4332. x1="18.930269"
  4333. y1="6.2951212"
  4334. x2="19.360001"
  4335. y2="36.643665" />
  4336. <linearGradient
  4337. y2="1"
  4338. x2="1"
  4339. y1="0"
  4340. x1="0"
  4341. id="acyl_gradient"
  4342. xlink:href="#linearGradient4321"
  4343. inkscape:collect="always" />
  4344. <linearGradient
  4345. id="linearGradient4321">
  4346. <stop
  4347. id="stop1"
  4348. offset="0"
  4349. style="stop-color:#ee0c0c;stop-opacity:1;" />
  4350. <stop
  4351. id="stop2"
  4352. offset="1"
  4353. style="stop-color:#7a0404;stop-opacity:1;" />
  4354. </linearGradient>
  4355. <radialGradient
  4356. gradientUnits="userSpaceOnUse"
  4357. gradientTransform="matrix(2.4249551,-0.00787504,0.00770263,2.3718665,-135.71828,-134.64744)"
  4358. r="150"
  4359. fy="98.692879"
  4360. fx="94.710419"
  4361. cy="98.692879"
  4362. cx="94.710419"
  4363. id="radialGradient3928"
  4364. xlink:href="#linearGradient4321"
  4365. inkscape:collect="always" />
  4366. <radialGradient
  4367. r="150"
  4368. fy="98.692879"
  4369. fx="94.710419"
  4370. cy="98.692879"
  4371. cx="94.710419"
  4372. gradientTransform="matrix(2.4249551,-0.00787504,0.00770263,2.3718665,-135.71828,-134.64744)"
  4373. gradientUnits="userSpaceOnUse"
  4374. id="radialGradient3932"
  4375. xlink:href="#linearGradient4321"
  4376. inkscape:collect="always" />
  4377. <radialGradient
  4378. r="150"
  4379. fy="112.57468"
  4380. fx="110.73653"
  4381. cy="112.57468"
  4382. cx="110.73653"
  4383. gradientTransform="matrix(1.6533901,0.0060994,-0.00539655,1.4623231,-50.506611,-35.439162)"
  4384. gradientUnits="userSpaceOnUse"
  4385. id="radialGradient3936"
  4386. xlink:href="#linearGradient3938"
  4387. inkscape:collect="always" />
  4388. <radialGradient
  4389. inkscape:collect="always"
  4390. xlink:href="#linearGradient3938"
  4391. id="radialGradient8259"
  4392. gradientUnits="userSpaceOnUse"
  4393. gradientTransform="matrix(1.6533901,0.0060994,-0.00539655,1.4623231,703.83008,-47.907537)"
  4394. cx="110.73653"
  4395. cy="112.57468"
  4396. fx="110.73653"
  4397. fy="112.57468"
  4398. r="150" />
  4399. <radialGradient
  4400. inkscape:collect="always"
  4401. xlink:href="#linearGradient3938"
  4402. id="radialGradient8273"
  4403. gradientUnits="userSpaceOnUse"
  4404. gradientTransform="matrix(1.6533901,0.0060994,-0.00539655,1.4623231,703.83008,-47.907537)"
  4405. cx="110.73653"
  4406. cy="112.57468"
  4407. fx="110.73653"
  4408. fy="112.57468"
  4409. r="150" />
  4410. <linearGradient
  4411. id="linearGradient4485">
  4412. <stop
  4413. style="stop-color:#000000;stop-opacity:1;"
  4414. offset="0"
  4415. id="stop7431" />
  4416. <stop
  4417. style="stop-color:#000000;stop-opacity:0.384"
  4418. offset="1"
  4419. id="stop7433" />
  4420. </linearGradient>
  4421. <linearGradient
  4422. id="linearGradient4477">
  4423. <stop
  4424. style="stop-color:#f7f7f7;stop-opacity:1;"
  4425. offset="0"
  4426. id="stop7436" />
  4427. <stop
  4428. style="stop-color:#f7f7f7;stop-opacity:0.392"
  4429. offset="1"
  4430. id="stop7438" />
  4431. </linearGradient>
  4432. <linearGradient
  4433. id="b"
  4434. y1="11"
  4435. x1="17"
  4436. y2="41"
  4437. gradientUnits="userSpaceOnUse"
  4438. x2="44"
  4439. gradientTransform="translate(0 1004.36)">
  4440. <stop
  4441. id="stop7441" />
  4442. <stop
  4443. offset="1"
  4444. stop-opacity="0"
  4445. id="stop7443" />
  4446. </linearGradient>
  4447. <linearGradient
  4448. id="c"
  4449. y1="40"
  4450. y2="6"
  4451. gradientUnits="userSpaceOnUse"
  4452. x2="0"
  4453. gradientTransform="matrix(0.94118,0,0,0.91176,1.412,2.08)">
  4454. <stop
  4455. stop-color="#b1b1b1"
  4456. id="stop7446" />
  4457. <stop
  4458. offset="1"
  4459. stop-color="#dddddd"
  4460. id="stop7448" />
  4461. </linearGradient>
  4462. <linearGradient
  4463. xlink:href="#b"
  4464. id="d-9"
  4465. y1="21"
  4466. x1="23"
  4467. y2="39"
  4468. gradientUnits="userSpaceOnUse"
  4469. x2="40" />
  4470. <linearGradient
  4471. id="e-4"
  4472. y1="1040.95"
  4473. y2="1012.95"
  4474. gradientUnits="userSpaceOnUse"
  4475. x2="0"
  4476. gradientTransform="translate(0,-1004.36)">
  4477. <stop
  4478. stop-color="#f2f2f2"
  4479. id="stop7452" />
  4480. <stop
  4481. offset="1"
  4482. stop-color="#ffffff"
  4483. id="stop7454" />
  4484. </linearGradient>
  4485. <linearGradient
  4486. gradientTransform="rotate(180,39.999995,19)"
  4487. x2="49"
  4488. gradientUnits="userSpaceOnUse"
  4489. y2="20.735"
  4490. x1="49.088"
  4491. y1="26.497"
  4492. id="d-3">
  4493. <stop
  4494. id="stop7457" />
  4495. <stop
  4496. stop-opacity="0"
  4497. stop-color="#655c6f"
  4498. offset="1"
  4499. id="stop7459" />
  4500. </linearGradient>
  4501. <linearGradient
  4502. xlink:href="#linearGradient4477"
  4503. id="linearGradient4483"
  4504. x1="34.237"
  4505. y1="10.71"
  4506. x2="30.045"
  4507. y2="5.495"
  4508. gradientUnits="userSpaceOnUse" />
  4509. <linearGradient
  4510. xlink:href="#linearGradient4485"
  4511. id="linearGradient4491"
  4512. x1="13"
  4513. y1="44.006"
  4514. x2="13"
  4515. y2="3.172"
  4516. gradientUnits="userSpaceOnUse" />
  4517. <linearGradient
  4518. id="a-6"
  4519. y1="41"
  4520. y2="7"
  4521. x2="0"
  4522. gradientUnits="userSpaceOnUse">
  4523. <stop
  4524. stop-color="#728790"
  4525. id="stop7878" />
  4526. <stop
  4527. offset="1"
  4528. stop-color="#85969e"
  4529. id="stop7880" />
  4530. </linearGradient>
  4531. <linearGradient
  4532. id="b-9"
  4533. y1="36"
  4534. y2="12"
  4535. x2="0"
  4536. gradientUnits="userSpaceOnUse">
  4537. <stop
  4538. stop-color="#06a370"
  4539. id="stop7883" />
  4540. <stop
  4541. offset="1"
  4542. stop-color="#22d1b0"
  4543. id="stop7885" />
  4544. </linearGradient>
  4545. <linearGradient
  4546. id="c-2"
  4547. y1="44"
  4548. y2="4"
  4549. x2="0"
  4550. gradientUnits="userSpaceOnUse">
  4551. <stop
  4552. stop-color="#2a2c2f"
  4553. id="stop7888" />
  4554. <stop
  4555. offset="1"
  4556. stop-color="#424649"
  4557. id="stop7890" />
  4558. </linearGradient>
  4559. <linearGradient
  4560. id="d-2"
  4561. y1="15"
  4562. x1="15"
  4563. y2="44"
  4564. x2="44"
  4565. gradientUnits="userSpaceOnUse">
  4566. <stop
  4567. stop-color="#020303"
  4568. id="stop7893" />
  4569. <stop
  4570. offset="1"
  4571. stop-color="#424649"
  4572. stop-opacity="0"
  4573. id="stop7895" />
  4574. </linearGradient>
  4575. <linearGradient
  4576. id="linearGradient4166">
  4577. <stop
  4578. style="stop-color:#f11c1c;stop-opacity:1"
  4579. offset="0"
  4580. id="stop8122" />
  4581. <stop
  4582. style="stop-color:#e05e4c;stop-opacity:1"
  4583. offset="1"
  4584. id="stop8124" />
  4585. </linearGradient>
  4586. <linearGradient
  4587. gradientUnits="userSpaceOnUse"
  4588. x2="0"
  4589. y2="503.8"
  4590. y1="544.8"
  4591. id="linearGradient4173">
  4592. <stop
  4593. offset="0"
  4594. stop-color="#44484c"
  4595. id="stop8127" />
  4596. <stop
  4597. stop-color="#1d1e1e"
  4598. offset="1"
  4599. id="stop8129" />
  4600. </linearGradient>
  4601. <linearGradient
  4602. xlink:href="#linearGradient4166"
  4603. id="linearGradient4193"
  4604. gradientUnits="userSpaceOnUse"
  4605. gradientTransform="translate(-384.565,-499.911)"
  4606. y1="544.8"
  4607. x2="0"
  4608. y2="503.8" />
  4609. <linearGradient
  4610. xlink:href="#linearGradient4173"
  4611. id="linearGradient4246"
  4612. gradientUnits="userSpaceOnUse"
  4613. gradientTransform="rotate(-120,72.136052,385.66288)"
  4614. y1="532.205"
  4615. x2="386.827"
  4616. y2="524.418"
  4617. x1="428.029" />
  4618. <linearGradient
  4619. xlink:href="#linearGradient4166"
  4620. id="linearGradient4248"
  4621. gradientUnits="userSpaceOnUse"
  4622. gradientTransform="rotate(-120,72.101514,385.71693)"
  4623. y1="544.8"
  4624. x2="0"
  4625. y2="503.8" />
  4626. <linearGradient
  4627. xlink:href="#a"
  4628. id="linearGradient4288"
  4629. x1="7.669"
  4630. y1="14.513"
  4631. x2="42.224"
  4632. y2="34.463"
  4633. gradientUnits="userSpaceOnUse" />
  4634. <linearGradient
  4635. xlink:href="#linearGradient4166"
  4636. id="linearGradient4172"
  4637. x1="18.437"
  4638. y1="38.559"
  4639. x2="13.059"
  4640. y2="31.145"
  4641. gradientUnits="userSpaceOnUse" />
  4642. <linearGradient
  4643. id="a-4"
  4644. y1="541.8"
  4645. y2="505.8"
  4646. x2="0"
  4647. gradientUnits="userSpaceOnUse"
  4648. gradientTransform="translate(-384.57,-499.8)">
  4649. <stop
  4650. stop-color="#bdc3c7"
  4651. id="stop8448" />
  4652. <stop
  4653. offset="1"
  4654. stop-color="#eff0f1"
  4655. id="stop8450" />
  4656. </linearGradient>
  4657. <linearGradient
  4658. id="b-7"
  4659. y1="542.8"
  4660. y2="504.8"
  4661. x2="0"
  4662. gradientUnits="userSpaceOnUse"
  4663. gradientTransform="translate(-384.57,-499.8)">
  4664. <stop
  4665. stop-color="#95a5a6"
  4666. id="stop8453" />
  4667. <stop
  4668. offset="1"
  4669. stop-color="#8b9e9a"
  4670. id="stop8455" />
  4671. </linearGradient>
  4672. <linearGradient
  4673. id="c-7"
  4674. y1="20"
  4675. y2="44"
  4676. gradientUnits="userSpaceOnUse"
  4677. x2="0"
  4678. gradientTransform="translate(384.57,499.8)">
  4679. <stop
  4680. stop-color="#eff0f1"
  4681. id="stop8458" />
  4682. <stop
  4683. offset="1"
  4684. stop-color="#bdc3c7"
  4685. id="stop8460" />
  4686. </linearGradient>
  4687. <linearGradient
  4688. id="d-5"
  4689. y1="10.17"
  4690. x1="10.327"
  4691. y2="29.972"
  4692. x2="30.491"
  4693. gradientUnits="userSpaceOnUse">
  4694. <stop
  4695. stop-color="#292c2f"
  4696. id="stop8463" />
  4697. <stop
  4698. offset="1"
  4699. stop-opacity="0"
  4700. id="stop8465" />
  4701. </linearGradient>
  4702. <linearGradient
  4703. xlink:href="#d-5"
  4704. id="e-48"
  4705. y1="10.227"
  4706. x1="25"
  4707. y2="26.733"
  4708. x2="41.05"
  4709. gradientUnits="userSpaceOnUse" />
  4710. <linearGradient
  4711. id="f-1"
  4712. y1="42"
  4713. x1="41"
  4714. y2="10"
  4715. x2="5"
  4716. gradientUnits="userSpaceOnUse"
  4717. gradientTransform="translate(384.57,499.8)">
  4718. <stop
  4719. stop-color="#2e5d89"
  4720. id="stop8469" />
  4721. <stop
  4722. offset="1"
  4723. stop-color="#1b92f4"
  4724. id="stop8471" />
  4725. </linearGradient>
  4726. <linearGradient
  4727. id="g-2"
  4728. y1="42"
  4729. x1="41"
  4730. y2="10"
  4731. x2="5"
  4732. gradientUnits="userSpaceOnUse"
  4733. gradientTransform="translate(384.57,499.8)">
  4734. <stop
  4735. stop-color="#06a370"
  4736. id="stop8474" />
  4737. <stop
  4738. offset="1"
  4739. stop-color="#22d1b0"
  4740. id="stop8476" />
  4741. </linearGradient>
  4742. <inkscape:perspective
  4743. sodipodi:type="inkscape:persp3d"
  4744. inkscape:vp_x="0 : 526.18109 : 1"
  4745. inkscape:vp_y="0 : 1000 : 0"
  4746. inkscape:vp_z="744.09448 : 526.18109 : 1"
  4747. inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
  4748. id="perspective10" />
  4749. <linearGradient
  4750. gradientUnits="userSpaceOnUse"
  4751. y2="89.048683"
  4752. x2="94.019379"
  4753. y1="106.0194"
  4754. x1="77.04866"
  4755. id="linearGradient1437"
  4756. xlink:href="#linearGradient1435" />
  4757. <linearGradient
  4758. id="linearGradient1435">
  4759. <stop
  4760. id="stop1431"
  4761. offset="0"
  4762. style="stop-color:#33d17a;stop-opacity:1;" />
  4763. <stop
  4764. style="stop-color:#2ec27e;stop-opacity:1"
  4765. offset="0.10000067"
  4766. id="stop1439" />
  4767. <stop
  4768. id="stop1441"
  4769. offset="0.23066732"
  4770. style="stop-color:#33d17a;stop-opacity:1;" />
  4771. <stop
  4772. style="stop-color:#33d17a;stop-opacity:1;"
  4773. offset="0.75333387"
  4774. id="stop1443" />
  4775. <stop
  4776. id="stop1445"
  4777. offset="0.93333316"
  4778. style="stop-color:#57e389;stop-opacity:1" />
  4779. <stop
  4780. id="stop1433"
  4781. offset="1"
  4782. style="stop-color:#33d17a;stop-opacity:1" />
  4783. </linearGradient>
  4784. <inkscape:perspective
  4785. sodipodi:type="inkscape:persp3d"
  4786. inkscape:vp_x="0 : 24 : 1"
  4787. inkscape:vp_y="0 : 1000 : 0"
  4788. inkscape:vp_z="48 : 24 : 1"
  4789. inkscape:persp3d-origin="24 : 16 : 1"
  4790. id="perspective74" />
  4791. <inkscape:perspective
  4792. id="perspective2892"
  4793. inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
  4794. inkscape:vp_z="1 : 0.5 : 1"
  4795. inkscape:vp_y="0 : 1000 : 0"
  4796. inkscape:vp_x="0 : 0.5 : 1"
  4797. sodipodi:type="inkscape:persp3d" />
  4798. <inkscape:perspective
  4799. id="perspective2892-2"
  4800. inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
  4801. inkscape:vp_z="1 : 0.5 : 1"
  4802. inkscape:vp_y="0 : 1000 : 0"
  4803. inkscape:vp_x="0 : 0.5 : 1"
  4804. sodipodi:type="inkscape:persp3d" />
  4805. <inkscape:perspective
  4806. id="perspective2892-0"
  4807. inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
  4808. inkscape:vp_z="1 : 0.5 : 1"
  4809. inkscape:vp_y="0 : 1000 : 0"
  4810. inkscape:vp_x="0 : 0.5 : 1"
  4811. sodipodi:type="inkscape:persp3d" />
  4812. <inkscape:perspective
  4813. id="perspective2904"
  4814. inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
  4815. inkscape:vp_z="1 : 0.5 : 1"
  4816. inkscape:vp_y="0 : 1000 : 0"
  4817. inkscape:vp_x="0 : 0.5 : 1"
  4818. sodipodi:type="inkscape:persp3d" />
  4819. <linearGradient
  4820. gradientTransform="matrix(1,0.11459461,0,0.59692215,4.7283813e-7,31.876032)"
  4821. gradientUnits="userSpaceOnUse"
  4822. id="XMLID_13_-3"
  4823. y2="68.252296"
  4824. x2="28.1089"
  4825. y1="41.848598"
  4826. x1="30.4189">
  4827. <stop
  4828. id="stop55"
  4829. offset="0.0056"
  4830. style="stop-color:#425a91;stop-opacity:1" />
  4831. <stop
  4832. id="stop57"
  4833. offset="0.331"
  4834. style="stop-color:#537bba;stop-opacity:1" />
  4835. <stop
  4836. id="stop59"
  4837. offset="0.5"
  4838. style="stop-color:#5d8dd1;stop-opacity:1" />
  4839. <stop
  4840. id="stop61"
  4841. offset="1"
  4842. style="stop-color:#bedaee;stop-opacity:1" />
  4843. </linearGradient>
  4844. <linearGradient
  4845. gradientTransform="matrix(1,0.0149,0,1,0,-2.201)"
  4846. gradientUnits="userSpaceOnUse"
  4847. id="XMLID_14_-3"
  4848. y2="79.305702"
  4849. x2="52.6367"
  4850. y1="79.305702"
  4851. x1="7.6289001">
  4852. <stop
  4853. id="stop66-0"
  4854. offset="0.0056"
  4855. style="stop-color:#86704b;stop-opacity:1" />
  4856. <stop
  4857. id="stop68"
  4858. offset="1"
  4859. style="stop-color:#4b4137;stop-opacity:1" />
  4860. </linearGradient>
  4861. <inkscape:perspective
  4862. id="perspective3019"
  4863. inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
  4864. inkscape:vp_z="1 : 0.5 : 1"
  4865. inkscape:vp_y="0 : 1000 : 0"
  4866. inkscape:vp_x="0 : 0.5 : 1"
  4867. sodipodi:type="inkscape:persp3d" />
  4868. <clipPath
  4869. id="clipPath13706">
  4870. <rect
  4871. x="160"
  4872. y="-188"
  4873. width="16"
  4874. height="56"
  4875. rx="8"
  4876. ry="8"
  4877. enable-background="new"
  4878. fill="none"
  4879. stroke="#000"
  4880. style="paint-order:normal"
  4881. id="rect13704" />
  4882. </clipPath>
  4883. <linearGradient
  4884. id="a-2"
  4885. x1="28"
  4886. x2="116"
  4887. y1="-276"
  4888. y2="-276"
  4889. gradientTransform="translate(-136,170)"
  4890. gradientUnits="userSpaceOnUse">
  4891. <stop
  4892. stop-color="#1a5fb4"
  4893. offset="0"
  4894. id="stop13708" />
  4895. <stop
  4896. stop-color="#3584e4"
  4897. offset=".045455"
  4898. id="stop13710" />
  4899. <stop
  4900. stop-color="#1a5fb4"
  4901. offset=".090909"
  4902. id="stop13712" />
  4903. <stop
  4904. stop-color="#1a5fb4"
  4905. offset=".90909"
  4906. id="stop13714" />
  4907. <stop
  4908. stop-color="#3584e4"
  4909. offset=".95455"
  4910. id="stop13716" />
  4911. <stop
  4912. stop-color="#1a5fb4"
  4913. offset="1"
  4914. id="stop13718" />
  4915. </linearGradient>
  4916. <clipPath
  4917. id="clipPath13723">
  4918. <rect
  4919. width="192"
  4920. height="152"
  4921. id="rect13721" />
  4922. </clipPath>
  4923. <clipPath
  4924. clipPathUnits="userSpaceOnUse"
  4925. id="clipPath958">
  4926. <rect
  4927. style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:1.75874;stroke-linecap:round;stroke-linejoin:round"
  4928. id="rect960"
  4929. width="1.3177092"
  4930. height="29.633333"
  4931. x="7.9375"
  4932. y="1.0583334" />
  4933. </clipPath>
  4934. <clipPath
  4935. clipPathUnits="userSpaceOnUse"
  4936. id="clipPath1097">
  4937. <path
  4938. style="display:inline;fill:#2ec27e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;enable-background:new"
  4939. d="m 7.9375003,3.175 v 27.516667 c 0,-2.116667 -5.2916669,-2.116667 -5.2916669,0 V 3.175 c 0,-2.116667 2.6458338,-2.116667 2.6458338,-2.116667 0,0 2.6458331,0 2.6458331,2.116667 z"
  4940. id="path1099"
  4941. sodipodi:nodetypes="cccccc"
  4942. inkscape:export-xdpi="96"
  4943. inkscape:export-ydpi="96" />
  4944. </clipPath>
  4945. </defs>
  4946. <sodipodi:namedview
  4947. id="base"
  4948. pagecolor="#ffffff"
  4949. bordercolor="#666666"
  4950. borderopacity="1.0"
  4951. inkscape:pageopacity="0.0"
  4952. inkscape:pageshadow="2"
  4953. inkscape:zoom="0.38013891"
  4954. inkscape:cx="343.55332"
  4955. inkscape:cy="583.94318"
  4956. inkscape:document-units="mm"
  4957. inkscape:current-layer="layer1"
  4958. inkscape:document-rotation="0"
  4959. showgrid="false"
  4960. inkscape:window-width="1485"
  4961. inkscape:window-height="694"
  4962. inkscape:window-x="61"
  4963. inkscape:window-y="32"
  4964. inkscape:window-maximized="0"
  4965. showguides="true"
  4966. inkscape:guide-bbox="true">
  4967. <sodipodi:guide
  4968. position="134.5064,399.45284"
  4969. orientation="0,-1"
  4970. id="guide6786" />
  4971. </sodipodi:namedview>
  4972. <metadata
  4973. id="metadata5">
  4974. <rdf:RDF>
  4975. <cc:Work
  4976. rdf:about="">
  4977. <dc:format>image/svg+xml</dc:format>
  4978. <dc:type
  4979. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  4980. <dc:title></dc:title>
  4981. </cc:Work>
  4982. </rdf:RDF>
  4983. </metadata>
  4984. <g
  4985. inkscape:label="Layer 1"
  4986. inkscape:groupmode="layer"
  4987. id="layer1">
  4988. <path
  4989. style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  4990. d="M 327.47595,206.02676 Z"
  4991. id="path4247" />
  4992. <path
  4993. style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  4994. d="M 351.76253,233.11052 Z"
  4995. id="path4251" />
  4996. <path
  4997. style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  4998. d="M 287.82073,46.670878 Z"
  4999. id="path4259" />
  5000. <g
  5001. id="g10"
  5002. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5003. </g>
  5004. <g
  5005. id="g12"
  5006. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5007. </g>
  5008. <g
  5009. id="g14"
  5010. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5011. </g>
  5012. <g
  5013. id="g16"
  5014. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5015. </g>
  5016. <g
  5017. id="g18"
  5018. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5019. </g>
  5020. <g
  5021. id="g20"
  5022. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5023. </g>
  5024. <g
  5025. id="g22"
  5026. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5027. </g>
  5028. <g
  5029. id="g24"
  5030. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5031. </g>
  5032. <g
  5033. id="g26"
  5034. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5035. </g>
  5036. <g
  5037. id="g28"
  5038. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5039. </g>
  5040. <g
  5041. id="g30"
  5042. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5043. </g>
  5044. <g
  5045. id="g32"
  5046. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5047. </g>
  5048. <g
  5049. id="g34"
  5050. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5051. </g>
  5052. <g
  5053. id="g36"
  5054. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5055. </g>
  5056. <g
  5057. id="g38"
  5058. transform="matrix(0.8531169,0,0,0.8531169,-355.6087,19.902577)">
  5059. </g>
  5060. <rect
  5061. style="opacity:1;fill:#39966b;fill-opacity:1;fill-rule:nonzero;stroke:#39966b;stroke-width:13.2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  5062. id="rect15150"
  5063. width="208.30748"
  5064. height="162.05997"
  5065. x="30.007149"
  5066. y="112.02772"
  5067. ry="20.388607" />
  5068. <rect
  5069. style="opacity:1;fill:#797979;fill-opacity:1;fill-rule:nonzero;stroke:#797979;stroke-width:12.7799;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  5070. id="rect15152"
  5071. width="219.77319"
  5072. height="215.60912"
  5073. x="52.907475"
  5074. y="52.451012"
  5075. ry="16.850494" />
  5076. <path
  5077. id="rect15154"
  5078. style="opacity:1;fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#dcdcdc;stroke-width:13.066;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  5079. d="M 90.792574,27.704265 255.28069,27.00189 c 9.7577,-0.04167 17.61335,7.829973 17.61335,17.555992 V 234.08216 c 0,9.72602 -7.85556,17.55599 -17.61335,17.55599 H 70.016277 c -9.757791,0 -18.721478,-7.89289 -17.61334,-17.55599 L 74.062685,45.206494 C 75.170823,35.543396 81.034873,27.74593 90.792574,27.704265 Z"
  5080. sodipodi:nodetypes="sssssssss" />
  5081. <path
  5082. id="rect15157"
  5083. style="opacity:1;fill:#b5b4b4;fill-opacity:1;fill-rule:nonzero;stroke:#bfbfbf;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  5084. d="m 74.569008,28.560128 c 0,0 4.587758,-5.730483 4.591917,-3.61155 l 0.444968,226.705772 c 0.0042,2.11892 0.415873,6.50838 -0.147233,6.50838 -0.563106,0 -9.236664,1.19434 -9.242078,-0.92458 L 69.652705,36.552156 c -0.0054,-2.118929 4.916303,-7.992028 4.916303,-7.992028 z"
  5085. sodipodi:nodetypes="csssssc" />
  5086. <rect
  5087. style="opacity:1;fill:#4abe89;fill-opacity:1;fill-rule:nonzero;stroke:#4abe89;stroke-width:13.3451;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  5088. id="rect15146"
  5089. width="36.396816"
  5090. height="247.39801"
  5091. x="30.007149"
  5092. y="26.689671"
  5093. ry="18.109663" />
  5094. <ellipse
  5095. style="opacity:1;fill:#39966b;fill-opacity:1;fill-rule:nonzero;stroke:#39966b;stroke-width:14.5423;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  5096. id="path15148"
  5097. cx="48.713211"
  5098. cy="261.11847"
  5099. rx="16.63146"
  5100. ry="12.359027" />
  5101. <g
  5102. aria-label="Aa"
  5103. id="text15162"
  5104. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:50.8px;line-height:1.25;font-family:FreeSerif;-inkscape-font-specification:'FreeSerif Bold';word-spacing:0px;white-space:pre;shape-inside:url(#rect15164);fill:#797979;fill-opacity:1"
  5105. transform="matrix(2.8220279,0,0,2.8220279,-161.41337,-128.1426)">
  5106. <path
  5107. d="m 124.61078,105.71805 h -0.2032 c -1.9812,0 -2.794,-1.0668 -5.334,-7.061204 l -11.3284,-26.720799 h -1.4224 L 95.045181,99.774446 c -1.9304,4.724404 -2.54,5.486404 -4.9784,5.943604 v 1.27 h 10.312399 v -1.27 c -2.997199,-0.2032 -4.165599,-0.762 -4.165599,-2.0828 0,-0.6604 0.4064,-1.9304 1.4732,-4.673604 l 0.762,-1.9812 h 11.429999 c 1.7272,3.962404 2.3368,5.791204 2.3368,6.908804 0,1.0668 -0.6604,1.5748 -2.4384,1.6764 -0.254,0 -0.9144,0.0508 -1.6256,0.1524 v 1.27 h 16.4592 z m -25.399999,-10.718804 4.775199,-12.344399 5.1308,12.344399 z"
  5108. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:50.8px;font-family:FreeSerif;-inkscape-font-specification:'FreeSerif Bold';fill:#797979;fill-opacity:1"
  5109. id="path15168" />
  5110. <path
  5111. d="m 132.63711,86.464846 c 0,-1.0668 1.4224,-1.879599 3.2004,-1.879599 2.9464,0 4.2672,1.371599 4.2672,4.470399 v 3.7084 c -5.8928,1.778 -13.6652,3.81 -13.6652,9.550404 0,3.0988 2.3876,5.3848 5.6388,5.3848 2.8956,0 5.2324,-1.016 8.0264,-3.556 0.5588,2.5908 1.6764,3.556 4.1656,3.556 2.1844,0 3.7592,-0.8128 5.6896,-2.8956 l -0.762,-1.0668 -0.508,0.508 c -0.1524,0.1524 -0.3048,0.2032 -0.5588,0.2032 -0.7112,0 -1.0668,-0.4572 -1.0668,-1.27 V 89.919246 c 0,-4.2672 -3.8608,-6.959599 -10.0584,-6.959599 -5.7404,0 -9.6012,2.590799 -9.6012,6.400799 0,2.0828 1.2192,3.3528 3.302,3.3528 2.032,0 3.4544,-1.2192 3.4544,-2.9464 0,-1.524 -1.524,-2.5908 -1.524,-3.302 z m 7.4168,15.443204 c -1.3716,1.5748 -2.3876,2.1844 -3.6068,2.1844 -1.524,0 -2.5908,-1.3716 -2.5908,-3.4036 0,-2.946404 2.1336,-5.080004 6.1976,-6.146804 z"
  5112. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:50.8px;font-family:FreeSerif;-inkscape-font-specification:'FreeSerif Bold';fill:#797979;fill-opacity:1"
  5113. id="path15170" />
  5114. </g>
  5115. </g>
  5116. <style
  5117. type="text/css"
  5118. id="current-color-scheme">
  5119. .ColorScheme-Text {
  5120. color:#232629;
  5121. }
  5122. </style>
  5123. <style
  5124. type="text/css"
  5125. id="current-color-scheme-3">
  5126. .ColorScheme-Text {
  5127. color:#232629;
  5128. }
  5129. </style>
  5130. <style
  5131. type="text/css"
  5132. id="current-color-scheme-6">
  5133. .ColorScheme-Text {
  5134. color:#232629;
  5135. }
  5136. </style>
  5137. <style
  5138. type="text/css"
  5139. id="current-color-scheme-67">
  5140. .ColorScheme-Text {
  5141. color:#232629;
  5142. }
  5143. </style>
  5144. <style
  5145. id="style14957">
  5146. #outline {
  5147. stroke: #111;
  5148. stroke-width: 31.66235665441778;
  5149. fill: none;
  5150. }
  5151. .dot {
  5152. fill: #111;
  5153. }
  5154. .point {
  5155. fill: #111;
  5156. }
  5157. /*.point:nth-child(odd) {
  5158. fill: rgb(165, 24, 201);
  5159. }*/
  5160. .ray {
  5161. stroke: #111;
  5162. stroke-width: 31.66235665441778;
  5163. }
  5164. /*.ray:nth-child(even) {
  5165. stroke: rgb(165, 24, 201);
  5166. }*/
  5167. #background {
  5168. fill: #FCFCFC;
  5169. stroke: none;
  5170. }
  5171. #pupil {
  5172. fill: rgb(165, 24, 201);
  5173. }
  5174. </style>
  5175. </svg>