ligne.svg 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg
  3. xmlns:dc="http://purl.org/dc/elements/1.1/"
  4. xmlns:cc="http://creativecommons.org/ns#"
  5. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  6. xmlns:svg="http://www.w3.org/2000/svg"
  7. xmlns="http://www.w3.org/2000/svg"
  8. xmlns:xlink="http://www.w3.org/1999/xlink"
  9. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  10. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  11. sodipodi:docname="ligne.svg"
  12. inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
  13. id="svg8"
  14. version="1.1"
  15. viewBox="0 0 508.00001 352.77778"
  16. height="1000pt"
  17. width="1440pt">
  18. <style
  19. id="style1254"></style>
  20. <defs
  21. id="defs2" />
  22. <sodipodi:namedview
  23. inkscape:window-maximized="0"
  24. inkscape:window-y="90"
  25. inkscape:window-x="60"
  26. inkscape:window-height="930"
  27. inkscape:window-width="1800"
  28. units="pt"
  29. showgrid="false"
  30. inkscape:document-rotation="0"
  31. inkscape:current-layer="layer1"
  32. inkscape:document-units="mm"
  33. inkscape:cy="627.63885"
  34. inkscape:cx="1212.3788"
  35. inkscape:zoom="0.43015662"
  36. inkscape:pageshadow="2"
  37. inkscape:pageopacity="0.0"
  38. borderopacity="1.0"
  39. bordercolor="#666666"
  40. pagecolor="#ffffff"
  41. id="base"
  42. showguides="true"
  43. inkscape:guide-bbox="true">
  44. <inkscape:grid
  45. spacingy="9.9999999"
  46. spacingx="9.9999999"
  47. id="grid10"
  48. type="xygrid" />
  49. <sodipodi:guide
  50. position="483.37458,8.7112984"
  51. orientation="1,0"
  52. id="guide73538" />
  53. </sodipodi:namedview>
  54. <metadata
  55. id="metadata5">
  56. <rdf:RDF>
  57. <cc:Work
  58. rdf:about="">
  59. <dc:format>image/svg+xml</dc:format>
  60. <dc:type
  61. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  62. <dc:title />
  63. </cc:Work>
  64. </rdf:RDF>
  65. </metadata>
  66. <g
  67. id="layer1"
  68. inkscape:groupmode="layer"
  69. inkscape:label="Calque 1">
  70. <g
  71. style="stroke-width:0.43968607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  72. transform="matrix(0.60175509,0,0,0.60175509,-209.66885,407.79816)"
  73. id="g73752">
  74. <g
  75. style="stroke-width:0.43968607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  76. id="g1609"
  77. transform="matrix(1,0,-0.45,1,21.538707,-69.999968)"
  78. inkscape:export-filename="/home/sandrine/Documents/TAF FIGLI/TLP/TAF/site/elements graphiques/lignes.svg.png"
  79. inkscape:export-xdpi="300"
  80. inkscape:export-ydpi="300">
  81. <g
  82. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  83. id="g1483"
  84. transform="matrix(1,0,0,1.5493707,0,-219.7483)">
  85. <path
  86. inkscape:tile-y0="-50.000001"
  87. inkscape:tile-x0="-50.176501"
  88. inkscape:tile-h="450"
  89. inkscape:tile-w="0.35299999"
  90. inkscape:tile-cy="175"
  91. inkscape:tile-cx="-50.000001"
  92. id="path1381"
  93. d="M -40,-50 V 399.99999"
  94. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
  95. <path
  96. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
  97. d="M 597.25529,-50 V 400"
  98. id="path1383" />
  99. <use
  100. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  101. height="100%"
  102. width="100%"
  103. id="use1385"
  104. transform="translate(12.745064)"
  105. xlink:href="#path1011"
  106. inkscape:tiled-clone-of="#path1011"
  107. y="0"
  108. x="0" />
  109. <use
  110. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  111. height="100%"
  112. width="100%"
  113. id="use1387"
  114. transform="translate(25.490163)"
  115. xlink:href="#path1011"
  116. inkscape:tiled-clone-of="#path1011"
  117. y="0"
  118. x="0" />
  119. <use
  120. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  121. height="100%"
  122. width="100%"
  123. id="use1389"
  124. transform="translate(38.23526)"
  125. xlink:href="#path1011"
  126. inkscape:tiled-clone-of="#path1011"
  127. y="0"
  128. x="0" />
  129. <use
  130. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  131. height="100%"
  132. width="100%"
  133. id="use1391"
  134. transform="translate(50.980359)"
  135. xlink:href="#path1011"
  136. inkscape:tiled-clone-of="#path1011"
  137. y="0"
  138. x="0" />
  139. <use
  140. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  141. height="100%"
  142. width="100%"
  143. id="use1393"
  144. transform="translate(63.725457)"
  145. xlink:href="#path1011"
  146. inkscape:tiled-clone-of="#path1011"
  147. y="0"
  148. x="0" />
  149. <use
  150. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  151. height="100%"
  152. width="100%"
  153. id="use1395"
  154. transform="translate(76.470555)"
  155. xlink:href="#path1011"
  156. inkscape:tiled-clone-of="#path1011"
  157. y="0"
  158. x="0" />
  159. <use
  160. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  161. height="100%"
  162. width="100%"
  163. id="use1397"
  164. transform="translate(89.215651)"
  165. xlink:href="#path1011"
  166. inkscape:tiled-clone-of="#path1011"
  167. y="0"
  168. x="0" />
  169. <use
  170. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  171. height="100%"
  172. width="100%"
  173. id="use1399"
  174. transform="translate(101.96075)"
  175. xlink:href="#path1011"
  176. inkscape:tiled-clone-of="#path1011"
  177. y="0"
  178. x="0" />
  179. <use
  180. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  181. height="100%"
  182. width="100%"
  183. id="use1401"
  184. transform="translate(114.70585)"
  185. xlink:href="#path1011"
  186. inkscape:tiled-clone-of="#path1011"
  187. y="0"
  188. x="0" />
  189. <use
  190. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  191. height="100%"
  192. width="100%"
  193. id="use1403"
  194. transform="translate(127.45094)"
  195. xlink:href="#path1011"
  196. inkscape:tiled-clone-of="#path1011"
  197. y="0"
  198. x="0" />
  199. <use
  200. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  201. height="100%"
  202. width="100%"
  203. id="use1405"
  204. transform="translate(140.19604)"
  205. xlink:href="#path1011"
  206. inkscape:tiled-clone-of="#path1011"
  207. y="0"
  208. x="0" />
  209. <use
  210. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  211. height="100%"
  212. width="100%"
  213. id="use1407"
  214. transform="translate(152.94114)"
  215. xlink:href="#path1011"
  216. inkscape:tiled-clone-of="#path1011"
  217. y="0"
  218. x="0" />
  219. <use
  220. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  221. height="100%"
  222. width="100%"
  223. id="use1409"
  224. transform="translate(165.68623)"
  225. xlink:href="#path1011"
  226. inkscape:tiled-clone-of="#path1011"
  227. y="0"
  228. x="0" />
  229. <use
  230. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  231. height="100%"
  232. width="100%"
  233. id="use1411"
  234. transform="translate(178.43133)"
  235. xlink:href="#path1011"
  236. inkscape:tiled-clone-of="#path1011"
  237. y="0"
  238. x="0" />
  239. <use
  240. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  241. height="100%"
  242. width="100%"
  243. id="use1413"
  244. transform="translate(191.17643)"
  245. xlink:href="#path1011"
  246. inkscape:tiled-clone-of="#path1011"
  247. y="0"
  248. x="0" />
  249. <use
  250. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  251. height="100%"
  252. width="100%"
  253. id="use1415"
  254. transform="translate(203.92153)"
  255. xlink:href="#path1011"
  256. inkscape:tiled-clone-of="#path1011"
  257. y="0"
  258. x="0" />
  259. <use
  260. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  261. height="100%"
  262. width="100%"
  263. id="use1417"
  264. transform="translate(216.66664)"
  265. xlink:href="#path1011"
  266. inkscape:tiled-clone-of="#path1011"
  267. y="0"
  268. x="0" />
  269. <use
  270. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  271. height="100%"
  272. width="100%"
  273. id="use1419"
  274. transform="translate(229.41174)"
  275. xlink:href="#path1011"
  276. inkscape:tiled-clone-of="#path1011"
  277. y="0"
  278. x="0" />
  279. <use
  280. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  281. height="100%"
  282. width="100%"
  283. id="use1421"
  284. transform="translate(242.15685)"
  285. xlink:href="#path1011"
  286. inkscape:tiled-clone-of="#path1011"
  287. y="0"
  288. x="0" />
  289. <use
  290. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  291. height="100%"
  292. width="100%"
  293. id="use1423"
  294. transform="translate(254.90195)"
  295. xlink:href="#path1011"
  296. inkscape:tiled-clone-of="#path1011"
  297. y="0"
  298. x="0" />
  299. <use
  300. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  301. height="100%"
  302. width="100%"
  303. id="use1425"
  304. transform="translate(267.64705)"
  305. xlink:href="#path1011"
  306. inkscape:tiled-clone-of="#path1011"
  307. y="0"
  308. x="0" />
  309. <use
  310. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  311. height="100%"
  312. width="100%"
  313. id="use1427"
  314. transform="translate(280.39216)"
  315. xlink:href="#path1011"
  316. inkscape:tiled-clone-of="#path1011"
  317. y="0"
  318. x="0" />
  319. <use
  320. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  321. height="100%"
  322. width="100%"
  323. id="use1429"
  324. transform="translate(293.13726)"
  325. xlink:href="#path1011"
  326. inkscape:tiled-clone-of="#path1011"
  327. y="0"
  328. x="0" />
  329. <use
  330. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  331. height="100%"
  332. width="100%"
  333. id="use1431"
  334. transform="translate(305.88237)"
  335. xlink:href="#path1011"
  336. inkscape:tiled-clone-of="#path1011"
  337. y="0"
  338. x="0" />
  339. <use
  340. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  341. height="100%"
  342. width="100%"
  343. id="use1433"
  344. transform="translate(318.62745)"
  345. xlink:href="#path1011"
  346. inkscape:tiled-clone-of="#path1011"
  347. y="0"
  348. x="0" />
  349. <use
  350. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  351. height="100%"
  352. width="100%"
  353. id="use1435"
  354. transform="translate(331.37257)"
  355. xlink:href="#path1011"
  356. inkscape:tiled-clone-of="#path1011"
  357. y="0"
  358. x="0" />
  359. <use
  360. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  361. height="100%"
  362. width="100%"
  363. id="use1437"
  364. transform="translate(344.11769)"
  365. xlink:href="#path1011"
  366. inkscape:tiled-clone-of="#path1011"
  367. y="0"
  368. x="0" />
  369. <use
  370. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  371. height="100%"
  372. width="100%"
  373. id="use1439"
  374. transform="translate(356.86281)"
  375. xlink:href="#path1011"
  376. inkscape:tiled-clone-of="#path1011"
  377. y="0"
  378. x="0" />
  379. <use
  380. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  381. height="100%"
  382. width="100%"
  383. id="use1441"
  384. transform="translate(369.60793)"
  385. xlink:href="#path1011"
  386. inkscape:tiled-clone-of="#path1011"
  387. y="0"
  388. x="0" />
  389. <use
  390. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  391. height="100%"
  392. width="100%"
  393. id="use1443"
  394. transform="translate(382.35305)"
  395. xlink:href="#path1011"
  396. inkscape:tiled-clone-of="#path1011"
  397. y="0"
  398. x="0" />
  399. <use
  400. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  401. height="100%"
  402. width="100%"
  403. id="use1445"
  404. transform="translate(395.09817)"
  405. xlink:href="#path1011"
  406. inkscape:tiled-clone-of="#path1011"
  407. y="0"
  408. x="0" />
  409. <use
  410. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  411. height="100%"
  412. width="100%"
  413. id="use1447"
  414. transform="translate(407.84329)"
  415. xlink:href="#path1011"
  416. inkscape:tiled-clone-of="#path1011"
  417. y="0"
  418. x="0" />
  419. <use
  420. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  421. height="100%"
  422. width="100%"
  423. id="use1449"
  424. transform="translate(420.58841)"
  425. xlink:href="#path1011"
  426. inkscape:tiled-clone-of="#path1011"
  427. y="0"
  428. x="0" />
  429. <use
  430. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  431. height="100%"
  432. width="100%"
  433. id="use1451"
  434. transform="translate(433.33353)"
  435. xlink:href="#path1011"
  436. inkscape:tiled-clone-of="#path1011"
  437. y="0"
  438. x="0" />
  439. <use
  440. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  441. height="100%"
  442. width="100%"
  443. id="use1453"
  444. transform="translate(446.07865)"
  445. xlink:href="#path1011"
  446. inkscape:tiled-clone-of="#path1011"
  447. y="0"
  448. x="0" />
  449. <use
  450. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  451. height="100%"
  452. width="100%"
  453. id="use1455"
  454. transform="translate(458.82377)"
  455. xlink:href="#path1011"
  456. inkscape:tiled-clone-of="#path1011"
  457. y="0"
  458. x="0" />
  459. <use
  460. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  461. height="100%"
  462. width="100%"
  463. id="use1457"
  464. transform="translate(471.56889)"
  465. xlink:href="#path1011"
  466. inkscape:tiled-clone-of="#path1011"
  467. y="0"
  468. x="0" />
  469. <use
  470. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  471. height="100%"
  472. width="100%"
  473. id="use1459"
  474. transform="translate(484.31401)"
  475. xlink:href="#path1011"
  476. inkscape:tiled-clone-of="#path1011"
  477. y="0"
  478. x="0" />
  479. <use
  480. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  481. height="100%"
  482. width="100%"
  483. id="use1461"
  484. transform="translate(497.05913)"
  485. xlink:href="#path1011"
  486. inkscape:tiled-clone-of="#path1011"
  487. y="0"
  488. x="0" />
  489. <use
  490. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  491. height="100%"
  492. width="100%"
  493. id="use1463"
  494. transform="translate(509.80425)"
  495. xlink:href="#path1011"
  496. inkscape:tiled-clone-of="#path1011"
  497. y="0"
  498. x="0" />
  499. <use
  500. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  501. height="100%"
  502. width="100%"
  503. id="use1465"
  504. transform="translate(522.54937)"
  505. xlink:href="#path1011"
  506. inkscape:tiled-clone-of="#path1011"
  507. y="0"
  508. x="0" />
  509. <use
  510. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  511. height="100%"
  512. width="100%"
  513. id="use1467"
  514. transform="translate(535.29449)"
  515. xlink:href="#path1011"
  516. inkscape:tiled-clone-of="#path1011"
  517. y="0"
  518. x="0" />
  519. <use
  520. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  521. height="100%"
  522. width="100%"
  523. id="use1469"
  524. transform="translate(548.03961)"
  525. xlink:href="#path1011"
  526. inkscape:tiled-clone-of="#path1011"
  527. y="0"
  528. x="0" />
  529. <use
  530. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  531. height="100%"
  532. width="100%"
  533. id="use1471"
  534. transform="translate(560.78473)"
  535. xlink:href="#path1011"
  536. inkscape:tiled-clone-of="#path1011"
  537. y="0"
  538. x="0" />
  539. <use
  540. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  541. height="100%"
  542. width="100%"
  543. id="use1473"
  544. transform="translate(573.52985)"
  545. xlink:href="#path1011"
  546. inkscape:tiled-clone-of="#path1011"
  547. y="0"
  548. x="0" />
  549. <use
  550. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  551. height="100%"
  552. width="100%"
  553. id="use1475"
  554. transform="translate(586.27494)"
  555. xlink:href="#path1011"
  556. inkscape:tiled-clone-of="#path1011"
  557. y="0"
  558. x="0" />
  559. <use
  560. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  561. height="100%"
  562. width="100%"
  563. id="use1477"
  564. transform="translate(599.02003)"
  565. xlink:href="#path1011"
  566. inkscape:tiled-clone-of="#path1011"
  567. y="0"
  568. x="0" />
  569. <use
  570. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  571. height="100%"
  572. width="100%"
  573. id="use1479"
  574. transform="translate(611.76512)"
  575. xlink:href="#path1011"
  576. inkscape:tiled-clone-of="#path1011"
  577. y="0"
  578. x="0" />
  579. <use
  580. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  581. height="100%"
  582. width="100%"
  583. id="use1481"
  584. transform="translate(624.5102)"
  585. xlink:href="#path1011"
  586. inkscape:tiled-clone-of="#path1011"
  587. y="0"
  588. x="0" />
  589. </g>
  590. <g
  591. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  592. transform="matrix(1,0,0,1.5493707,-649.99999,-219.7483)"
  593. id="g1379">
  594. <path
  595. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
  596. d="M -40,-50 V 399.99999"
  597. id="path1011"
  598. inkscape:tile-cx="-50.000001"
  599. inkscape:tile-cy="175"
  600. inkscape:tile-w="0.35299999"
  601. inkscape:tile-h="450"
  602. inkscape:tile-x0="-50.176501"
  603. inkscape:tile-y0="-50.000001" />
  604. <path
  605. id="path1011-3"
  606. d="M 597.25529,-50 V 400"
  607. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
  608. <use
  609. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  610. x="0"
  611. y="0"
  612. inkscape:tiled-clone-of="#path1011"
  613. xlink:href="#path1011"
  614. transform="translate(12.745064)"
  615. id="use1030"
  616. width="100%"
  617. height="100%" />
  618. <use
  619. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  620. x="0"
  621. y="0"
  622. inkscape:tiled-clone-of="#path1011"
  623. xlink:href="#path1011"
  624. transform="translate(25.490163)"
  625. id="use1032"
  626. width="100%"
  627. height="100%" />
  628. <use
  629. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  630. x="0"
  631. y="0"
  632. inkscape:tiled-clone-of="#path1011"
  633. xlink:href="#path1011"
  634. transform="translate(38.23526)"
  635. id="use1034"
  636. width="100%"
  637. height="100%" />
  638. <use
  639. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  640. x="0"
  641. y="0"
  642. inkscape:tiled-clone-of="#path1011"
  643. xlink:href="#path1011"
  644. transform="translate(50.980359)"
  645. id="use1036"
  646. width="100%"
  647. height="100%" />
  648. <use
  649. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  650. x="0"
  651. y="0"
  652. inkscape:tiled-clone-of="#path1011"
  653. xlink:href="#path1011"
  654. transform="translate(63.725457)"
  655. id="use1038"
  656. width="100%"
  657. height="100%" />
  658. <use
  659. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  660. x="0"
  661. y="0"
  662. inkscape:tiled-clone-of="#path1011"
  663. xlink:href="#path1011"
  664. transform="translate(76.470555)"
  665. id="use1040"
  666. width="100%"
  667. height="100%" />
  668. <use
  669. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  670. x="0"
  671. y="0"
  672. inkscape:tiled-clone-of="#path1011"
  673. xlink:href="#path1011"
  674. transform="translate(89.215651)"
  675. id="use1042"
  676. width="100%"
  677. height="100%" />
  678. <use
  679. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  680. x="0"
  681. y="0"
  682. inkscape:tiled-clone-of="#path1011"
  683. xlink:href="#path1011"
  684. transform="translate(101.96075)"
  685. id="use1044"
  686. width="100%"
  687. height="100%" />
  688. <use
  689. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  690. x="0"
  691. y="0"
  692. inkscape:tiled-clone-of="#path1011"
  693. xlink:href="#path1011"
  694. transform="translate(114.70585)"
  695. id="use1046"
  696. width="100%"
  697. height="100%" />
  698. <use
  699. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  700. x="0"
  701. y="0"
  702. inkscape:tiled-clone-of="#path1011"
  703. xlink:href="#path1011"
  704. transform="translate(127.45094)"
  705. id="use1048"
  706. width="100%"
  707. height="100%" />
  708. <use
  709. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  710. x="0"
  711. y="0"
  712. inkscape:tiled-clone-of="#path1011"
  713. xlink:href="#path1011"
  714. transform="translate(140.19604)"
  715. id="use1050"
  716. width="100%"
  717. height="100%" />
  718. <use
  719. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  720. x="0"
  721. y="0"
  722. inkscape:tiled-clone-of="#path1011"
  723. xlink:href="#path1011"
  724. transform="translate(152.94114)"
  725. id="use1052"
  726. width="100%"
  727. height="100%" />
  728. <use
  729. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  730. x="0"
  731. y="0"
  732. inkscape:tiled-clone-of="#path1011"
  733. xlink:href="#path1011"
  734. transform="translate(165.68623)"
  735. id="use1054"
  736. width="100%"
  737. height="100%" />
  738. <use
  739. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  740. x="0"
  741. y="0"
  742. inkscape:tiled-clone-of="#path1011"
  743. xlink:href="#path1011"
  744. transform="translate(178.43133)"
  745. id="use1056"
  746. width="100%"
  747. height="100%" />
  748. <use
  749. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  750. x="0"
  751. y="0"
  752. inkscape:tiled-clone-of="#path1011"
  753. xlink:href="#path1011"
  754. transform="translate(191.17643)"
  755. id="use1058"
  756. width="100%"
  757. height="100%" />
  758. <use
  759. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  760. x="0"
  761. y="0"
  762. inkscape:tiled-clone-of="#path1011"
  763. xlink:href="#path1011"
  764. transform="translate(203.92153)"
  765. id="use1060"
  766. width="100%"
  767. height="100%" />
  768. <use
  769. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  770. x="0"
  771. y="0"
  772. inkscape:tiled-clone-of="#path1011"
  773. xlink:href="#path1011"
  774. transform="translate(216.66664)"
  775. id="use1062"
  776. width="100%"
  777. height="100%" />
  778. <use
  779. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  780. x="0"
  781. y="0"
  782. inkscape:tiled-clone-of="#path1011"
  783. xlink:href="#path1011"
  784. transform="translate(229.41174)"
  785. id="use1064"
  786. width="100%"
  787. height="100%" />
  788. <use
  789. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  790. x="0"
  791. y="0"
  792. inkscape:tiled-clone-of="#path1011"
  793. xlink:href="#path1011"
  794. transform="translate(242.15685)"
  795. id="use1066"
  796. width="100%"
  797. height="100%" />
  798. <use
  799. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  800. x="0"
  801. y="0"
  802. inkscape:tiled-clone-of="#path1011"
  803. xlink:href="#path1011"
  804. transform="translate(254.90195)"
  805. id="use1068"
  806. width="100%"
  807. height="100%" />
  808. <use
  809. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  810. x="0"
  811. y="0"
  812. inkscape:tiled-clone-of="#path1011"
  813. xlink:href="#path1011"
  814. transform="translate(267.64705)"
  815. id="use1070"
  816. width="100%"
  817. height="100%" />
  818. <use
  819. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  820. x="0"
  821. y="0"
  822. inkscape:tiled-clone-of="#path1011"
  823. xlink:href="#path1011"
  824. transform="translate(280.39216)"
  825. id="use1072"
  826. width="100%"
  827. height="100%" />
  828. <use
  829. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  830. x="0"
  831. y="0"
  832. inkscape:tiled-clone-of="#path1011"
  833. xlink:href="#path1011"
  834. transform="translate(293.13726)"
  835. id="use1074"
  836. width="100%"
  837. height="100%" />
  838. <use
  839. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  840. x="0"
  841. y="0"
  842. inkscape:tiled-clone-of="#path1011"
  843. xlink:href="#path1011"
  844. transform="translate(305.88237)"
  845. id="use1076"
  846. width="100%"
  847. height="100%" />
  848. <use
  849. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  850. x="0"
  851. y="0"
  852. inkscape:tiled-clone-of="#path1011"
  853. xlink:href="#path1011"
  854. transform="translate(318.62745)"
  855. id="use1078"
  856. width="100%"
  857. height="100%" />
  858. <use
  859. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  860. x="0"
  861. y="0"
  862. inkscape:tiled-clone-of="#path1011"
  863. xlink:href="#path1011"
  864. transform="translate(331.37257)"
  865. id="use1080"
  866. width="100%"
  867. height="100%" />
  868. <use
  869. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  870. x="0"
  871. y="0"
  872. inkscape:tiled-clone-of="#path1011"
  873. xlink:href="#path1011"
  874. transform="translate(344.11769)"
  875. id="use1082"
  876. width="100%"
  877. height="100%" />
  878. <use
  879. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  880. x="0"
  881. y="0"
  882. inkscape:tiled-clone-of="#path1011"
  883. xlink:href="#path1011"
  884. transform="translate(356.86281)"
  885. id="use1084"
  886. width="100%"
  887. height="100%" />
  888. <use
  889. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  890. x="0"
  891. y="0"
  892. inkscape:tiled-clone-of="#path1011"
  893. xlink:href="#path1011"
  894. transform="translate(369.60793)"
  895. id="use1086"
  896. width="100%"
  897. height="100%" />
  898. <use
  899. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  900. x="0"
  901. y="0"
  902. inkscape:tiled-clone-of="#path1011"
  903. xlink:href="#path1011"
  904. transform="translate(382.35305)"
  905. id="use1088"
  906. width="100%"
  907. height="100%" />
  908. <use
  909. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  910. x="0"
  911. y="0"
  912. inkscape:tiled-clone-of="#path1011"
  913. xlink:href="#path1011"
  914. transform="translate(395.09817)"
  915. id="use1090"
  916. width="100%"
  917. height="100%" />
  918. <use
  919. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  920. x="0"
  921. y="0"
  922. inkscape:tiled-clone-of="#path1011"
  923. xlink:href="#path1011"
  924. transform="translate(407.84329)"
  925. id="use1092"
  926. width="100%"
  927. height="100%" />
  928. <use
  929. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  930. x="0"
  931. y="0"
  932. inkscape:tiled-clone-of="#path1011"
  933. xlink:href="#path1011"
  934. transform="translate(420.58841)"
  935. id="use1094"
  936. width="100%"
  937. height="100%" />
  938. <use
  939. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  940. x="0"
  941. y="0"
  942. inkscape:tiled-clone-of="#path1011"
  943. xlink:href="#path1011"
  944. transform="translate(433.33353)"
  945. id="use1096"
  946. width="100%"
  947. height="100%" />
  948. <use
  949. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  950. x="0"
  951. y="0"
  952. inkscape:tiled-clone-of="#path1011"
  953. xlink:href="#path1011"
  954. transform="translate(446.07865)"
  955. id="use1098"
  956. width="100%"
  957. height="100%" />
  958. <use
  959. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  960. x="0"
  961. y="0"
  962. inkscape:tiled-clone-of="#path1011"
  963. xlink:href="#path1011"
  964. transform="translate(458.82377)"
  965. id="use1100"
  966. width="100%"
  967. height="100%" />
  968. <use
  969. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  970. x="0"
  971. y="0"
  972. inkscape:tiled-clone-of="#path1011"
  973. xlink:href="#path1011"
  974. transform="translate(471.56889)"
  975. id="use1102"
  976. width="100%"
  977. height="100%" />
  978. <use
  979. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  980. x="0"
  981. y="0"
  982. inkscape:tiled-clone-of="#path1011"
  983. xlink:href="#path1011"
  984. transform="translate(484.31401)"
  985. id="use1104"
  986. width="100%"
  987. height="100%" />
  988. <use
  989. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  990. x="0"
  991. y="0"
  992. inkscape:tiled-clone-of="#path1011"
  993. xlink:href="#path1011"
  994. transform="translate(497.05913)"
  995. id="use1106"
  996. width="100%"
  997. height="100%" />
  998. <use
  999. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1000. x="0"
  1001. y="0"
  1002. inkscape:tiled-clone-of="#path1011"
  1003. xlink:href="#path1011"
  1004. transform="translate(509.80425)"
  1005. id="use1108"
  1006. width="100%"
  1007. height="100%" />
  1008. <use
  1009. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1010. x="0"
  1011. y="0"
  1012. inkscape:tiled-clone-of="#path1011"
  1013. xlink:href="#path1011"
  1014. transform="translate(522.54937)"
  1015. id="use1110"
  1016. width="100%"
  1017. height="100%" />
  1018. <use
  1019. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1020. x="0"
  1021. y="0"
  1022. inkscape:tiled-clone-of="#path1011"
  1023. xlink:href="#path1011"
  1024. transform="translate(535.29449)"
  1025. id="use1112"
  1026. width="100%"
  1027. height="100%" />
  1028. <use
  1029. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1030. x="0"
  1031. y="0"
  1032. inkscape:tiled-clone-of="#path1011"
  1033. xlink:href="#path1011"
  1034. transform="translate(548.03961)"
  1035. id="use1114"
  1036. width="100%"
  1037. height="100%" />
  1038. <use
  1039. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1040. x="0"
  1041. y="0"
  1042. inkscape:tiled-clone-of="#path1011"
  1043. xlink:href="#path1011"
  1044. transform="translate(560.78473)"
  1045. id="use1116"
  1046. width="100%"
  1047. height="100%" />
  1048. <use
  1049. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1050. x="0"
  1051. y="0"
  1052. inkscape:tiled-clone-of="#path1011"
  1053. xlink:href="#path1011"
  1054. transform="translate(573.52985)"
  1055. id="use1118"
  1056. width="100%"
  1057. height="100%" />
  1058. <use
  1059. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1060. x="0"
  1061. y="0"
  1062. inkscape:tiled-clone-of="#path1011"
  1063. xlink:href="#path1011"
  1064. transform="translate(586.27494)"
  1065. id="use1120"
  1066. width="100%"
  1067. height="100%" />
  1068. <use
  1069. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1070. x="0"
  1071. y="0"
  1072. inkscape:tiled-clone-of="#path1011"
  1073. xlink:href="#path1011"
  1074. transform="translate(599.02003)"
  1075. id="use1122"
  1076. width="100%"
  1077. height="100%" />
  1078. <use
  1079. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1080. x="0"
  1081. y="0"
  1082. inkscape:tiled-clone-of="#path1011"
  1083. xlink:href="#path1011"
  1084. transform="translate(611.76512)"
  1085. id="use1124"
  1086. width="100%"
  1087. height="100%" />
  1088. <use
  1089. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1090. x="0"
  1091. y="0"
  1092. inkscape:tiled-clone-of="#path1011"
  1093. xlink:href="#path1011"
  1094. transform="translate(624.5102)"
  1095. id="use1126"
  1096. width="100%"
  1097. height="100%" />
  1098. </g>
  1099. </g>
  1100. <g
  1101. style="stroke-width:0.43968607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1102. inkscape:export-ydpi="300"
  1103. inkscape:export-xdpi="300"
  1104. inkscape:export-filename="/home/sandrine/Documents/TAF FIGLI/TLP/TAF/site/elements graphiques/lignes.svg.png"
  1105. transform="matrix(1,0,-0.45,1,1321.7034,-69.999968)"
  1106. id="g1609-6">
  1107. <g
  1108. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1109. transform="matrix(1,0,0,1.5493707,0,-219.7483)"
  1110. id="g1483-1">
  1111. <path
  1112. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
  1113. d="M -40,-50 V 399.99999"
  1114. id="path1381-0"
  1115. inkscape:tile-cx="-50.000001"
  1116. inkscape:tile-cy="175"
  1117. inkscape:tile-w="0.35299999"
  1118. inkscape:tile-h="450"
  1119. inkscape:tile-x0="-50.176501"
  1120. inkscape:tile-y0="-50.000001" />
  1121. <path
  1122. id="path1383-6"
  1123. d="M 597.25529,-50 V 400"
  1124. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
  1125. <use
  1126. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1127. x="0"
  1128. y="0"
  1129. inkscape:tiled-clone-of="#path1011-0"
  1130. xlink:href="#path1011-0"
  1131. transform="translate(12.745064)"
  1132. id="use1385-1"
  1133. width="100%"
  1134. height="100%" />
  1135. <use
  1136. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1137. x="0"
  1138. y="0"
  1139. inkscape:tiled-clone-of="#path1011-0"
  1140. xlink:href="#path1011-0"
  1141. transform="translate(25.490163)"
  1142. id="use1387-5"
  1143. width="100%"
  1144. height="100%" />
  1145. <use
  1146. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1147. x="0"
  1148. y="0"
  1149. inkscape:tiled-clone-of="#path1011-0"
  1150. xlink:href="#path1011-0"
  1151. transform="translate(38.23526)"
  1152. id="use1389-9"
  1153. width="100%"
  1154. height="100%" />
  1155. <use
  1156. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1157. x="0"
  1158. y="0"
  1159. inkscape:tiled-clone-of="#path1011-0"
  1160. xlink:href="#path1011-0"
  1161. transform="translate(50.980359)"
  1162. id="use1391-4"
  1163. width="100%"
  1164. height="100%" />
  1165. <use
  1166. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1167. x="0"
  1168. y="0"
  1169. inkscape:tiled-clone-of="#path1011-0"
  1170. xlink:href="#path1011-0"
  1171. transform="translate(63.725457)"
  1172. id="use1393-9"
  1173. width="100%"
  1174. height="100%" />
  1175. <use
  1176. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1177. x="0"
  1178. y="0"
  1179. inkscape:tiled-clone-of="#path1011-0"
  1180. xlink:href="#path1011-0"
  1181. transform="translate(76.470555)"
  1182. id="use1395-0"
  1183. width="100%"
  1184. height="100%" />
  1185. <use
  1186. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1187. x="0"
  1188. y="0"
  1189. inkscape:tiled-clone-of="#path1011-0"
  1190. xlink:href="#path1011-0"
  1191. transform="translate(89.215651)"
  1192. id="use1397-9"
  1193. width="100%"
  1194. height="100%" />
  1195. <use
  1196. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1197. x="0"
  1198. y="0"
  1199. inkscape:tiled-clone-of="#path1011-0"
  1200. xlink:href="#path1011-0"
  1201. transform="translate(101.96075)"
  1202. id="use1399-1"
  1203. width="100%"
  1204. height="100%" />
  1205. <use
  1206. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1207. x="0"
  1208. y="0"
  1209. inkscape:tiled-clone-of="#path1011-0"
  1210. xlink:href="#path1011-0"
  1211. transform="translate(114.70585)"
  1212. id="use1401-7"
  1213. width="100%"
  1214. height="100%" />
  1215. <use
  1216. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1217. x="0"
  1218. y="0"
  1219. inkscape:tiled-clone-of="#path1011-0"
  1220. xlink:href="#path1011-0"
  1221. transform="translate(127.45094)"
  1222. id="use1403-7"
  1223. width="100%"
  1224. height="100%" />
  1225. <use
  1226. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1227. x="0"
  1228. y="0"
  1229. inkscape:tiled-clone-of="#path1011-0"
  1230. xlink:href="#path1011-0"
  1231. transform="translate(140.19604)"
  1232. id="use1405-1"
  1233. width="100%"
  1234. height="100%" />
  1235. <use
  1236. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1237. x="0"
  1238. y="0"
  1239. inkscape:tiled-clone-of="#path1011-0"
  1240. xlink:href="#path1011-0"
  1241. transform="translate(152.94114)"
  1242. id="use1407-1"
  1243. width="100%"
  1244. height="100%" />
  1245. <use
  1246. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1247. x="0"
  1248. y="0"
  1249. inkscape:tiled-clone-of="#path1011-0"
  1250. xlink:href="#path1011-0"
  1251. transform="translate(165.68623)"
  1252. id="use1409-5"
  1253. width="100%"
  1254. height="100%" />
  1255. <use
  1256. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1257. x="0"
  1258. y="0"
  1259. inkscape:tiled-clone-of="#path1011-0"
  1260. xlink:href="#path1011-0"
  1261. transform="translate(178.43133)"
  1262. id="use1411-9"
  1263. width="100%"
  1264. height="100%" />
  1265. <use
  1266. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1267. x="0"
  1268. y="0"
  1269. inkscape:tiled-clone-of="#path1011-0"
  1270. xlink:href="#path1011-0"
  1271. transform="translate(191.17643)"
  1272. id="use1413-7"
  1273. width="100%"
  1274. height="100%" />
  1275. <use
  1276. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1277. x="0"
  1278. y="0"
  1279. inkscape:tiled-clone-of="#path1011-0"
  1280. xlink:href="#path1011-0"
  1281. transform="translate(203.92153)"
  1282. id="use1415-7"
  1283. width="100%"
  1284. height="100%" />
  1285. <use
  1286. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1287. x="0"
  1288. y="0"
  1289. inkscape:tiled-clone-of="#path1011-0"
  1290. xlink:href="#path1011-0"
  1291. transform="translate(216.66664)"
  1292. id="use1417-6"
  1293. width="100%"
  1294. height="100%" />
  1295. <use
  1296. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1297. x="0"
  1298. y="0"
  1299. inkscape:tiled-clone-of="#path1011-0"
  1300. xlink:href="#path1011-0"
  1301. transform="translate(229.41174)"
  1302. id="use1419-7"
  1303. width="100%"
  1304. height="100%" />
  1305. <use
  1306. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1307. x="0"
  1308. y="0"
  1309. inkscape:tiled-clone-of="#path1011-0"
  1310. xlink:href="#path1011-0"
  1311. transform="translate(242.15685)"
  1312. id="use1421-3"
  1313. width="100%"
  1314. height="100%" />
  1315. <use
  1316. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1317. x="0"
  1318. y="0"
  1319. inkscape:tiled-clone-of="#path1011-0"
  1320. xlink:href="#path1011-0"
  1321. transform="translate(254.90195)"
  1322. id="use1423-6"
  1323. width="100%"
  1324. height="100%" />
  1325. <use
  1326. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1327. x="0"
  1328. y="0"
  1329. inkscape:tiled-clone-of="#path1011-0"
  1330. xlink:href="#path1011-0"
  1331. transform="translate(267.64705)"
  1332. id="use1425-5"
  1333. width="100%"
  1334. height="100%" />
  1335. <use
  1336. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1337. x="0"
  1338. y="0"
  1339. inkscape:tiled-clone-of="#path1011-0"
  1340. xlink:href="#path1011-0"
  1341. transform="translate(280.39216)"
  1342. id="use1427-6"
  1343. width="100%"
  1344. height="100%" />
  1345. <use
  1346. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1347. x="0"
  1348. y="0"
  1349. inkscape:tiled-clone-of="#path1011-0"
  1350. xlink:href="#path1011-0"
  1351. transform="translate(293.13726)"
  1352. id="use1429-3"
  1353. width="100%"
  1354. height="100%" />
  1355. <use
  1356. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1357. x="0"
  1358. y="0"
  1359. inkscape:tiled-clone-of="#path1011-0"
  1360. xlink:href="#path1011-0"
  1361. transform="translate(305.88237)"
  1362. id="use1431-9"
  1363. width="100%"
  1364. height="100%" />
  1365. <use
  1366. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1367. x="0"
  1368. y="0"
  1369. inkscape:tiled-clone-of="#path1011-0"
  1370. xlink:href="#path1011-0"
  1371. transform="translate(318.62745)"
  1372. id="use1433-4"
  1373. width="100%"
  1374. height="100%" />
  1375. <use
  1376. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1377. x="0"
  1378. y="0"
  1379. inkscape:tiled-clone-of="#path1011-0"
  1380. xlink:href="#path1011-0"
  1381. transform="translate(331.37257)"
  1382. id="use1435-8"
  1383. width="100%"
  1384. height="100%" />
  1385. <use
  1386. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1387. x="0"
  1388. y="0"
  1389. inkscape:tiled-clone-of="#path1011-0"
  1390. xlink:href="#path1011-0"
  1391. transform="translate(344.11769)"
  1392. id="use1437-1"
  1393. width="100%"
  1394. height="100%" />
  1395. <use
  1396. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1397. x="0"
  1398. y="0"
  1399. inkscape:tiled-clone-of="#path1011-0"
  1400. xlink:href="#path1011-0"
  1401. transform="translate(356.86281)"
  1402. id="use1439-2"
  1403. width="100%"
  1404. height="100%" />
  1405. <use
  1406. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1407. x="0"
  1408. y="0"
  1409. inkscape:tiled-clone-of="#path1011-0"
  1410. xlink:href="#path1011-0"
  1411. transform="translate(369.60793)"
  1412. id="use1441-9"
  1413. width="100%"
  1414. height="100%" />
  1415. <use
  1416. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1417. x="0"
  1418. y="0"
  1419. inkscape:tiled-clone-of="#path1011-0"
  1420. xlink:href="#path1011-0"
  1421. transform="translate(382.35305)"
  1422. id="use1443-3"
  1423. width="100%"
  1424. height="100%" />
  1425. <use
  1426. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1427. x="0"
  1428. y="0"
  1429. inkscape:tiled-clone-of="#path1011-0"
  1430. xlink:href="#path1011-0"
  1431. transform="translate(395.09817)"
  1432. id="use1445-9"
  1433. width="100%"
  1434. height="100%" />
  1435. <use
  1436. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1437. x="0"
  1438. y="0"
  1439. inkscape:tiled-clone-of="#path1011-0"
  1440. xlink:href="#path1011-0"
  1441. transform="translate(407.84329)"
  1442. id="use1447-0"
  1443. width="100%"
  1444. height="100%" />
  1445. <use
  1446. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1447. x="0"
  1448. y="0"
  1449. inkscape:tiled-clone-of="#path1011-0"
  1450. xlink:href="#path1011-0"
  1451. transform="translate(420.58841)"
  1452. id="use1449-8"
  1453. width="100%"
  1454. height="100%" />
  1455. <use
  1456. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1457. x="0"
  1458. y="0"
  1459. inkscape:tiled-clone-of="#path1011-0"
  1460. xlink:href="#path1011-0"
  1461. transform="translate(433.33353)"
  1462. id="use1451-8"
  1463. width="100%"
  1464. height="100%" />
  1465. <use
  1466. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1467. x="0"
  1468. y="0"
  1469. inkscape:tiled-clone-of="#path1011-0"
  1470. xlink:href="#path1011-0"
  1471. transform="translate(446.07865)"
  1472. id="use1453-5"
  1473. width="100%"
  1474. height="100%" />
  1475. <use
  1476. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1477. x="0"
  1478. y="0"
  1479. inkscape:tiled-clone-of="#path1011-0"
  1480. xlink:href="#path1011-0"
  1481. transform="translate(458.82377)"
  1482. id="use1455-0"
  1483. width="100%"
  1484. height="100%" />
  1485. <use
  1486. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1487. x="0"
  1488. y="0"
  1489. inkscape:tiled-clone-of="#path1011-0"
  1490. xlink:href="#path1011-0"
  1491. transform="translate(471.56889)"
  1492. id="use1457-9"
  1493. width="100%"
  1494. height="100%" />
  1495. <use
  1496. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1497. x="0"
  1498. y="0"
  1499. inkscape:tiled-clone-of="#path1011-0"
  1500. xlink:href="#path1011-0"
  1501. transform="translate(484.31401)"
  1502. id="use1459-6"
  1503. width="100%"
  1504. height="100%" />
  1505. <use
  1506. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1507. x="0"
  1508. y="0"
  1509. inkscape:tiled-clone-of="#path1011-0"
  1510. xlink:href="#path1011-0"
  1511. transform="translate(497.05913)"
  1512. id="use1461-3"
  1513. width="100%"
  1514. height="100%" />
  1515. <use
  1516. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1517. x="0"
  1518. y="0"
  1519. inkscape:tiled-clone-of="#path1011-0"
  1520. xlink:href="#path1011-0"
  1521. transform="translate(509.80425)"
  1522. id="use1463-8"
  1523. width="100%"
  1524. height="100%" />
  1525. <use
  1526. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1527. x="0"
  1528. y="0"
  1529. inkscape:tiled-clone-of="#path1011-0"
  1530. xlink:href="#path1011-0"
  1531. transform="translate(522.54937)"
  1532. id="use1465-5"
  1533. width="100%"
  1534. height="100%" />
  1535. <use
  1536. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1537. x="0"
  1538. y="0"
  1539. inkscape:tiled-clone-of="#path1011-0"
  1540. xlink:href="#path1011-0"
  1541. transform="translate(535.29449)"
  1542. id="use1467-6"
  1543. width="100%"
  1544. height="100%" />
  1545. <use
  1546. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1547. x="0"
  1548. y="0"
  1549. inkscape:tiled-clone-of="#path1011-0"
  1550. xlink:href="#path1011-0"
  1551. transform="translate(548.03961)"
  1552. id="use1469-1"
  1553. width="100%"
  1554. height="100%" />
  1555. <use
  1556. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1557. x="0"
  1558. y="0"
  1559. inkscape:tiled-clone-of="#path1011-0"
  1560. xlink:href="#path1011-0"
  1561. transform="translate(560.78473)"
  1562. id="use1471-1"
  1563. width="100%"
  1564. height="100%" />
  1565. <use
  1566. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1567. x="0"
  1568. y="0"
  1569. inkscape:tiled-clone-of="#path1011-0"
  1570. xlink:href="#path1011-0"
  1571. transform="translate(573.52985)"
  1572. id="use1473-5"
  1573. width="100%"
  1574. height="100%" />
  1575. <use
  1576. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1577. x="0"
  1578. y="0"
  1579. inkscape:tiled-clone-of="#path1011-0"
  1580. xlink:href="#path1011-0"
  1581. transform="translate(586.27494)"
  1582. id="use1475-9"
  1583. width="100%"
  1584. height="100%" />
  1585. <use
  1586. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1587. x="0"
  1588. y="0"
  1589. inkscape:tiled-clone-of="#path1011-0"
  1590. xlink:href="#path1011-0"
  1591. transform="translate(599.02003)"
  1592. id="use1477-8"
  1593. width="100%"
  1594. height="100%" />
  1595. <use
  1596. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1597. x="0"
  1598. y="0"
  1599. inkscape:tiled-clone-of="#path1011-0"
  1600. xlink:href="#path1011-0"
  1601. transform="translate(611.76512)"
  1602. id="use1479-4"
  1603. width="100%"
  1604. height="100%" />
  1605. <use
  1606. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1607. x="0"
  1608. y="0"
  1609. inkscape:tiled-clone-of="#path1011-0"
  1610. xlink:href="#path1011-0"
  1611. transform="translate(624.5102)"
  1612. id="use1481-8"
  1613. width="100%"
  1614. height="100%" />
  1615. </g>
  1616. <g
  1617. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1618. id="g1379-1"
  1619. transform="matrix(1,0,0,1.5493707,-649.99999,-219.7483)">
  1620. <path
  1621. inkscape:tile-y0="-50.000001"
  1622. inkscape:tile-x0="-50.176501"
  1623. inkscape:tile-h="450"
  1624. inkscape:tile-w="0.35299999"
  1625. inkscape:tile-cy="175"
  1626. inkscape:tile-cx="-50.000001"
  1627. id="path1011-0"
  1628. d="M -40,-50 V 399.99999"
  1629. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
  1630. <path
  1631. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
  1632. d="M 597.25529,-50 V 400"
  1633. id="path1011-3-3" />
  1634. <use
  1635. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1636. height="100%"
  1637. width="100%"
  1638. id="use1030-0"
  1639. transform="translate(12.745064)"
  1640. xlink:href="#path1011-0"
  1641. inkscape:tiled-clone-of="#path1011-0"
  1642. y="0"
  1643. x="0" />
  1644. <use
  1645. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1646. height="100%"
  1647. width="100%"
  1648. id="use1032-4"
  1649. transform="translate(25.490163)"
  1650. xlink:href="#path1011-0"
  1651. inkscape:tiled-clone-of="#path1011-0"
  1652. y="0"
  1653. x="0" />
  1654. <use
  1655. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1656. height="100%"
  1657. width="100%"
  1658. id="use1034-4"
  1659. transform="translate(38.23526)"
  1660. xlink:href="#path1011-0"
  1661. inkscape:tiled-clone-of="#path1011-0"
  1662. y="0"
  1663. x="0" />
  1664. <use
  1665. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1666. height="100%"
  1667. width="100%"
  1668. id="use1036-4"
  1669. transform="translate(50.980359)"
  1670. xlink:href="#path1011-0"
  1671. inkscape:tiled-clone-of="#path1011-0"
  1672. y="0"
  1673. x="0" />
  1674. <use
  1675. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1676. height="100%"
  1677. width="100%"
  1678. id="use1038-4"
  1679. transform="translate(63.725457)"
  1680. xlink:href="#path1011-0"
  1681. inkscape:tiled-clone-of="#path1011-0"
  1682. y="0"
  1683. x="0" />
  1684. <use
  1685. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1686. height="100%"
  1687. width="100%"
  1688. id="use1040-7"
  1689. transform="translate(76.470555)"
  1690. xlink:href="#path1011-0"
  1691. inkscape:tiled-clone-of="#path1011-0"
  1692. y="0"
  1693. x="0" />
  1694. <use
  1695. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1696. height="100%"
  1697. width="100%"
  1698. id="use1042-6"
  1699. transform="translate(89.215651)"
  1700. xlink:href="#path1011-0"
  1701. inkscape:tiled-clone-of="#path1011-0"
  1702. y="0"
  1703. x="0" />
  1704. <use
  1705. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1706. height="100%"
  1707. width="100%"
  1708. id="use1044-3"
  1709. transform="translate(101.96075)"
  1710. xlink:href="#path1011-0"
  1711. inkscape:tiled-clone-of="#path1011-0"
  1712. y="0"
  1713. x="0" />
  1714. <use
  1715. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1716. height="100%"
  1717. width="100%"
  1718. id="use1046-1"
  1719. transform="translate(114.70585)"
  1720. xlink:href="#path1011-0"
  1721. inkscape:tiled-clone-of="#path1011-0"
  1722. y="0"
  1723. x="0" />
  1724. <use
  1725. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1726. height="100%"
  1727. width="100%"
  1728. id="use1048-7"
  1729. transform="translate(127.45094)"
  1730. xlink:href="#path1011-0"
  1731. inkscape:tiled-clone-of="#path1011-0"
  1732. y="0"
  1733. x="0" />
  1734. <use
  1735. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1736. height="100%"
  1737. width="100%"
  1738. id="use1050-5"
  1739. transform="translate(140.19604)"
  1740. xlink:href="#path1011-0"
  1741. inkscape:tiled-clone-of="#path1011-0"
  1742. y="0"
  1743. x="0" />
  1744. <use
  1745. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1746. height="100%"
  1747. width="100%"
  1748. id="use1052-9"
  1749. transform="translate(152.94114)"
  1750. xlink:href="#path1011-0"
  1751. inkscape:tiled-clone-of="#path1011-0"
  1752. y="0"
  1753. x="0" />
  1754. <use
  1755. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1756. height="100%"
  1757. width="100%"
  1758. id="use1054-6"
  1759. transform="translate(165.68623)"
  1760. xlink:href="#path1011-0"
  1761. inkscape:tiled-clone-of="#path1011-0"
  1762. y="0"
  1763. x="0" />
  1764. <use
  1765. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1766. height="100%"
  1767. width="100%"
  1768. id="use1056-2"
  1769. transform="translate(178.43133)"
  1770. xlink:href="#path1011-0"
  1771. inkscape:tiled-clone-of="#path1011-0"
  1772. y="0"
  1773. x="0" />
  1774. <use
  1775. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1776. height="100%"
  1777. width="100%"
  1778. id="use1058-1"
  1779. transform="translate(191.17643)"
  1780. xlink:href="#path1011-0"
  1781. inkscape:tiled-clone-of="#path1011-0"
  1782. y="0"
  1783. x="0" />
  1784. <use
  1785. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1786. height="100%"
  1787. width="100%"
  1788. id="use1060-7"
  1789. transform="translate(203.92153)"
  1790. xlink:href="#path1011-0"
  1791. inkscape:tiled-clone-of="#path1011-0"
  1792. y="0"
  1793. x="0" />
  1794. <use
  1795. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1796. height="100%"
  1797. width="100%"
  1798. id="use1062-8"
  1799. transform="translate(216.66664)"
  1800. xlink:href="#path1011-0"
  1801. inkscape:tiled-clone-of="#path1011-0"
  1802. y="0"
  1803. x="0" />
  1804. <use
  1805. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1806. height="100%"
  1807. width="100%"
  1808. id="use1064-5"
  1809. transform="translate(229.41174)"
  1810. xlink:href="#path1011-0"
  1811. inkscape:tiled-clone-of="#path1011-0"
  1812. y="0"
  1813. x="0" />
  1814. <use
  1815. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1816. height="100%"
  1817. width="100%"
  1818. id="use1066-7"
  1819. transform="translate(242.15685)"
  1820. xlink:href="#path1011-0"
  1821. inkscape:tiled-clone-of="#path1011-0"
  1822. y="0"
  1823. x="0" />
  1824. <use
  1825. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1826. height="100%"
  1827. width="100%"
  1828. id="use1068-4"
  1829. transform="translate(254.90195)"
  1830. xlink:href="#path1011-0"
  1831. inkscape:tiled-clone-of="#path1011-0"
  1832. y="0"
  1833. x="0" />
  1834. <use
  1835. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1836. height="100%"
  1837. width="100%"
  1838. id="use1070-1"
  1839. transform="translate(267.64705)"
  1840. xlink:href="#path1011-0"
  1841. inkscape:tiled-clone-of="#path1011-0"
  1842. y="0"
  1843. x="0" />
  1844. <use
  1845. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1846. height="100%"
  1847. width="100%"
  1848. id="use1072-8"
  1849. transform="translate(280.39216)"
  1850. xlink:href="#path1011-0"
  1851. inkscape:tiled-clone-of="#path1011-0"
  1852. y="0"
  1853. x="0" />
  1854. <use
  1855. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1856. height="100%"
  1857. width="100%"
  1858. id="use1074-5"
  1859. transform="translate(293.13726)"
  1860. xlink:href="#path1011-0"
  1861. inkscape:tiled-clone-of="#path1011-0"
  1862. y="0"
  1863. x="0" />
  1864. <use
  1865. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1866. height="100%"
  1867. width="100%"
  1868. id="use1076-9"
  1869. transform="translate(305.88237)"
  1870. xlink:href="#path1011-0"
  1871. inkscape:tiled-clone-of="#path1011-0"
  1872. y="0"
  1873. x="0" />
  1874. <use
  1875. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1876. height="100%"
  1877. width="100%"
  1878. id="use1078-7"
  1879. transform="translate(318.62745)"
  1880. xlink:href="#path1011-0"
  1881. inkscape:tiled-clone-of="#path1011-0"
  1882. y="0"
  1883. x="0" />
  1884. <use
  1885. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1886. height="100%"
  1887. width="100%"
  1888. id="use1080-5"
  1889. transform="translate(331.37257)"
  1890. xlink:href="#path1011-0"
  1891. inkscape:tiled-clone-of="#path1011-0"
  1892. y="0"
  1893. x="0" />
  1894. <use
  1895. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1896. height="100%"
  1897. width="100%"
  1898. id="use1082-3"
  1899. transform="translate(344.11769)"
  1900. xlink:href="#path1011-0"
  1901. inkscape:tiled-clone-of="#path1011-0"
  1902. y="0"
  1903. x="0" />
  1904. <use
  1905. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1906. height="100%"
  1907. width="100%"
  1908. id="use1084-8"
  1909. transform="translate(356.86281)"
  1910. xlink:href="#path1011-0"
  1911. inkscape:tiled-clone-of="#path1011-0"
  1912. y="0"
  1913. x="0" />
  1914. <use
  1915. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1916. height="100%"
  1917. width="100%"
  1918. id="use1086-8"
  1919. transform="translate(369.60793)"
  1920. xlink:href="#path1011-0"
  1921. inkscape:tiled-clone-of="#path1011-0"
  1922. y="0"
  1923. x="0" />
  1924. <use
  1925. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1926. height="100%"
  1927. width="100%"
  1928. id="use1088-3"
  1929. transform="translate(382.35305)"
  1930. xlink:href="#path1011-0"
  1931. inkscape:tiled-clone-of="#path1011-0"
  1932. y="0"
  1933. x="0" />
  1934. <use
  1935. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1936. height="100%"
  1937. width="100%"
  1938. id="use1090-1"
  1939. transform="translate(395.09817)"
  1940. xlink:href="#path1011-0"
  1941. inkscape:tiled-clone-of="#path1011-0"
  1942. y="0"
  1943. x="0" />
  1944. <use
  1945. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1946. height="100%"
  1947. width="100%"
  1948. id="use1092-8"
  1949. transform="translate(407.84329)"
  1950. xlink:href="#path1011-0"
  1951. inkscape:tiled-clone-of="#path1011-0"
  1952. y="0"
  1953. x="0" />
  1954. <use
  1955. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1956. height="100%"
  1957. width="100%"
  1958. id="use1094-9"
  1959. transform="translate(420.58841)"
  1960. xlink:href="#path1011-0"
  1961. inkscape:tiled-clone-of="#path1011-0"
  1962. y="0"
  1963. x="0" />
  1964. <use
  1965. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1966. height="100%"
  1967. width="100%"
  1968. id="use1096-6"
  1969. transform="translate(433.33353)"
  1970. xlink:href="#path1011-0"
  1971. inkscape:tiled-clone-of="#path1011-0"
  1972. y="0"
  1973. x="0" />
  1974. <use
  1975. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1976. height="100%"
  1977. width="100%"
  1978. id="use1098-4"
  1979. transform="translate(446.07865)"
  1980. xlink:href="#path1011-0"
  1981. inkscape:tiled-clone-of="#path1011-0"
  1982. y="0"
  1983. x="0" />
  1984. <use
  1985. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1986. height="100%"
  1987. width="100%"
  1988. id="use1100-3"
  1989. transform="translate(458.82377)"
  1990. xlink:href="#path1011-0"
  1991. inkscape:tiled-clone-of="#path1011-0"
  1992. y="0"
  1993. x="0" />
  1994. <use
  1995. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  1996. height="100%"
  1997. width="100%"
  1998. id="use1102-3"
  1999. transform="translate(471.56889)"
  2000. xlink:href="#path1011-0"
  2001. inkscape:tiled-clone-of="#path1011-0"
  2002. y="0"
  2003. x="0" />
  2004. <use
  2005. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2006. height="100%"
  2007. width="100%"
  2008. id="use1104-3"
  2009. transform="translate(484.31401)"
  2010. xlink:href="#path1011-0"
  2011. inkscape:tiled-clone-of="#path1011-0"
  2012. y="0"
  2013. x="0" />
  2014. <use
  2015. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2016. height="100%"
  2017. width="100%"
  2018. id="use1106-8"
  2019. transform="translate(497.05913)"
  2020. xlink:href="#path1011-0"
  2021. inkscape:tiled-clone-of="#path1011-0"
  2022. y="0"
  2023. x="0" />
  2024. <use
  2025. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2026. height="100%"
  2027. width="100%"
  2028. id="use1108-6"
  2029. transform="translate(509.80425)"
  2030. xlink:href="#path1011-0"
  2031. inkscape:tiled-clone-of="#path1011-0"
  2032. y="0"
  2033. x="0" />
  2034. <use
  2035. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2036. height="100%"
  2037. width="100%"
  2038. id="use1110-0"
  2039. transform="translate(522.54937)"
  2040. xlink:href="#path1011-0"
  2041. inkscape:tiled-clone-of="#path1011-0"
  2042. y="0"
  2043. x="0" />
  2044. <use
  2045. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2046. height="100%"
  2047. width="100%"
  2048. id="use1112-4"
  2049. transform="translate(535.29449)"
  2050. xlink:href="#path1011-0"
  2051. inkscape:tiled-clone-of="#path1011-0"
  2052. y="0"
  2053. x="0" />
  2054. <use
  2055. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2056. height="100%"
  2057. width="100%"
  2058. id="use1114-8"
  2059. transform="translate(548.03961)"
  2060. xlink:href="#path1011-0"
  2061. inkscape:tiled-clone-of="#path1011-0"
  2062. y="0"
  2063. x="0" />
  2064. <use
  2065. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2066. height="100%"
  2067. width="100%"
  2068. id="use1116-8"
  2069. transform="translate(560.78473)"
  2070. xlink:href="#path1011-0"
  2071. inkscape:tiled-clone-of="#path1011-0"
  2072. y="0"
  2073. x="0" />
  2074. <use
  2075. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2076. height="100%"
  2077. width="100%"
  2078. id="use1118-8"
  2079. transform="translate(573.52985)"
  2080. xlink:href="#path1011-0"
  2081. inkscape:tiled-clone-of="#path1011-0"
  2082. y="0"
  2083. x="0" />
  2084. <use
  2085. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2086. height="100%"
  2087. width="100%"
  2088. id="use1120-9"
  2089. transform="translate(586.27494)"
  2090. xlink:href="#path1011-0"
  2091. inkscape:tiled-clone-of="#path1011-0"
  2092. y="0"
  2093. x="0" />
  2094. <use
  2095. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2096. height="100%"
  2097. width="100%"
  2098. id="use1122-7"
  2099. transform="translate(599.02003)"
  2100. xlink:href="#path1011-0"
  2101. inkscape:tiled-clone-of="#path1011-0"
  2102. y="0"
  2103. x="0" />
  2104. <use
  2105. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2106. height="100%"
  2107. width="100%"
  2108. id="use1124-7"
  2109. transform="translate(611.76512)"
  2110. xlink:href="#path1011-0"
  2111. inkscape:tiled-clone-of="#path1011-0"
  2112. y="0"
  2113. x="0" />
  2114. <use
  2115. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2116. height="100%"
  2117. width="100%"
  2118. id="use1126-6"
  2119. transform="translate(624.5102)"
  2120. xlink:href="#path1011-0"
  2121. inkscape:tiled-clone-of="#path1011-0"
  2122. y="0"
  2123. x="0" />
  2124. </g>
  2125. </g>
  2126. </g>
  2127. <g
  2128. style="stroke-width:0.43968607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2129. id="g73752-4"
  2130. transform="matrix(0.60175509,0,0,0.60175509,-20.869646,-11.755614)">
  2131. <g
  2132. style="stroke-width:0.43968607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2133. inkscape:export-ydpi="300"
  2134. inkscape:export-xdpi="300"
  2135. inkscape:export-filename="/home/sandrine/Documents/TAF FIGLI/TLP/TAF/site/elements graphiques/lignes.svg.png"
  2136. transform="matrix(1,0,-0.45,1,21.538707,-69.999968)"
  2137. id="g1609-3">
  2138. <g
  2139. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2140. transform="matrix(1,0,0,1.5493707,0,-219.7483)"
  2141. id="g1483-0">
  2142. <path
  2143. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
  2144. d="M -40,-50 V 399.99999"
  2145. id="path1381-3"
  2146. inkscape:tile-cx="-50.000001"
  2147. inkscape:tile-cy="175"
  2148. inkscape:tile-w="0.35299999"
  2149. inkscape:tile-h="450"
  2150. inkscape:tile-x0="-50.176501"
  2151. inkscape:tile-y0="-50.000001" />
  2152. <path
  2153. id="path1383-0"
  2154. d="M 597.25529,-50 V 400"
  2155. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
  2156. <use
  2157. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2158. x="0"
  2159. y="0"
  2160. inkscape:tiled-clone-of="#path1011-9"
  2161. xlink:href="#path1011-9"
  2162. transform="translate(12.745064)"
  2163. id="use1385-9"
  2164. width="100%"
  2165. height="100%" />
  2166. <use
  2167. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2168. x="0"
  2169. y="0"
  2170. inkscape:tiled-clone-of="#path1011-9"
  2171. xlink:href="#path1011-9"
  2172. transform="translate(25.490163)"
  2173. id="use1387-2"
  2174. width="100%"
  2175. height="100%" />
  2176. <use
  2177. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2178. x="0"
  2179. y="0"
  2180. inkscape:tiled-clone-of="#path1011-9"
  2181. xlink:href="#path1011-9"
  2182. transform="translate(38.23526)"
  2183. id="use1389-5"
  2184. width="100%"
  2185. height="100%" />
  2186. <use
  2187. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2188. x="0"
  2189. y="0"
  2190. inkscape:tiled-clone-of="#path1011-9"
  2191. xlink:href="#path1011-9"
  2192. transform="translate(50.980359)"
  2193. id="use1391-40"
  2194. width="100%"
  2195. height="100%" />
  2196. <use
  2197. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2198. x="0"
  2199. y="0"
  2200. inkscape:tiled-clone-of="#path1011-9"
  2201. xlink:href="#path1011-9"
  2202. transform="translate(63.725457)"
  2203. id="use1393-5"
  2204. width="100%"
  2205. height="100%" />
  2206. <use
  2207. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2208. x="0"
  2209. y="0"
  2210. inkscape:tiled-clone-of="#path1011-9"
  2211. xlink:href="#path1011-9"
  2212. transform="translate(76.470555)"
  2213. id="use1395-9"
  2214. width="100%"
  2215. height="100%" />
  2216. <use
  2217. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2218. x="0"
  2219. y="0"
  2220. inkscape:tiled-clone-of="#path1011-9"
  2221. xlink:href="#path1011-9"
  2222. transform="translate(89.215651)"
  2223. id="use1397-4"
  2224. width="100%"
  2225. height="100%" />
  2226. <use
  2227. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2228. x="0"
  2229. y="0"
  2230. inkscape:tiled-clone-of="#path1011-9"
  2231. xlink:href="#path1011-9"
  2232. transform="translate(101.96075)"
  2233. id="use1399-6"
  2234. width="100%"
  2235. height="100%" />
  2236. <use
  2237. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2238. x="0"
  2239. y="0"
  2240. inkscape:tiled-clone-of="#path1011-9"
  2241. xlink:href="#path1011-9"
  2242. transform="translate(114.70585)"
  2243. id="use1401-9"
  2244. width="100%"
  2245. height="100%" />
  2246. <use
  2247. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2248. x="0"
  2249. y="0"
  2250. inkscape:tiled-clone-of="#path1011-9"
  2251. xlink:href="#path1011-9"
  2252. transform="translate(127.45094)"
  2253. id="use1403-2"
  2254. width="100%"
  2255. height="100%" />
  2256. <use
  2257. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2258. x="0"
  2259. y="0"
  2260. inkscape:tiled-clone-of="#path1011-9"
  2261. xlink:href="#path1011-9"
  2262. transform="translate(140.19604)"
  2263. id="use1405-2"
  2264. width="100%"
  2265. height="100%" />
  2266. <use
  2267. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2268. x="0"
  2269. y="0"
  2270. inkscape:tiled-clone-of="#path1011-9"
  2271. xlink:href="#path1011-9"
  2272. transform="translate(152.94114)"
  2273. id="use1407-4"
  2274. width="100%"
  2275. height="100%" />
  2276. <use
  2277. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2278. x="0"
  2279. y="0"
  2280. inkscape:tiled-clone-of="#path1011-9"
  2281. xlink:href="#path1011-9"
  2282. transform="translate(165.68623)"
  2283. id="use1409-7"
  2284. width="100%"
  2285. height="100%" />
  2286. <use
  2287. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2288. x="0"
  2289. y="0"
  2290. inkscape:tiled-clone-of="#path1011-9"
  2291. xlink:href="#path1011-9"
  2292. transform="translate(178.43133)"
  2293. id="use1411-7"
  2294. width="100%"
  2295. height="100%" />
  2296. <use
  2297. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2298. x="0"
  2299. y="0"
  2300. inkscape:tiled-clone-of="#path1011-9"
  2301. xlink:href="#path1011-9"
  2302. transform="translate(191.17643)"
  2303. id="use1413-5"
  2304. width="100%"
  2305. height="100%" />
  2306. <use
  2307. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2308. x="0"
  2309. y="0"
  2310. inkscape:tiled-clone-of="#path1011-9"
  2311. xlink:href="#path1011-9"
  2312. transform="translate(203.92153)"
  2313. id="use1415-4"
  2314. width="100%"
  2315. height="100%" />
  2316. <use
  2317. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2318. x="0"
  2319. y="0"
  2320. inkscape:tiled-clone-of="#path1011-9"
  2321. xlink:href="#path1011-9"
  2322. transform="translate(216.66664)"
  2323. id="use1417-8"
  2324. width="100%"
  2325. height="100%" />
  2326. <use
  2327. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2328. x="0"
  2329. y="0"
  2330. inkscape:tiled-clone-of="#path1011-9"
  2331. xlink:href="#path1011-9"
  2332. transform="translate(229.41174)"
  2333. id="use1419-1"
  2334. width="100%"
  2335. height="100%" />
  2336. <use
  2337. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2338. x="0"
  2339. y="0"
  2340. inkscape:tiled-clone-of="#path1011-9"
  2341. xlink:href="#path1011-9"
  2342. transform="translate(242.15685)"
  2343. id="use1421-2"
  2344. width="100%"
  2345. height="100%" />
  2346. <use
  2347. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2348. x="0"
  2349. y="0"
  2350. inkscape:tiled-clone-of="#path1011-9"
  2351. xlink:href="#path1011-9"
  2352. transform="translate(254.90195)"
  2353. id="use1423-8"
  2354. width="100%"
  2355. height="100%" />
  2356. <use
  2357. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2358. x="0"
  2359. y="0"
  2360. inkscape:tiled-clone-of="#path1011-9"
  2361. xlink:href="#path1011-9"
  2362. transform="translate(267.64705)"
  2363. id="use1425-9"
  2364. width="100%"
  2365. height="100%" />
  2366. <use
  2367. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2368. x="0"
  2369. y="0"
  2370. inkscape:tiled-clone-of="#path1011-9"
  2371. xlink:href="#path1011-9"
  2372. transform="translate(280.39216)"
  2373. id="use1427-3"
  2374. width="100%"
  2375. height="100%" />
  2376. <use
  2377. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2378. x="0"
  2379. y="0"
  2380. inkscape:tiled-clone-of="#path1011-9"
  2381. xlink:href="#path1011-9"
  2382. transform="translate(293.13726)"
  2383. id="use1429-6"
  2384. width="100%"
  2385. height="100%" />
  2386. <use
  2387. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2388. x="0"
  2389. y="0"
  2390. inkscape:tiled-clone-of="#path1011-9"
  2391. xlink:href="#path1011-9"
  2392. transform="translate(305.88237)"
  2393. id="use1431-8"
  2394. width="100%"
  2395. height="100%" />
  2396. <use
  2397. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2398. x="0"
  2399. y="0"
  2400. inkscape:tiled-clone-of="#path1011-9"
  2401. xlink:href="#path1011-9"
  2402. transform="translate(318.62745)"
  2403. id="use1433-0"
  2404. width="100%"
  2405. height="100%" />
  2406. <use
  2407. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2408. x="0"
  2409. y="0"
  2410. inkscape:tiled-clone-of="#path1011-9"
  2411. xlink:href="#path1011-9"
  2412. transform="translate(331.37257)"
  2413. id="use1435-2"
  2414. width="100%"
  2415. height="100%" />
  2416. <use
  2417. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2418. x="0"
  2419. y="0"
  2420. inkscape:tiled-clone-of="#path1011-9"
  2421. xlink:href="#path1011-9"
  2422. transform="translate(344.11769)"
  2423. id="use1437-10"
  2424. width="100%"
  2425. height="100%" />
  2426. <use
  2427. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2428. x="0"
  2429. y="0"
  2430. inkscape:tiled-clone-of="#path1011-9"
  2431. xlink:href="#path1011-9"
  2432. transform="translate(356.86281)"
  2433. id="use1439-5"
  2434. width="100%"
  2435. height="100%" />
  2436. <use
  2437. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2438. x="0"
  2439. y="0"
  2440. inkscape:tiled-clone-of="#path1011-9"
  2441. xlink:href="#path1011-9"
  2442. transform="translate(369.60793)"
  2443. id="use1441-1"
  2444. width="100%"
  2445. height="100%" />
  2446. <use
  2447. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2448. x="0"
  2449. y="0"
  2450. inkscape:tiled-clone-of="#path1011-9"
  2451. xlink:href="#path1011-9"
  2452. transform="translate(382.35305)"
  2453. id="use1443-1"
  2454. width="100%"
  2455. height="100%" />
  2456. <use
  2457. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2458. x="0"
  2459. y="0"
  2460. inkscape:tiled-clone-of="#path1011-9"
  2461. xlink:href="#path1011-9"
  2462. transform="translate(395.09817)"
  2463. id="use1445-0"
  2464. width="100%"
  2465. height="100%" />
  2466. <use
  2467. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2468. x="0"
  2469. y="0"
  2470. inkscape:tiled-clone-of="#path1011-9"
  2471. xlink:href="#path1011-9"
  2472. transform="translate(407.84329)"
  2473. id="use1447-8"
  2474. width="100%"
  2475. height="100%" />
  2476. <use
  2477. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2478. x="0"
  2479. y="0"
  2480. inkscape:tiled-clone-of="#path1011-9"
  2481. xlink:href="#path1011-9"
  2482. transform="translate(420.58841)"
  2483. id="use1449-5"
  2484. width="100%"
  2485. height="100%" />
  2486. <use
  2487. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2488. x="0"
  2489. y="0"
  2490. inkscape:tiled-clone-of="#path1011-9"
  2491. xlink:href="#path1011-9"
  2492. transform="translate(433.33353)"
  2493. id="use1451-0"
  2494. width="100%"
  2495. height="100%" />
  2496. <use
  2497. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2498. x="0"
  2499. y="0"
  2500. inkscape:tiled-clone-of="#path1011-9"
  2501. xlink:href="#path1011-9"
  2502. transform="translate(446.07865)"
  2503. id="use1453-6"
  2504. width="100%"
  2505. height="100%" />
  2506. <use
  2507. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2508. x="0"
  2509. y="0"
  2510. inkscape:tiled-clone-of="#path1011-9"
  2511. xlink:href="#path1011-9"
  2512. transform="translate(458.82377)"
  2513. id="use1455-4"
  2514. width="100%"
  2515. height="100%" />
  2516. <use
  2517. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2518. x="0"
  2519. y="0"
  2520. inkscape:tiled-clone-of="#path1011-9"
  2521. xlink:href="#path1011-9"
  2522. transform="translate(471.56889)"
  2523. id="use1457-6"
  2524. width="100%"
  2525. height="100%" />
  2526. <use
  2527. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2528. x="0"
  2529. y="0"
  2530. inkscape:tiled-clone-of="#path1011-9"
  2531. xlink:href="#path1011-9"
  2532. transform="translate(484.31401)"
  2533. id="use1459-2"
  2534. width="100%"
  2535. height="100%" />
  2536. <use
  2537. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2538. x="0"
  2539. y="0"
  2540. inkscape:tiled-clone-of="#path1011-9"
  2541. xlink:href="#path1011-9"
  2542. transform="translate(497.05913)"
  2543. id="use1461-5"
  2544. width="100%"
  2545. height="100%" />
  2546. <use
  2547. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2548. x="0"
  2549. y="0"
  2550. inkscape:tiled-clone-of="#path1011-9"
  2551. xlink:href="#path1011-9"
  2552. transform="translate(509.80425)"
  2553. id="use1463-86"
  2554. width="100%"
  2555. height="100%" />
  2556. <use
  2557. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2558. x="0"
  2559. y="0"
  2560. inkscape:tiled-clone-of="#path1011-9"
  2561. xlink:href="#path1011-9"
  2562. transform="translate(522.54937)"
  2563. id="use1465-2"
  2564. width="100%"
  2565. height="100%" />
  2566. <use
  2567. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2568. x="0"
  2569. y="0"
  2570. inkscape:tiled-clone-of="#path1011-9"
  2571. xlink:href="#path1011-9"
  2572. transform="translate(535.29449)"
  2573. id="use1467-8"
  2574. width="100%"
  2575. height="100%" />
  2576. <use
  2577. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2578. x="0"
  2579. y="0"
  2580. inkscape:tiled-clone-of="#path1011-9"
  2581. xlink:href="#path1011-9"
  2582. transform="translate(548.03961)"
  2583. id="use1469-4"
  2584. width="100%"
  2585. height="100%" />
  2586. <use
  2587. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2588. x="0"
  2589. y="0"
  2590. inkscape:tiled-clone-of="#path1011-9"
  2591. xlink:href="#path1011-9"
  2592. transform="translate(560.78473)"
  2593. id="use1471-7"
  2594. width="100%"
  2595. height="100%" />
  2596. <use
  2597. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2598. x="0"
  2599. y="0"
  2600. inkscape:tiled-clone-of="#path1011-9"
  2601. xlink:href="#path1011-9"
  2602. transform="translate(573.52985)"
  2603. id="use1473-2"
  2604. width="100%"
  2605. height="100%" />
  2606. <use
  2607. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2608. x="0"
  2609. y="0"
  2610. inkscape:tiled-clone-of="#path1011-9"
  2611. xlink:href="#path1011-9"
  2612. transform="translate(586.27494)"
  2613. id="use1475-4"
  2614. width="100%"
  2615. height="100%" />
  2616. <use
  2617. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2618. x="0"
  2619. y="0"
  2620. inkscape:tiled-clone-of="#path1011-9"
  2621. xlink:href="#path1011-9"
  2622. transform="translate(599.02003)"
  2623. id="use1477-0"
  2624. width="100%"
  2625. height="100%" />
  2626. <use
  2627. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2628. x="0"
  2629. y="0"
  2630. inkscape:tiled-clone-of="#path1011-9"
  2631. xlink:href="#path1011-9"
  2632. transform="translate(611.76512)"
  2633. id="use1479-6"
  2634. width="100%"
  2635. height="100%" />
  2636. <use
  2637. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2638. x="0"
  2639. y="0"
  2640. inkscape:tiled-clone-of="#path1011-9"
  2641. xlink:href="#path1011-9"
  2642. transform="translate(624.5102)"
  2643. id="use1481-2"
  2644. width="100%"
  2645. height="100%" />
  2646. </g>
  2647. <g
  2648. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2649. id="g1379-9"
  2650. transform="matrix(1,0,0,1.5493707,-649.99999,-219.7483)">
  2651. <path
  2652. inkscape:tile-y0="-50.000001"
  2653. inkscape:tile-x0="-50.176501"
  2654. inkscape:tile-h="450"
  2655. inkscape:tile-w="0.35299999"
  2656. inkscape:tile-cy="175"
  2657. inkscape:tile-cx="-50.000001"
  2658. id="path1011-9"
  2659. d="M -40,-50 V 399.99999"
  2660. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
  2661. <path
  2662. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
  2663. d="M 597.25529,-50 V 400"
  2664. id="path1011-3-0" />
  2665. <use
  2666. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2667. height="100%"
  2668. width="100%"
  2669. id="use1030-8"
  2670. transform="translate(12.745064)"
  2671. xlink:href="#path1011-9"
  2672. inkscape:tiled-clone-of="#path1011-9"
  2673. y="0"
  2674. x="0" />
  2675. <use
  2676. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2677. height="100%"
  2678. width="100%"
  2679. id="use1032-1"
  2680. transform="translate(25.490163)"
  2681. xlink:href="#path1011-9"
  2682. inkscape:tiled-clone-of="#path1011-9"
  2683. y="0"
  2684. x="0" />
  2685. <use
  2686. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2687. height="100%"
  2688. width="100%"
  2689. id="use1034-3"
  2690. transform="translate(38.23526)"
  2691. xlink:href="#path1011-9"
  2692. inkscape:tiled-clone-of="#path1011-9"
  2693. y="0"
  2694. x="0" />
  2695. <use
  2696. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2697. height="100%"
  2698. width="100%"
  2699. id="use1036-1"
  2700. transform="translate(50.980359)"
  2701. xlink:href="#path1011-9"
  2702. inkscape:tiled-clone-of="#path1011-9"
  2703. y="0"
  2704. x="0" />
  2705. <use
  2706. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2707. height="100%"
  2708. width="100%"
  2709. id="use1038-1"
  2710. transform="translate(63.725457)"
  2711. xlink:href="#path1011-9"
  2712. inkscape:tiled-clone-of="#path1011-9"
  2713. y="0"
  2714. x="0" />
  2715. <use
  2716. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2717. height="100%"
  2718. width="100%"
  2719. id="use1040-0"
  2720. transform="translate(76.470555)"
  2721. xlink:href="#path1011-9"
  2722. inkscape:tiled-clone-of="#path1011-9"
  2723. y="0"
  2724. x="0" />
  2725. <use
  2726. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2727. height="100%"
  2728. width="100%"
  2729. id="use1042-3"
  2730. transform="translate(89.215651)"
  2731. xlink:href="#path1011-9"
  2732. inkscape:tiled-clone-of="#path1011-9"
  2733. y="0"
  2734. x="0" />
  2735. <use
  2736. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2737. height="100%"
  2738. width="100%"
  2739. id="use1044-4"
  2740. transform="translate(101.96075)"
  2741. xlink:href="#path1011-9"
  2742. inkscape:tiled-clone-of="#path1011-9"
  2743. y="0"
  2744. x="0" />
  2745. <use
  2746. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2747. height="100%"
  2748. width="100%"
  2749. id="use1046-0"
  2750. transform="translate(114.70585)"
  2751. xlink:href="#path1011-9"
  2752. inkscape:tiled-clone-of="#path1011-9"
  2753. y="0"
  2754. x="0" />
  2755. <use
  2756. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2757. height="100%"
  2758. width="100%"
  2759. id="use1048-3"
  2760. transform="translate(127.45094)"
  2761. xlink:href="#path1011-9"
  2762. inkscape:tiled-clone-of="#path1011-9"
  2763. y="0"
  2764. x="0" />
  2765. <use
  2766. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2767. height="100%"
  2768. width="100%"
  2769. id="use1050-9"
  2770. transform="translate(140.19604)"
  2771. xlink:href="#path1011-9"
  2772. inkscape:tiled-clone-of="#path1011-9"
  2773. y="0"
  2774. x="0" />
  2775. <use
  2776. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2777. height="100%"
  2778. width="100%"
  2779. id="use1052-1"
  2780. transform="translate(152.94114)"
  2781. xlink:href="#path1011-9"
  2782. inkscape:tiled-clone-of="#path1011-9"
  2783. y="0"
  2784. x="0" />
  2785. <use
  2786. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2787. height="100%"
  2788. width="100%"
  2789. id="use1054-9"
  2790. transform="translate(165.68623)"
  2791. xlink:href="#path1011-9"
  2792. inkscape:tiled-clone-of="#path1011-9"
  2793. y="0"
  2794. x="0" />
  2795. <use
  2796. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2797. height="100%"
  2798. width="100%"
  2799. id="use1056-6"
  2800. transform="translate(178.43133)"
  2801. xlink:href="#path1011-9"
  2802. inkscape:tiled-clone-of="#path1011-9"
  2803. y="0"
  2804. x="0" />
  2805. <use
  2806. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2807. height="100%"
  2808. width="100%"
  2809. id="use1058-9"
  2810. transform="translate(191.17643)"
  2811. xlink:href="#path1011-9"
  2812. inkscape:tiled-clone-of="#path1011-9"
  2813. y="0"
  2814. x="0" />
  2815. <use
  2816. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2817. height="100%"
  2818. width="100%"
  2819. id="use1060-3"
  2820. transform="translate(203.92153)"
  2821. xlink:href="#path1011-9"
  2822. inkscape:tiled-clone-of="#path1011-9"
  2823. y="0"
  2824. x="0" />
  2825. <use
  2826. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2827. height="100%"
  2828. width="100%"
  2829. id="use1062-3"
  2830. transform="translate(216.66664)"
  2831. xlink:href="#path1011-9"
  2832. inkscape:tiled-clone-of="#path1011-9"
  2833. y="0"
  2834. x="0" />
  2835. <use
  2836. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2837. height="100%"
  2838. width="100%"
  2839. id="use1064-8"
  2840. transform="translate(229.41174)"
  2841. xlink:href="#path1011-9"
  2842. inkscape:tiled-clone-of="#path1011-9"
  2843. y="0"
  2844. x="0" />
  2845. <use
  2846. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2847. height="100%"
  2848. width="100%"
  2849. id="use1066-0"
  2850. transform="translate(242.15685)"
  2851. xlink:href="#path1011-9"
  2852. inkscape:tiled-clone-of="#path1011-9"
  2853. y="0"
  2854. x="0" />
  2855. <use
  2856. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2857. height="100%"
  2858. width="100%"
  2859. id="use1068-5"
  2860. transform="translate(254.90195)"
  2861. xlink:href="#path1011-9"
  2862. inkscape:tiled-clone-of="#path1011-9"
  2863. y="0"
  2864. x="0" />
  2865. <use
  2866. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2867. height="100%"
  2868. width="100%"
  2869. id="use1070-6"
  2870. transform="translate(267.64705)"
  2871. xlink:href="#path1011-9"
  2872. inkscape:tiled-clone-of="#path1011-9"
  2873. y="0"
  2874. x="0" />
  2875. <use
  2876. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2877. height="100%"
  2878. width="100%"
  2879. id="use1072-6"
  2880. transform="translate(280.39216)"
  2881. xlink:href="#path1011-9"
  2882. inkscape:tiled-clone-of="#path1011-9"
  2883. y="0"
  2884. x="0" />
  2885. <use
  2886. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2887. height="100%"
  2888. width="100%"
  2889. id="use1074-4"
  2890. transform="translate(293.13726)"
  2891. xlink:href="#path1011-9"
  2892. inkscape:tiled-clone-of="#path1011-9"
  2893. y="0"
  2894. x="0" />
  2895. <use
  2896. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2897. height="100%"
  2898. width="100%"
  2899. id="use1076-0"
  2900. transform="translate(305.88237)"
  2901. xlink:href="#path1011-9"
  2902. inkscape:tiled-clone-of="#path1011-9"
  2903. y="0"
  2904. x="0" />
  2905. <use
  2906. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2907. height="100%"
  2908. width="100%"
  2909. id="use1078-0"
  2910. transform="translate(318.62745)"
  2911. xlink:href="#path1011-9"
  2912. inkscape:tiled-clone-of="#path1011-9"
  2913. y="0"
  2914. x="0" />
  2915. <use
  2916. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2917. height="100%"
  2918. width="100%"
  2919. id="use1080-4"
  2920. transform="translate(331.37257)"
  2921. xlink:href="#path1011-9"
  2922. inkscape:tiled-clone-of="#path1011-9"
  2923. y="0"
  2924. x="0" />
  2925. <use
  2926. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2927. height="100%"
  2928. width="100%"
  2929. id="use1082-6"
  2930. transform="translate(344.11769)"
  2931. xlink:href="#path1011-9"
  2932. inkscape:tiled-clone-of="#path1011-9"
  2933. y="0"
  2934. x="0" />
  2935. <use
  2936. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2937. height="100%"
  2938. width="100%"
  2939. id="use1084-2"
  2940. transform="translate(356.86281)"
  2941. xlink:href="#path1011-9"
  2942. inkscape:tiled-clone-of="#path1011-9"
  2943. y="0"
  2944. x="0" />
  2945. <use
  2946. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2947. height="100%"
  2948. width="100%"
  2949. id="use1086-6"
  2950. transform="translate(369.60793)"
  2951. xlink:href="#path1011-9"
  2952. inkscape:tiled-clone-of="#path1011-9"
  2953. y="0"
  2954. x="0" />
  2955. <use
  2956. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2957. height="100%"
  2958. width="100%"
  2959. id="use1088-7"
  2960. transform="translate(382.35305)"
  2961. xlink:href="#path1011-9"
  2962. inkscape:tiled-clone-of="#path1011-9"
  2963. y="0"
  2964. x="0" />
  2965. <use
  2966. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2967. height="100%"
  2968. width="100%"
  2969. id="use1090-5"
  2970. transform="translate(395.09817)"
  2971. xlink:href="#path1011-9"
  2972. inkscape:tiled-clone-of="#path1011-9"
  2973. y="0"
  2974. x="0" />
  2975. <use
  2976. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2977. height="100%"
  2978. width="100%"
  2979. id="use1092-6"
  2980. transform="translate(407.84329)"
  2981. xlink:href="#path1011-9"
  2982. inkscape:tiled-clone-of="#path1011-9"
  2983. y="0"
  2984. x="0" />
  2985. <use
  2986. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2987. height="100%"
  2988. width="100%"
  2989. id="use1094-98"
  2990. transform="translate(420.58841)"
  2991. xlink:href="#path1011-9"
  2992. inkscape:tiled-clone-of="#path1011-9"
  2993. y="0"
  2994. x="0" />
  2995. <use
  2996. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  2997. height="100%"
  2998. width="100%"
  2999. id="use1096-7"
  3000. transform="translate(433.33353)"
  3001. xlink:href="#path1011-9"
  3002. inkscape:tiled-clone-of="#path1011-9"
  3003. y="0"
  3004. x="0" />
  3005. <use
  3006. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3007. height="100%"
  3008. width="100%"
  3009. id="use1098-2"
  3010. transform="translate(446.07865)"
  3011. xlink:href="#path1011-9"
  3012. inkscape:tiled-clone-of="#path1011-9"
  3013. y="0"
  3014. x="0" />
  3015. <use
  3016. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3017. height="100%"
  3018. width="100%"
  3019. id="use1100-8"
  3020. transform="translate(458.82377)"
  3021. xlink:href="#path1011-9"
  3022. inkscape:tiled-clone-of="#path1011-9"
  3023. y="0"
  3024. x="0" />
  3025. <use
  3026. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3027. height="100%"
  3028. width="100%"
  3029. id="use1102-2"
  3030. transform="translate(471.56889)"
  3031. xlink:href="#path1011-9"
  3032. inkscape:tiled-clone-of="#path1011-9"
  3033. y="0"
  3034. x="0" />
  3035. <use
  3036. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3037. height="100%"
  3038. width="100%"
  3039. id="use1104-9"
  3040. transform="translate(484.31401)"
  3041. xlink:href="#path1011-9"
  3042. inkscape:tiled-clone-of="#path1011-9"
  3043. y="0"
  3044. x="0" />
  3045. <use
  3046. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3047. height="100%"
  3048. width="100%"
  3049. id="use1106-9"
  3050. transform="translate(497.05913)"
  3051. xlink:href="#path1011-9"
  3052. inkscape:tiled-clone-of="#path1011-9"
  3053. y="0"
  3054. x="0" />
  3055. <use
  3056. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3057. height="100%"
  3058. width="100%"
  3059. id="use1108-60"
  3060. transform="translate(509.80425)"
  3061. xlink:href="#path1011-9"
  3062. inkscape:tiled-clone-of="#path1011-9"
  3063. y="0"
  3064. x="0" />
  3065. <use
  3066. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3067. height="100%"
  3068. width="100%"
  3069. id="use1110-2"
  3070. transform="translate(522.54937)"
  3071. xlink:href="#path1011-9"
  3072. inkscape:tiled-clone-of="#path1011-9"
  3073. y="0"
  3074. x="0" />
  3075. <use
  3076. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3077. height="100%"
  3078. width="100%"
  3079. id="use1112-7"
  3080. transform="translate(535.29449)"
  3081. xlink:href="#path1011-9"
  3082. inkscape:tiled-clone-of="#path1011-9"
  3083. y="0"
  3084. x="0" />
  3085. <use
  3086. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3087. height="100%"
  3088. width="100%"
  3089. id="use1114-6"
  3090. transform="translate(548.03961)"
  3091. xlink:href="#path1011-9"
  3092. inkscape:tiled-clone-of="#path1011-9"
  3093. y="0"
  3094. x="0" />
  3095. <use
  3096. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3097. height="100%"
  3098. width="100%"
  3099. id="use1116-1"
  3100. transform="translate(560.78473)"
  3101. xlink:href="#path1011-9"
  3102. inkscape:tiled-clone-of="#path1011-9"
  3103. y="0"
  3104. x="0" />
  3105. <use
  3106. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3107. height="100%"
  3108. width="100%"
  3109. id="use1118-3"
  3110. transform="translate(573.52985)"
  3111. xlink:href="#path1011-9"
  3112. inkscape:tiled-clone-of="#path1011-9"
  3113. y="0"
  3114. x="0" />
  3115. <use
  3116. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3117. height="100%"
  3118. width="100%"
  3119. id="use1120-2"
  3120. transform="translate(586.27494)"
  3121. xlink:href="#path1011-9"
  3122. inkscape:tiled-clone-of="#path1011-9"
  3123. y="0"
  3124. x="0" />
  3125. <use
  3126. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3127. height="100%"
  3128. width="100%"
  3129. id="use1122-1"
  3130. transform="translate(599.02003)"
  3131. xlink:href="#path1011-9"
  3132. inkscape:tiled-clone-of="#path1011-9"
  3133. y="0"
  3134. x="0" />
  3135. <use
  3136. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3137. height="100%"
  3138. width="100%"
  3139. id="use1124-5"
  3140. transform="translate(611.76512)"
  3141. xlink:href="#path1011-9"
  3142. inkscape:tiled-clone-of="#path1011-9"
  3143. y="0"
  3144. x="0" />
  3145. <use
  3146. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3147. height="100%"
  3148. width="100%"
  3149. id="use1126-9"
  3150. transform="translate(624.5102)"
  3151. xlink:href="#path1011-9"
  3152. inkscape:tiled-clone-of="#path1011-9"
  3153. y="0"
  3154. x="0" />
  3155. </g>
  3156. </g>
  3157. <g
  3158. style="stroke-width:0.43968607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3159. id="g1609-6-9"
  3160. transform="matrix(1,0,-0.45,1,1321.7034,-69.999968)"
  3161. inkscape:export-filename="/home/sandrine/Documents/TAF FIGLI/TLP/TAF/site/elements graphiques/lignes.svg.png"
  3162. inkscape:export-xdpi="300"
  3163. inkscape:export-ydpi="300">
  3164. <g
  3165. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3166. id="g1483-1-1"
  3167. transform="matrix(1,0,0,1.5493707,0,-219.7483)">
  3168. <path
  3169. inkscape:tile-y0="-50.000001"
  3170. inkscape:tile-x0="-50.176501"
  3171. inkscape:tile-h="450"
  3172. inkscape:tile-w="0.35299999"
  3173. inkscape:tile-cy="175"
  3174. inkscape:tile-cx="-50.000001"
  3175. id="path1381-0-4"
  3176. d="M -40,-50 V 399.99999"
  3177. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
  3178. <path
  3179. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
  3180. d="M 597.25529,-50 V 400"
  3181. id="path1383-6-9" />
  3182. <use
  3183. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3184. height="100%"
  3185. width="100%"
  3186. id="use1385-1-1"
  3187. transform="translate(12.745064)"
  3188. xlink:href="#path1011-0-4"
  3189. inkscape:tiled-clone-of="#path1011-0-4"
  3190. y="0"
  3191. x="0" />
  3192. <use
  3193. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3194. height="100%"
  3195. width="100%"
  3196. id="use1387-5-0"
  3197. transform="translate(25.490163)"
  3198. xlink:href="#path1011-0-4"
  3199. inkscape:tiled-clone-of="#path1011-0-4"
  3200. y="0"
  3201. x="0" />
  3202. <use
  3203. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3204. height="100%"
  3205. width="100%"
  3206. id="use1389-9-7"
  3207. transform="translate(38.23526)"
  3208. xlink:href="#path1011-0-4"
  3209. inkscape:tiled-clone-of="#path1011-0-4"
  3210. y="0"
  3211. x="0" />
  3212. <use
  3213. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3214. height="100%"
  3215. width="100%"
  3216. id="use1391-4-5"
  3217. transform="translate(50.980359)"
  3218. xlink:href="#path1011-0-4"
  3219. inkscape:tiled-clone-of="#path1011-0-4"
  3220. y="0"
  3221. x="0" />
  3222. <use
  3223. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3224. height="100%"
  3225. width="100%"
  3226. id="use1393-9-8"
  3227. transform="translate(63.725457)"
  3228. xlink:href="#path1011-0-4"
  3229. inkscape:tiled-clone-of="#path1011-0-4"
  3230. y="0"
  3231. x="0" />
  3232. <use
  3233. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3234. height="100%"
  3235. width="100%"
  3236. id="use1395-0-7"
  3237. transform="translate(76.470555)"
  3238. xlink:href="#path1011-0-4"
  3239. inkscape:tiled-clone-of="#path1011-0-4"
  3240. y="0"
  3241. x="0" />
  3242. <use
  3243. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3244. height="100%"
  3245. width="100%"
  3246. id="use1397-9-0"
  3247. transform="translate(89.215651)"
  3248. xlink:href="#path1011-0-4"
  3249. inkscape:tiled-clone-of="#path1011-0-4"
  3250. y="0"
  3251. x="0" />
  3252. <use
  3253. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3254. height="100%"
  3255. width="100%"
  3256. id="use1399-1-4"
  3257. transform="translate(101.96075)"
  3258. xlink:href="#path1011-0-4"
  3259. inkscape:tiled-clone-of="#path1011-0-4"
  3260. y="0"
  3261. x="0" />
  3262. <use
  3263. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3264. height="100%"
  3265. width="100%"
  3266. id="use1401-7-8"
  3267. transform="translate(114.70585)"
  3268. xlink:href="#path1011-0-4"
  3269. inkscape:tiled-clone-of="#path1011-0-4"
  3270. y="0"
  3271. x="0" />
  3272. <use
  3273. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3274. height="100%"
  3275. width="100%"
  3276. id="use1403-7-0"
  3277. transform="translate(127.45094)"
  3278. xlink:href="#path1011-0-4"
  3279. inkscape:tiled-clone-of="#path1011-0-4"
  3280. y="0"
  3281. x="0" />
  3282. <use
  3283. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3284. height="100%"
  3285. width="100%"
  3286. id="use1405-1-4"
  3287. transform="translate(140.19604)"
  3288. xlink:href="#path1011-0-4"
  3289. inkscape:tiled-clone-of="#path1011-0-4"
  3290. y="0"
  3291. x="0" />
  3292. <use
  3293. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3294. height="100%"
  3295. width="100%"
  3296. id="use1407-1-2"
  3297. transform="translate(152.94114)"
  3298. xlink:href="#path1011-0-4"
  3299. inkscape:tiled-clone-of="#path1011-0-4"
  3300. y="0"
  3301. x="0" />
  3302. <use
  3303. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3304. height="100%"
  3305. width="100%"
  3306. id="use1409-5-9"
  3307. transform="translate(165.68623)"
  3308. xlink:href="#path1011-0-4"
  3309. inkscape:tiled-clone-of="#path1011-0-4"
  3310. y="0"
  3311. x="0" />
  3312. <use
  3313. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3314. height="100%"
  3315. width="100%"
  3316. id="use1411-9-6"
  3317. transform="translate(178.43133)"
  3318. xlink:href="#path1011-0-4"
  3319. inkscape:tiled-clone-of="#path1011-0-4"
  3320. y="0"
  3321. x="0" />
  3322. <use
  3323. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3324. height="100%"
  3325. width="100%"
  3326. id="use1413-7-1"
  3327. transform="translate(191.17643)"
  3328. xlink:href="#path1011-0-4"
  3329. inkscape:tiled-clone-of="#path1011-0-4"
  3330. y="0"
  3331. x="0" />
  3332. <use
  3333. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3334. height="100%"
  3335. width="100%"
  3336. id="use1415-7-0"
  3337. transform="translate(203.92153)"
  3338. xlink:href="#path1011-0-4"
  3339. inkscape:tiled-clone-of="#path1011-0-4"
  3340. y="0"
  3341. x="0" />
  3342. <use
  3343. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3344. height="100%"
  3345. width="100%"
  3346. id="use1417-6-4"
  3347. transform="translate(216.66664)"
  3348. xlink:href="#path1011-0-4"
  3349. inkscape:tiled-clone-of="#path1011-0-4"
  3350. y="0"
  3351. x="0" />
  3352. <use
  3353. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3354. height="100%"
  3355. width="100%"
  3356. id="use1419-7-2"
  3357. transform="translate(229.41174)"
  3358. xlink:href="#path1011-0-4"
  3359. inkscape:tiled-clone-of="#path1011-0-4"
  3360. y="0"
  3361. x="0" />
  3362. <use
  3363. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3364. height="100%"
  3365. width="100%"
  3366. id="use1421-3-2"
  3367. transform="translate(242.15685)"
  3368. xlink:href="#path1011-0-4"
  3369. inkscape:tiled-clone-of="#path1011-0-4"
  3370. y="0"
  3371. x="0" />
  3372. <use
  3373. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3374. height="100%"
  3375. width="100%"
  3376. id="use1423-6-2"
  3377. transform="translate(254.90195)"
  3378. xlink:href="#path1011-0-4"
  3379. inkscape:tiled-clone-of="#path1011-0-4"
  3380. y="0"
  3381. x="0" />
  3382. <use
  3383. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3384. height="100%"
  3385. width="100%"
  3386. id="use1425-5-0"
  3387. transform="translate(267.64705)"
  3388. xlink:href="#path1011-0-4"
  3389. inkscape:tiled-clone-of="#path1011-0-4"
  3390. y="0"
  3391. x="0" />
  3392. <use
  3393. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3394. height="100%"
  3395. width="100%"
  3396. id="use1427-6-5"
  3397. transform="translate(280.39216)"
  3398. xlink:href="#path1011-0-4"
  3399. inkscape:tiled-clone-of="#path1011-0-4"
  3400. y="0"
  3401. x="0" />
  3402. <use
  3403. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3404. height="100%"
  3405. width="100%"
  3406. id="use1429-3-5"
  3407. transform="translate(293.13726)"
  3408. xlink:href="#path1011-0-4"
  3409. inkscape:tiled-clone-of="#path1011-0-4"
  3410. y="0"
  3411. x="0" />
  3412. <use
  3413. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3414. height="100%"
  3415. width="100%"
  3416. id="use1431-9-2"
  3417. transform="translate(305.88237)"
  3418. xlink:href="#path1011-0-4"
  3419. inkscape:tiled-clone-of="#path1011-0-4"
  3420. y="0"
  3421. x="0" />
  3422. <use
  3423. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3424. height="100%"
  3425. width="100%"
  3426. id="use1433-4-9"
  3427. transform="translate(318.62745)"
  3428. xlink:href="#path1011-0-4"
  3429. inkscape:tiled-clone-of="#path1011-0-4"
  3430. y="0"
  3431. x="0" />
  3432. <use
  3433. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3434. height="100%"
  3435. width="100%"
  3436. id="use1435-8-0"
  3437. transform="translate(331.37257)"
  3438. xlink:href="#path1011-0-4"
  3439. inkscape:tiled-clone-of="#path1011-0-4"
  3440. y="0"
  3441. x="0" />
  3442. <use
  3443. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3444. height="100%"
  3445. width="100%"
  3446. id="use1437-1-2"
  3447. transform="translate(344.11769)"
  3448. xlink:href="#path1011-0-4"
  3449. inkscape:tiled-clone-of="#path1011-0-4"
  3450. y="0"
  3451. x="0" />
  3452. <use
  3453. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3454. height="100%"
  3455. width="100%"
  3456. id="use1439-2-8"
  3457. transform="translate(356.86281)"
  3458. xlink:href="#path1011-0-4"
  3459. inkscape:tiled-clone-of="#path1011-0-4"
  3460. y="0"
  3461. x="0" />
  3462. <use
  3463. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3464. height="100%"
  3465. width="100%"
  3466. id="use1441-9-3"
  3467. transform="translate(369.60793)"
  3468. xlink:href="#path1011-0-4"
  3469. inkscape:tiled-clone-of="#path1011-0-4"
  3470. y="0"
  3471. x="0" />
  3472. <use
  3473. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3474. height="100%"
  3475. width="100%"
  3476. id="use1443-3-8"
  3477. transform="translate(382.35305)"
  3478. xlink:href="#path1011-0-4"
  3479. inkscape:tiled-clone-of="#path1011-0-4"
  3480. y="0"
  3481. x="0" />
  3482. <use
  3483. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3484. height="100%"
  3485. width="100%"
  3486. id="use1445-9-0"
  3487. transform="translate(395.09817)"
  3488. xlink:href="#path1011-0-4"
  3489. inkscape:tiled-clone-of="#path1011-0-4"
  3490. y="0"
  3491. x="0" />
  3492. <use
  3493. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3494. height="100%"
  3495. width="100%"
  3496. id="use1447-0-4"
  3497. transform="translate(407.84329)"
  3498. xlink:href="#path1011-0-4"
  3499. inkscape:tiled-clone-of="#path1011-0-4"
  3500. y="0"
  3501. x="0" />
  3502. <use
  3503. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3504. height="100%"
  3505. width="100%"
  3506. id="use1449-8-0"
  3507. transform="translate(420.58841)"
  3508. xlink:href="#path1011-0-4"
  3509. inkscape:tiled-clone-of="#path1011-0-4"
  3510. y="0"
  3511. x="0" />
  3512. <use
  3513. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3514. height="100%"
  3515. width="100%"
  3516. id="use1451-8-9"
  3517. transform="translate(433.33353)"
  3518. xlink:href="#path1011-0-4"
  3519. inkscape:tiled-clone-of="#path1011-0-4"
  3520. y="0"
  3521. x="0" />
  3522. <use
  3523. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3524. height="100%"
  3525. width="100%"
  3526. id="use1453-5-1"
  3527. transform="translate(446.07865)"
  3528. xlink:href="#path1011-0-4"
  3529. inkscape:tiled-clone-of="#path1011-0-4"
  3530. y="0"
  3531. x="0" />
  3532. <use
  3533. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3534. height="100%"
  3535. width="100%"
  3536. id="use1455-0-9"
  3537. transform="translate(458.82377)"
  3538. xlink:href="#path1011-0-4"
  3539. inkscape:tiled-clone-of="#path1011-0-4"
  3540. y="0"
  3541. x="0" />
  3542. <use
  3543. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3544. height="100%"
  3545. width="100%"
  3546. id="use1457-9-6"
  3547. transform="translate(471.56889)"
  3548. xlink:href="#path1011-0-4"
  3549. inkscape:tiled-clone-of="#path1011-0-4"
  3550. y="0"
  3551. x="0" />
  3552. <use
  3553. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3554. height="100%"
  3555. width="100%"
  3556. id="use1459-6-2"
  3557. transform="translate(484.31401)"
  3558. xlink:href="#path1011-0-4"
  3559. inkscape:tiled-clone-of="#path1011-0-4"
  3560. y="0"
  3561. x="0" />
  3562. <use
  3563. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3564. height="100%"
  3565. width="100%"
  3566. id="use1461-3-5"
  3567. transform="translate(497.05913)"
  3568. xlink:href="#path1011-0-4"
  3569. inkscape:tiled-clone-of="#path1011-0-4"
  3570. y="0"
  3571. x="0" />
  3572. <use
  3573. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3574. height="100%"
  3575. width="100%"
  3576. id="use1463-8-4"
  3577. transform="translate(509.80425)"
  3578. xlink:href="#path1011-0-4"
  3579. inkscape:tiled-clone-of="#path1011-0-4"
  3580. y="0"
  3581. x="0" />
  3582. <use
  3583. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3584. height="100%"
  3585. width="100%"
  3586. id="use1465-5-4"
  3587. transform="translate(522.54937)"
  3588. xlink:href="#path1011-0-4"
  3589. inkscape:tiled-clone-of="#path1011-0-4"
  3590. y="0"
  3591. x="0" />
  3592. <use
  3593. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3594. height="100%"
  3595. width="100%"
  3596. id="use1467-6-9"
  3597. transform="translate(535.29449)"
  3598. xlink:href="#path1011-0-4"
  3599. inkscape:tiled-clone-of="#path1011-0-4"
  3600. y="0"
  3601. x="0" />
  3602. <use
  3603. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3604. height="100%"
  3605. width="100%"
  3606. id="use1469-1-9"
  3607. transform="translate(548.03961)"
  3608. xlink:href="#path1011-0-4"
  3609. inkscape:tiled-clone-of="#path1011-0-4"
  3610. y="0"
  3611. x="0" />
  3612. <use
  3613. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3614. height="100%"
  3615. width="100%"
  3616. id="use1471-1-3"
  3617. transform="translate(560.78473)"
  3618. xlink:href="#path1011-0-4"
  3619. inkscape:tiled-clone-of="#path1011-0-4"
  3620. y="0"
  3621. x="0" />
  3622. <use
  3623. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3624. height="100%"
  3625. width="100%"
  3626. id="use1473-5-6"
  3627. transform="translate(573.52985)"
  3628. xlink:href="#path1011-0-4"
  3629. inkscape:tiled-clone-of="#path1011-0-4"
  3630. y="0"
  3631. x="0" />
  3632. <use
  3633. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3634. height="100%"
  3635. width="100%"
  3636. id="use1475-9-0"
  3637. transform="translate(586.27494)"
  3638. xlink:href="#path1011-0-4"
  3639. inkscape:tiled-clone-of="#path1011-0-4"
  3640. y="0"
  3641. x="0" />
  3642. <use
  3643. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3644. height="100%"
  3645. width="100%"
  3646. id="use1477-8-5"
  3647. transform="translate(599.02003)"
  3648. xlink:href="#path1011-0-4"
  3649. inkscape:tiled-clone-of="#path1011-0-4"
  3650. y="0"
  3651. x="0" />
  3652. <use
  3653. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3654. height="100%"
  3655. width="100%"
  3656. id="use1479-4-0"
  3657. transform="translate(611.76512)"
  3658. xlink:href="#path1011-0-4"
  3659. inkscape:tiled-clone-of="#path1011-0-4"
  3660. y="0"
  3661. x="0" />
  3662. <use
  3663. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3664. height="100%"
  3665. width="100%"
  3666. id="use1481-8-2"
  3667. transform="translate(624.5102)"
  3668. xlink:href="#path1011-0-4"
  3669. inkscape:tiled-clone-of="#path1011-0-4"
  3670. y="0"
  3671. x="0" />
  3672. </g>
  3673. <g
  3674. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3675. transform="matrix(1,0,0,1.5493707,-649.99999,-219.7483)"
  3676. id="g1379-1-9">
  3677. <path
  3678. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
  3679. d="M -40,-50 V 399.99999"
  3680. id="path1011-0-4"
  3681. inkscape:tile-cx="-50.000001"
  3682. inkscape:tile-cy="175"
  3683. inkscape:tile-w="0.35299999"
  3684. inkscape:tile-h="450"
  3685. inkscape:tile-x0="-50.176501"
  3686. inkscape:tile-y0="-50.000001" />
  3687. <path
  3688. id="path1011-3-3-3"
  3689. d="M 597.25529,-50 V 400"
  3690. style="fill:none;fill-rule:evenodd;stroke:#e94e1b;stroke-width:0.35323607;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
  3691. <use
  3692. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3693. x="0"
  3694. y="0"
  3695. inkscape:tiled-clone-of="#path1011-0-4"
  3696. xlink:href="#path1011-0-4"
  3697. transform="translate(12.745064)"
  3698. id="use1030-0-5"
  3699. width="100%"
  3700. height="100%" />
  3701. <use
  3702. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3703. x="0"
  3704. y="0"
  3705. inkscape:tiled-clone-of="#path1011-0-4"
  3706. xlink:href="#path1011-0-4"
  3707. transform="translate(25.490163)"
  3708. id="use1032-4-1"
  3709. width="100%"
  3710. height="100%" />
  3711. <use
  3712. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3713. x="0"
  3714. y="0"
  3715. inkscape:tiled-clone-of="#path1011-0-4"
  3716. xlink:href="#path1011-0-4"
  3717. transform="translate(38.23526)"
  3718. id="use1034-4-7"
  3719. width="100%"
  3720. height="100%" />
  3721. <use
  3722. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3723. x="0"
  3724. y="0"
  3725. inkscape:tiled-clone-of="#path1011-0-4"
  3726. xlink:href="#path1011-0-4"
  3727. transform="translate(50.980359)"
  3728. id="use1036-4-4"
  3729. width="100%"
  3730. height="100%" />
  3731. <use
  3732. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3733. x="0"
  3734. y="0"
  3735. inkscape:tiled-clone-of="#path1011-0-4"
  3736. xlink:href="#path1011-0-4"
  3737. transform="translate(63.725457)"
  3738. id="use1038-4-3"
  3739. width="100%"
  3740. height="100%" />
  3741. <use
  3742. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3743. x="0"
  3744. y="0"
  3745. inkscape:tiled-clone-of="#path1011-0-4"
  3746. xlink:href="#path1011-0-4"
  3747. transform="translate(76.470555)"
  3748. id="use1040-7-1"
  3749. width="100%"
  3750. height="100%" />
  3751. <use
  3752. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3753. x="0"
  3754. y="0"
  3755. inkscape:tiled-clone-of="#path1011-0-4"
  3756. xlink:href="#path1011-0-4"
  3757. transform="translate(89.215651)"
  3758. id="use1042-6-4"
  3759. width="100%"
  3760. height="100%" />
  3761. <use
  3762. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3763. x="0"
  3764. y="0"
  3765. inkscape:tiled-clone-of="#path1011-0-4"
  3766. xlink:href="#path1011-0-4"
  3767. transform="translate(101.96075)"
  3768. id="use1044-3-6"
  3769. width="100%"
  3770. height="100%" />
  3771. <use
  3772. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3773. x="0"
  3774. y="0"
  3775. inkscape:tiled-clone-of="#path1011-0-4"
  3776. xlink:href="#path1011-0-4"
  3777. transform="translate(114.70585)"
  3778. id="use1046-1-9"
  3779. width="100%"
  3780. height="100%" />
  3781. <use
  3782. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3783. x="0"
  3784. y="0"
  3785. inkscape:tiled-clone-of="#path1011-0-4"
  3786. xlink:href="#path1011-0-4"
  3787. transform="translate(127.45094)"
  3788. id="use1048-7-4"
  3789. width="100%"
  3790. height="100%" />
  3791. <use
  3792. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3793. x="0"
  3794. y="0"
  3795. inkscape:tiled-clone-of="#path1011-0-4"
  3796. xlink:href="#path1011-0-4"
  3797. transform="translate(140.19604)"
  3798. id="use1050-5-2"
  3799. width="100%"
  3800. height="100%" />
  3801. <use
  3802. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3803. x="0"
  3804. y="0"
  3805. inkscape:tiled-clone-of="#path1011-0-4"
  3806. xlink:href="#path1011-0-4"
  3807. transform="translate(152.94114)"
  3808. id="use1052-9-2"
  3809. width="100%"
  3810. height="100%" />
  3811. <use
  3812. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3813. x="0"
  3814. y="0"
  3815. inkscape:tiled-clone-of="#path1011-0-4"
  3816. xlink:href="#path1011-0-4"
  3817. transform="translate(165.68623)"
  3818. id="use1054-6-6"
  3819. width="100%"
  3820. height="100%" />
  3821. <use
  3822. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3823. x="0"
  3824. y="0"
  3825. inkscape:tiled-clone-of="#path1011-0-4"
  3826. xlink:href="#path1011-0-4"
  3827. transform="translate(178.43133)"
  3828. id="use1056-2-4"
  3829. width="100%"
  3830. height="100%" />
  3831. <use
  3832. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3833. x="0"
  3834. y="0"
  3835. inkscape:tiled-clone-of="#path1011-0-4"
  3836. xlink:href="#path1011-0-4"
  3837. transform="translate(191.17643)"
  3838. id="use1058-1-1"
  3839. width="100%"
  3840. height="100%" />
  3841. <use
  3842. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3843. x="0"
  3844. y="0"
  3845. inkscape:tiled-clone-of="#path1011-0-4"
  3846. xlink:href="#path1011-0-4"
  3847. transform="translate(203.92153)"
  3848. id="use1060-7-2"
  3849. width="100%"
  3850. height="100%" />
  3851. <use
  3852. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3853. x="0"
  3854. y="0"
  3855. inkscape:tiled-clone-of="#path1011-0-4"
  3856. xlink:href="#path1011-0-4"
  3857. transform="translate(216.66664)"
  3858. id="use1062-8-8"
  3859. width="100%"
  3860. height="100%" />
  3861. <use
  3862. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3863. x="0"
  3864. y="0"
  3865. inkscape:tiled-clone-of="#path1011-0-4"
  3866. xlink:href="#path1011-0-4"
  3867. transform="translate(229.41174)"
  3868. id="use1064-5-8"
  3869. width="100%"
  3870. height="100%" />
  3871. <use
  3872. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3873. x="0"
  3874. y="0"
  3875. inkscape:tiled-clone-of="#path1011-0-4"
  3876. xlink:href="#path1011-0-4"
  3877. transform="translate(242.15685)"
  3878. id="use1066-7-9"
  3879. width="100%"
  3880. height="100%" />
  3881. <use
  3882. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3883. x="0"
  3884. y="0"
  3885. inkscape:tiled-clone-of="#path1011-0-4"
  3886. xlink:href="#path1011-0-4"
  3887. transform="translate(254.90195)"
  3888. id="use1068-4-2"
  3889. width="100%"
  3890. height="100%" />
  3891. <use
  3892. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3893. x="0"
  3894. y="0"
  3895. inkscape:tiled-clone-of="#path1011-0-4"
  3896. xlink:href="#path1011-0-4"
  3897. transform="translate(267.64705)"
  3898. id="use1070-1-8"
  3899. width="100%"
  3900. height="100%" />
  3901. <use
  3902. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3903. x="0"
  3904. y="0"
  3905. inkscape:tiled-clone-of="#path1011-0-4"
  3906. xlink:href="#path1011-0-4"
  3907. transform="translate(280.39216)"
  3908. id="use1072-8-8"
  3909. width="100%"
  3910. height="100%" />
  3911. <use
  3912. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3913. x="0"
  3914. y="0"
  3915. inkscape:tiled-clone-of="#path1011-0-4"
  3916. xlink:href="#path1011-0-4"
  3917. transform="translate(293.13726)"
  3918. id="use1074-5-8"
  3919. width="100%"
  3920. height="100%" />
  3921. <use
  3922. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3923. x="0"
  3924. y="0"
  3925. inkscape:tiled-clone-of="#path1011-0-4"
  3926. xlink:href="#path1011-0-4"
  3927. transform="translate(305.88237)"
  3928. id="use1076-9-6"
  3929. width="100%"
  3930. height="100%" />
  3931. <use
  3932. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3933. x="0"
  3934. y="0"
  3935. inkscape:tiled-clone-of="#path1011-0-4"
  3936. xlink:href="#path1011-0-4"
  3937. transform="translate(318.62745)"
  3938. id="use1078-7-8"
  3939. width="100%"
  3940. height="100%" />
  3941. <use
  3942. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3943. x="0"
  3944. y="0"
  3945. inkscape:tiled-clone-of="#path1011-0-4"
  3946. xlink:href="#path1011-0-4"
  3947. transform="translate(331.37257)"
  3948. id="use1080-5-3"
  3949. width="100%"
  3950. height="100%" />
  3951. <use
  3952. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3953. x="0"
  3954. y="0"
  3955. inkscape:tiled-clone-of="#path1011-0-4"
  3956. xlink:href="#path1011-0-4"
  3957. transform="translate(344.11769)"
  3958. id="use1082-3-8"
  3959. width="100%"
  3960. height="100%" />
  3961. <use
  3962. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3963. x="0"
  3964. y="0"
  3965. inkscape:tiled-clone-of="#path1011-0-4"
  3966. xlink:href="#path1011-0-4"
  3967. transform="translate(356.86281)"
  3968. id="use1084-8-3"
  3969. width="100%"
  3970. height="100%" />
  3971. <use
  3972. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3973. x="0"
  3974. y="0"
  3975. inkscape:tiled-clone-of="#path1011-0-4"
  3976. xlink:href="#path1011-0-4"
  3977. transform="translate(369.60793)"
  3978. id="use1086-8-3"
  3979. width="100%"
  3980. height="100%" />
  3981. <use
  3982. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3983. x="0"
  3984. y="0"
  3985. inkscape:tiled-clone-of="#path1011-0-4"
  3986. xlink:href="#path1011-0-4"
  3987. transform="translate(382.35305)"
  3988. id="use1088-3-3"
  3989. width="100%"
  3990. height="100%" />
  3991. <use
  3992. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  3993. x="0"
  3994. y="0"
  3995. inkscape:tiled-clone-of="#path1011-0-4"
  3996. xlink:href="#path1011-0-4"
  3997. transform="translate(395.09817)"
  3998. id="use1090-1-8"
  3999. width="100%"
  4000. height="100%" />
  4001. <use
  4002. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4003. x="0"
  4004. y="0"
  4005. inkscape:tiled-clone-of="#path1011-0-4"
  4006. xlink:href="#path1011-0-4"
  4007. transform="translate(407.84329)"
  4008. id="use1092-8-0"
  4009. width="100%"
  4010. height="100%" />
  4011. <use
  4012. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4013. x="0"
  4014. y="0"
  4015. inkscape:tiled-clone-of="#path1011-0-4"
  4016. xlink:href="#path1011-0-4"
  4017. transform="translate(420.58841)"
  4018. id="use1094-9-4"
  4019. width="100%"
  4020. height="100%" />
  4021. <use
  4022. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4023. x="0"
  4024. y="0"
  4025. inkscape:tiled-clone-of="#path1011-0-4"
  4026. xlink:href="#path1011-0-4"
  4027. transform="translate(433.33353)"
  4028. id="use1096-6-7"
  4029. width="100%"
  4030. height="100%" />
  4031. <use
  4032. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4033. x="0"
  4034. y="0"
  4035. inkscape:tiled-clone-of="#path1011-0-4"
  4036. xlink:href="#path1011-0-4"
  4037. transform="translate(446.07865)"
  4038. id="use1098-4-6"
  4039. width="100%"
  4040. height="100%" />
  4041. <use
  4042. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4043. x="0"
  4044. y="0"
  4045. inkscape:tiled-clone-of="#path1011-0-4"
  4046. xlink:href="#path1011-0-4"
  4047. transform="translate(458.82377)"
  4048. id="use1100-3-8"
  4049. width="100%"
  4050. height="100%" />
  4051. <use
  4052. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4053. x="0"
  4054. y="0"
  4055. inkscape:tiled-clone-of="#path1011-0-4"
  4056. xlink:href="#path1011-0-4"
  4057. transform="translate(471.56889)"
  4058. id="use1102-3-9"
  4059. width="100%"
  4060. height="100%" />
  4061. <use
  4062. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4063. x="0"
  4064. y="0"
  4065. inkscape:tiled-clone-of="#path1011-0-4"
  4066. xlink:href="#path1011-0-4"
  4067. transform="translate(484.31401)"
  4068. id="use1104-3-0"
  4069. width="100%"
  4070. height="100%" />
  4071. <use
  4072. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4073. x="0"
  4074. y="0"
  4075. inkscape:tiled-clone-of="#path1011-0-4"
  4076. xlink:href="#path1011-0-4"
  4077. transform="translate(497.05913)"
  4078. id="use1106-8-6"
  4079. width="100%"
  4080. height="100%" />
  4081. <use
  4082. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4083. x="0"
  4084. y="0"
  4085. inkscape:tiled-clone-of="#path1011-0-4"
  4086. xlink:href="#path1011-0-4"
  4087. transform="translate(509.80425)"
  4088. id="use1108-6-8"
  4089. width="100%"
  4090. height="100%" />
  4091. <use
  4092. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4093. x="0"
  4094. y="0"
  4095. inkscape:tiled-clone-of="#path1011-0-4"
  4096. xlink:href="#path1011-0-4"
  4097. transform="translate(522.54937)"
  4098. id="use1110-0-7"
  4099. width="100%"
  4100. height="100%" />
  4101. <use
  4102. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4103. x="0"
  4104. y="0"
  4105. inkscape:tiled-clone-of="#path1011-0-4"
  4106. xlink:href="#path1011-0-4"
  4107. transform="translate(535.29449)"
  4108. id="use1112-4-9"
  4109. width="100%"
  4110. height="100%" />
  4111. <use
  4112. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4113. x="0"
  4114. y="0"
  4115. inkscape:tiled-clone-of="#path1011-0-4"
  4116. xlink:href="#path1011-0-4"
  4117. transform="translate(548.03961)"
  4118. id="use1114-8-0"
  4119. width="100%"
  4120. height="100%" />
  4121. <use
  4122. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4123. x="0"
  4124. y="0"
  4125. inkscape:tiled-clone-of="#path1011-0-4"
  4126. xlink:href="#path1011-0-4"
  4127. transform="translate(560.78473)"
  4128. id="use1116-8-3"
  4129. width="100%"
  4130. height="100%" />
  4131. <use
  4132. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4133. x="0"
  4134. y="0"
  4135. inkscape:tiled-clone-of="#path1011-0-4"
  4136. xlink:href="#path1011-0-4"
  4137. transform="translate(573.52985)"
  4138. id="use1118-8-3"
  4139. width="100%"
  4140. height="100%" />
  4141. <use
  4142. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4143. x="0"
  4144. y="0"
  4145. inkscape:tiled-clone-of="#path1011-0-4"
  4146. xlink:href="#path1011-0-4"
  4147. transform="translate(586.27494)"
  4148. id="use1120-9-3"
  4149. width="100%"
  4150. height="100%" />
  4151. <use
  4152. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4153. x="0"
  4154. y="0"
  4155. inkscape:tiled-clone-of="#path1011-0-4"
  4156. xlink:href="#path1011-0-4"
  4157. transform="translate(599.02003)"
  4158. id="use1122-7-7"
  4159. width="100%"
  4160. height="100%" />
  4161. <use
  4162. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4163. x="0"
  4164. y="0"
  4165. inkscape:tiled-clone-of="#path1011-0-4"
  4166. xlink:href="#path1011-0-4"
  4167. transform="translate(611.76512)"
  4168. id="use1124-7-3"
  4169. width="100%"
  4170. height="100%" />
  4171. <use
  4172. style="stroke-width:0.35323607;stroke-miterlimit:4;stroke-dasharray:none;fill:none;fill-opacity:1;stroke:#e94e1b;stroke-opacity:1"
  4173. x="0"
  4174. y="0"
  4175. inkscape:tiled-clone-of="#path1011-0-4"
  4176. xlink:href="#path1011-0-4"
  4177. transform="translate(624.5102)"
  4178. id="use1126-6-2"
  4179. width="100%"
  4180. height="100%" />
  4181. </g>
  4182. </g>
  4183. </g>
  4184. </g>
  4185. </svg>