tutorial_diag3.svg 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:cc="http://creativecommons.org/ns#"
  6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7. xmlns:svg="http://www.w3.org/2000/svg"
  8. xmlns="http://www.w3.org/2000/svg"
  9. xmlns:xlink="http://www.w3.org/1999/xlink"
  10. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  11. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  12. width="1075.4187"
  13. height="919.88129"
  14. id="svg2"
  15. version="1.1"
  16. inkscape:version="0.48.4 r9939"
  17. sodipodi:docname="tutorial_diag1.svg">
  18. <defs
  19. id="defs4">
  20. <linearGradient
  21. id="linearGradient18419">
  22. <stop
  23. style="stop-color:#808080;stop-opacity:1;"
  24. offset="0"
  25. id="stop18421" />
  26. <stop
  27. style="stop-color:#ffffff;stop-opacity:1;"
  28. offset="1"
  29. id="stop18423" />
  30. </linearGradient>
  31. <linearGradient
  32. id="linearGradient4707">
  33. <stop
  34. id="stop4709"
  35. offset="0"
  36. style="stop-color:#c0c0c0;stop-opacity:1;" />
  37. <stop
  38. style="stop-color:#ffffff;stop-opacity:1;"
  39. offset="0.40000001"
  40. id="stop4711" />
  41. <stop
  42. id="stop4713"
  43. offset="0.60000002"
  44. style="stop-color:#ffffff;stop-opacity:1;" />
  45. <stop
  46. id="stop4715"
  47. offset="1"
  48. style="stop-color:#c0c0c0;stop-opacity:1;" />
  49. </linearGradient>
  50. <linearGradient
  51. id="linearGradient5254-5">
  52. <stop
  53. style="stop-color:#c0c0c0;stop-opacity:1;"
  54. offset="0"
  55. id="stop5256-7" />
  56. <stop
  57. style="stop-color:#808080;stop-opacity:1;"
  58. offset="1"
  59. id="stop5262-7" />
  60. </linearGradient>
  61. <linearGradient
  62. id="linearGradient4707-3">
  63. <stop
  64. id="stop4709-1"
  65. offset="0"
  66. style="stop-color:#c0c0c0;stop-opacity:1;" />
  67. <stop
  68. style="stop-color:#ffffff;stop-opacity:1;"
  69. offset="0.40000001"
  70. id="stop4711-4" />
  71. <stop
  72. id="stop4713-1"
  73. offset="0.60000002"
  74. style="stop-color:#ffffff;stop-opacity:1;" />
  75. <stop
  76. id="stop4715-4"
  77. offset="1"
  78. style="stop-color:#c0c0c0;stop-opacity:1;" />
  79. </linearGradient>
  80. <linearGradient
  81. id="linearGradient5254-5-2">
  82. <stop
  83. style="stop-color:#c0c0c0;stop-opacity:1;"
  84. offset="0"
  85. id="stop5256-7-9" />
  86. <stop
  87. style="stop-color:#808080;stop-opacity:1;"
  88. offset="1"
  89. id="stop5262-7-9" />
  90. </linearGradient>
  91. <linearGradient
  92. id="linearGradient4707-6">
  93. <stop
  94. id="stop4709-2"
  95. offset="0"
  96. style="stop-color:#c0c0c0;stop-opacity:1;" />
  97. <stop
  98. style="stop-color:#ffffff;stop-opacity:1;"
  99. offset="0.40000001"
  100. id="stop4711-0" />
  101. <stop
  102. id="stop4713-2"
  103. offset="0.60000002"
  104. style="stop-color:#ffffff;stop-opacity:1;" />
  105. <stop
  106. id="stop4715-5"
  107. offset="1"
  108. style="stop-color:#c0c0c0;stop-opacity:1;" />
  109. </linearGradient>
  110. <linearGradient
  111. id="linearGradient5254-5-5">
  112. <stop
  113. style="stop-color:#c0c0c0;stop-opacity:1;"
  114. offset="0"
  115. id="stop5256-7-4" />
  116. <stop
  117. style="stop-color:#808080;stop-opacity:1;"
  118. offset="1"
  119. id="stop5262-7-96" />
  120. </linearGradient>
  121. <linearGradient
  122. id="linearGradient4707-5">
  123. <stop
  124. id="stop4709-3"
  125. offset="0"
  126. style="stop-color:#c0c0c0;stop-opacity:1;" />
  127. <stop
  128. style="stop-color:#ffffff;stop-opacity:1;"
  129. offset="0.40000001"
  130. id="stop4711-9" />
  131. <stop
  132. id="stop4713-8"
  133. offset="0.60000002"
  134. style="stop-color:#ffffff;stop-opacity:1;" />
  135. <stop
  136. id="stop4715-8"
  137. offset="1"
  138. style="stop-color:#c0c0c0;stop-opacity:1;" />
  139. </linearGradient>
  140. <linearGradient
  141. id="linearGradient5254-5-3">
  142. <stop
  143. style="stop-color:#c0c0c0;stop-opacity:1;"
  144. offset="0"
  145. id="stop5256-7-43" />
  146. <stop
  147. style="stop-color:#808080;stop-opacity:1;"
  148. offset="1"
  149. id="stop5262-7-4" />
  150. </linearGradient>
  151. <linearGradient
  152. inkscape:collect="always"
  153. xlink:href="#linearGradient18419-7"
  154. id="linearGradient18429-4"
  155. x1="-108.93402"
  156. y1="-376.16904"
  157. x2="741.15741"
  158. y2="-376.16904"
  159. gradientUnits="userSpaceOnUse" />
  160. <linearGradient
  161. id="linearGradient18419-7">
  162. <stop
  163. style="stop-color:#808080;stop-opacity:1;"
  164. offset="0"
  165. id="stop18421-0" />
  166. <stop
  167. style="stop-color:#ffffff;stop-opacity:1;"
  168. offset="1"
  169. id="stop18423-4" />
  170. </linearGradient>
  171. <linearGradient
  172. inkscape:collect="always"
  173. xlink:href="#linearGradient18419-0"
  174. id="linearGradient18429-7"
  175. x1="-108.93402"
  176. y1="-376.16904"
  177. x2="741.15741"
  178. y2="-376.16904"
  179. gradientUnits="userSpaceOnUse" />
  180. <linearGradient
  181. id="linearGradient18419-0">
  182. <stop
  183. style="stop-color:#808080;stop-opacity:1;"
  184. offset="0"
  185. id="stop18421-8" />
  186. <stop
  187. style="stop-color:#ffffff;stop-opacity:1;"
  188. offset="1"
  189. id="stop18423-1" />
  190. </linearGradient>
  191. <linearGradient
  192. inkscape:collect="always"
  193. xlink:href="#linearGradient18419-05"
  194. id="linearGradient18429-5"
  195. x1="-108.93402"
  196. y1="-376.16904"
  197. x2="741.15741"
  198. y2="-376.16904"
  199. gradientUnits="userSpaceOnUse" />
  200. <linearGradient
  201. id="linearGradient18419-05">
  202. <stop
  203. style="stop-color:#808080;stop-opacity:1;"
  204. offset="0"
  205. id="stop18421-06" />
  206. <stop
  207. style="stop-color:#ffffff;stop-opacity:1;"
  208. offset="1"
  209. id="stop18423-0" />
  210. </linearGradient>
  211. <linearGradient
  212. inkscape:collect="always"
  213. xlink:href="#linearGradient4707"
  214. id="linearGradient18600"
  215. gradientUnits="userSpaceOnUse"
  216. gradientTransform="matrix(0.42596717,0,0,0.57376114,615.18158,202.43298)"
  217. spreadMethod="pad"
  218. x1="-1057.1428"
  219. y1="-137.63783"
  220. x2="-1057.1428"
  221. y2="108.07645" />
  222. <linearGradient
  223. inkscape:collect="always"
  224. xlink:href="#linearGradient5254-5"
  225. id="linearGradient18602"
  226. gradientUnits="userSpaceOnUse"
  227. gradientTransform="matrix(0.42596717,0,0,0.57376114,615.18158,202.43298)"
  228. x1="-1057.1428"
  229. y1="-137.63783"
  230. x2="-1057.1428"
  231. y2="108.07645" />
  232. <linearGradient
  233. inkscape:collect="always"
  234. xlink:href="#linearGradient4707-6"
  235. id="linearGradient18608"
  236. gradientUnits="userSpaceOnUse"
  237. gradientTransform="matrix(0.42596717,0,0,0.57376114,615.18158,202.43298)"
  238. spreadMethod="pad"
  239. x1="-1057.1428"
  240. y1="-137.63783"
  241. x2="-1057.1428"
  242. y2="108.07645" />
  243. <linearGradient
  244. inkscape:collect="always"
  245. xlink:href="#linearGradient5254-5-5"
  246. id="linearGradient18610"
  247. gradientUnits="userSpaceOnUse"
  248. gradientTransform="matrix(0.42596717,0,0,0.57376114,615.18158,202.43298)"
  249. x1="-1057.1428"
  250. y1="-137.63783"
  251. x2="-1057.1428"
  252. y2="108.07645" />
  253. <linearGradient
  254. inkscape:collect="always"
  255. xlink:href="#linearGradient4707-5"
  256. id="linearGradient18612"
  257. gradientUnits="userSpaceOnUse"
  258. gradientTransform="matrix(0.42596717,0,0,0.57376114,615.18158,202.43298)"
  259. spreadMethod="pad"
  260. x1="-1057.1428"
  261. y1="-137.63783"
  262. x2="-1057.1428"
  263. y2="108.07645" />
  264. <linearGradient
  265. inkscape:collect="always"
  266. xlink:href="#linearGradient5254-5-3"
  267. id="linearGradient18614"
  268. gradientUnits="userSpaceOnUse"
  269. gradientTransform="matrix(0.42596717,0,0,0.57376114,615.18158,202.43298)"
  270. x1="-1057.1428"
  271. y1="-137.63783"
  272. x2="-1057.1428"
  273. y2="108.07645" />
  274. <linearGradient
  275. id="linearGradient4707-64">
  276. <stop
  277. id="stop4709-39"
  278. offset="0"
  279. style="stop-color:#c0c0c0;stop-opacity:1;" />
  280. <stop
  281. style="stop-color:#ffffff;stop-opacity:1;"
  282. offset="0.40000001"
  283. id="stop4711-01" />
  284. <stop
  285. id="stop4713-16"
  286. offset="0.60000002"
  287. style="stop-color:#ffffff;stop-opacity:1;" />
  288. <stop
  289. id="stop4715-46"
  290. offset="1"
  291. style="stop-color:#c0c0c0;stop-opacity:1;" />
  292. </linearGradient>
  293. <linearGradient
  294. id="linearGradient5254-5-56">
  295. <stop
  296. style="stop-color:#c0c0c0;stop-opacity:1;"
  297. offset="0"
  298. id="stop5256-7-8" />
  299. <stop
  300. style="stop-color:#808080;stop-opacity:1;"
  301. offset="1"
  302. id="stop5262-7-0" />
  303. </linearGradient>
  304. <linearGradient
  305. id="linearGradient4707-64-6">
  306. <stop
  307. id="stop4709-39-2"
  308. offset="0"
  309. style="stop-color:#c0c0c0;stop-opacity:1;" />
  310. <stop
  311. style="stop-color:#ffffff;stop-opacity:1;"
  312. offset="0.40000001"
  313. id="stop4711-01-3" />
  314. <stop
  315. id="stop4713-16-6"
  316. offset="0.60000002"
  317. style="stop-color:#ffffff;stop-opacity:1;" />
  318. <stop
  319. id="stop4715-46-6"
  320. offset="1"
  321. style="stop-color:#c0c0c0;stop-opacity:1;" />
  322. </linearGradient>
  323. <linearGradient
  324. id="linearGradient5254-5-56-3">
  325. <stop
  326. style="stop-color:#c0c0c0;stop-opacity:1;"
  327. offset="0"
  328. id="stop5256-7-8-6" />
  329. <stop
  330. style="stop-color:#808080;stop-opacity:1;"
  331. offset="1"
  332. id="stop5262-7-0-4" />
  333. </linearGradient>
  334. <linearGradient
  335. id="linearGradient4707-64-8">
  336. <stop
  337. id="stop4709-39-3"
  338. offset="0"
  339. style="stop-color:#c0c0c0;stop-opacity:1;" />
  340. <stop
  341. style="stop-color:#ffffff;stop-opacity:1;"
  342. offset="0.40000001"
  343. id="stop4711-01-0" />
  344. <stop
  345. id="stop4713-16-1"
  346. offset="0.60000002"
  347. style="stop-color:#ffffff;stop-opacity:1;" />
  348. <stop
  349. id="stop4715-46-5"
  350. offset="1"
  351. style="stop-color:#c0c0c0;stop-opacity:1;" />
  352. </linearGradient>
  353. <linearGradient
  354. id="linearGradient5254-5-56-5">
  355. <stop
  356. style="stop-color:#c0c0c0;stop-opacity:1;"
  357. offset="0"
  358. id="stop5256-7-8-3" />
  359. <stop
  360. style="stop-color:#808080;stop-opacity:1;"
  361. offset="1"
  362. id="stop5262-7-0-9" />
  363. </linearGradient>
  364. <linearGradient
  365. id="linearGradient4707-64-8-3">
  366. <stop
  367. id="stop4709-39-3-1"
  368. offset="0"
  369. style="stop-color:#c0c0c0;stop-opacity:1;" />
  370. <stop
  371. style="stop-color:#ffffff;stop-opacity:1;"
  372. offset="0.40000001"
  373. id="stop4711-01-0-3" />
  374. <stop
  375. id="stop4713-16-1-2"
  376. offset="0.60000002"
  377. style="stop-color:#ffffff;stop-opacity:1;" />
  378. <stop
  379. id="stop4715-46-5-0"
  380. offset="1"
  381. style="stop-color:#c0c0c0;stop-opacity:1;" />
  382. </linearGradient>
  383. <linearGradient
  384. id="linearGradient5254-5-56-5-7">
  385. <stop
  386. style="stop-color:#c0c0c0;stop-opacity:1;"
  387. offset="0"
  388. id="stop5256-7-8-3-8" />
  389. <stop
  390. style="stop-color:#808080;stop-opacity:1;"
  391. offset="1"
  392. id="stop5262-7-0-9-4" />
  393. </linearGradient>
  394. <linearGradient
  395. id="linearGradient4707-64-8-8">
  396. <stop
  397. id="stop4709-39-3-3"
  398. offset="0"
  399. style="stop-color:#c0c0c0;stop-opacity:1;" />
  400. <stop
  401. style="stop-color:#ffffff;stop-opacity:1;"
  402. offset="0.40000001"
  403. id="stop4711-01-0-5" />
  404. <stop
  405. id="stop4713-16-1-6"
  406. offset="0.60000002"
  407. style="stop-color:#ffffff;stop-opacity:1;" />
  408. <stop
  409. id="stop4715-46-5-3"
  410. offset="1"
  411. style="stop-color:#c0c0c0;stop-opacity:1;" />
  412. </linearGradient>
  413. <linearGradient
  414. id="linearGradient5254-5-56-5-4">
  415. <stop
  416. style="stop-color:#c0c0c0;stop-opacity:1;"
  417. offset="0"
  418. id="stop5256-7-8-3-87" />
  419. <stop
  420. style="stop-color:#808080;stop-opacity:1;"
  421. offset="1"
  422. id="stop5262-7-0-9-7" />
  423. </linearGradient>
  424. <linearGradient
  425. id="linearGradient4707-64-8-6">
  426. <stop
  427. id="stop4709-39-3-2"
  428. offset="0"
  429. style="stop-color:#c0c0c0;stop-opacity:1;" />
  430. <stop
  431. style="stop-color:#ffffff;stop-opacity:1;"
  432. offset="0.40000001"
  433. id="stop4711-01-0-7" />
  434. <stop
  435. id="stop4713-16-1-29"
  436. offset="0.60000002"
  437. style="stop-color:#ffffff;stop-opacity:1;" />
  438. <stop
  439. id="stop4715-46-5-8"
  440. offset="1"
  441. style="stop-color:#c0c0c0;stop-opacity:1;" />
  442. </linearGradient>
  443. <linearGradient
  444. id="linearGradient5254-5-56-5-8">
  445. <stop
  446. style="stop-color:#c0c0c0;stop-opacity:1;"
  447. offset="0"
  448. id="stop5256-7-8-3-7" />
  449. <stop
  450. style="stop-color:#808080;stop-opacity:1;"
  451. offset="1"
  452. id="stop5262-7-0-9-9" />
  453. </linearGradient>
  454. <linearGradient
  455. id="linearGradient4707-3-0">
  456. <stop
  457. id="stop4709-1-9"
  458. offset="0"
  459. style="stop-color:#c0c0c0;stop-opacity:1;" />
  460. <stop
  461. style="stop-color:#ffffff;stop-opacity:1;"
  462. offset="0.40000001"
  463. id="stop4711-4-2" />
  464. <stop
  465. id="stop4713-1-8"
  466. offset="0.60000002"
  467. style="stop-color:#ffffff;stop-opacity:1;" />
  468. <stop
  469. id="stop4715-4-2"
  470. offset="1"
  471. style="stop-color:#c0c0c0;stop-opacity:1;" />
  472. </linearGradient>
  473. <linearGradient
  474. id="linearGradient5254-5-2-9">
  475. <stop
  476. style="stop-color:#c0c0c0;stop-opacity:1;"
  477. offset="0"
  478. id="stop5256-7-9-9" />
  479. <stop
  480. style="stop-color:#808080;stop-opacity:1;"
  481. offset="1"
  482. id="stop5262-7-9-0" />
  483. </linearGradient>
  484. <linearGradient
  485. id="linearGradient4707-3-03">
  486. <stop
  487. id="stop4709-1-8"
  488. offset="0"
  489. style="stop-color:#c0c0c0;stop-opacity:1;" />
  490. <stop
  491. style="stop-color:#ffffff;stop-opacity:1;"
  492. offset="0.40000001"
  493. id="stop4711-4-8" />
  494. <stop
  495. id="stop4713-1-2"
  496. offset="0.60000002"
  497. style="stop-color:#ffffff;stop-opacity:1;" />
  498. <stop
  499. id="stop4715-4-9"
  500. offset="1"
  501. style="stop-color:#c0c0c0;stop-opacity:1;" />
  502. </linearGradient>
  503. <linearGradient
  504. id="linearGradient5254-5-2-3">
  505. <stop
  506. style="stop-color:#c0c0c0;stop-opacity:1;"
  507. offset="0"
  508. id="stop5256-7-9-0" />
  509. <stop
  510. style="stop-color:#808080;stop-opacity:1;"
  511. offset="1"
  512. id="stop5262-7-9-4" />
  513. </linearGradient>
  514. <linearGradient
  515. id="linearGradient4707-64-8-4">
  516. <stop
  517. id="stop4709-39-3-7"
  518. offset="0"
  519. style="stop-color:#c0c0c0;stop-opacity:1;" />
  520. <stop
  521. style="stop-color:#ffffff;stop-opacity:1;"
  522. offset="0.40000001"
  523. id="stop4711-01-0-4" />
  524. <stop
  525. id="stop4713-16-1-3"
  526. offset="0.60000002"
  527. style="stop-color:#ffffff;stop-opacity:1;" />
  528. <stop
  529. id="stop4715-46-5-9"
  530. offset="1"
  531. style="stop-color:#c0c0c0;stop-opacity:1;" />
  532. </linearGradient>
  533. <linearGradient
  534. id="linearGradient5254-5-56-5-1">
  535. <stop
  536. style="stop-color:#c0c0c0;stop-opacity:1;"
  537. offset="0"
  538. id="stop5256-7-8-3-5" />
  539. <stop
  540. style="stop-color:#808080;stop-opacity:1;"
  541. offset="1"
  542. id="stop5262-7-0-9-1" />
  543. </linearGradient>
  544. <linearGradient
  545. id="linearGradient4707-3-0-7">
  546. <stop
  547. id="stop4709-1-9-3"
  548. offset="0"
  549. style="stop-color:#c0c0c0;stop-opacity:1;" />
  550. <stop
  551. style="stop-color:#ffffff;stop-opacity:1;"
  552. offset="0.40000001"
  553. id="stop4711-4-2-9" />
  554. <stop
  555. id="stop4713-1-8-6"
  556. offset="0.60000002"
  557. style="stop-color:#ffffff;stop-opacity:1;" />
  558. <stop
  559. id="stop4715-4-2-1"
  560. offset="1"
  561. style="stop-color:#c0c0c0;stop-opacity:1;" />
  562. </linearGradient>
  563. <linearGradient
  564. id="linearGradient5254-5-2-9-7">
  565. <stop
  566. style="stop-color:#c0c0c0;stop-opacity:1;"
  567. offset="0"
  568. id="stop5256-7-9-9-5" />
  569. <stop
  570. style="stop-color:#808080;stop-opacity:1;"
  571. offset="1"
  572. id="stop5262-7-9-0-5" />
  573. </linearGradient>
  574. <linearGradient
  575. id="linearGradient4707-3-03-2">
  576. <stop
  577. id="stop4709-1-8-7"
  578. offset="0"
  579. style="stop-color:#c0c0c0;stop-opacity:1;" />
  580. <stop
  581. style="stop-color:#ffffff;stop-opacity:1;"
  582. offset="0.40000001"
  583. id="stop4711-4-8-5" />
  584. <stop
  585. id="stop4713-1-2-7"
  586. offset="0.60000002"
  587. style="stop-color:#ffffff;stop-opacity:1;" />
  588. <stop
  589. id="stop4715-4-9-9"
  590. offset="1"
  591. style="stop-color:#c0c0c0;stop-opacity:1;" />
  592. </linearGradient>
  593. <linearGradient
  594. id="linearGradient5254-5-2-3-9">
  595. <stop
  596. style="stop-color:#c0c0c0;stop-opacity:1;"
  597. offset="0"
  598. id="stop5256-7-9-0-6" />
  599. <stop
  600. style="stop-color:#808080;stop-opacity:1;"
  601. offset="1"
  602. id="stop5262-7-9-4-6" />
  603. </linearGradient>
  604. <linearGradient
  605. id="linearGradient4707-64-8-7">
  606. <stop
  607. id="stop4709-39-3-30"
  608. offset="0"
  609. style="stop-color:#c0c0c0;stop-opacity:1;" />
  610. <stop
  611. style="stop-color:#ffffff;stop-opacity:1;"
  612. offset="0.40000001"
  613. id="stop4711-01-0-42" />
  614. <stop
  615. id="stop4713-16-1-60"
  616. offset="0.60000002"
  617. style="stop-color:#ffffff;stop-opacity:1;" />
  618. <stop
  619. id="stop4715-46-5-7"
  620. offset="1"
  621. style="stop-color:#c0c0c0;stop-opacity:1;" />
  622. </linearGradient>
  623. <linearGradient
  624. id="linearGradient5254-5-56-5-3">
  625. <stop
  626. style="stop-color:#c0c0c0;stop-opacity:1;"
  627. offset="0"
  628. id="stop5256-7-8-3-0" />
  629. <stop
  630. style="stop-color:#808080;stop-opacity:1;"
  631. offset="1"
  632. id="stop5262-7-0-9-18" />
  633. </linearGradient>
  634. <linearGradient
  635. id="linearGradient4707-3-0-9">
  636. <stop
  637. id="stop4709-1-9-5"
  638. offset="0"
  639. style="stop-color:#c0c0c0;stop-opacity:1;" />
  640. <stop
  641. style="stop-color:#ffffff;stop-opacity:1;"
  642. offset="0.40000001"
  643. id="stop4711-4-2-1" />
  644. <stop
  645. id="stop4713-1-8-9"
  646. offset="0.60000002"
  647. style="stop-color:#ffffff;stop-opacity:1;" />
  648. <stop
  649. id="stop4715-4-2-7"
  650. offset="1"
  651. style="stop-color:#c0c0c0;stop-opacity:1;" />
  652. </linearGradient>
  653. <linearGradient
  654. id="linearGradient5254-5-2-9-5">
  655. <stop
  656. style="stop-color:#c0c0c0;stop-opacity:1;"
  657. offset="0"
  658. id="stop5256-7-9-9-7" />
  659. <stop
  660. style="stop-color:#808080;stop-opacity:1;"
  661. offset="1"
  662. id="stop5262-7-9-0-1" />
  663. </linearGradient>
  664. <linearGradient
  665. id="linearGradient4707-3-03-1">
  666. <stop
  667. id="stop4709-1-8-6"
  668. offset="0"
  669. style="stop-color:#c0c0c0;stop-opacity:1;" />
  670. <stop
  671. style="stop-color:#ffffff;stop-opacity:1;"
  672. offset="0.40000001"
  673. id="stop4711-4-8-6" />
  674. <stop
  675. id="stop4713-1-2-3"
  676. offset="0.60000002"
  677. style="stop-color:#ffffff;stop-opacity:1;" />
  678. <stop
  679. id="stop4715-4-9-6"
  680. offset="1"
  681. style="stop-color:#c0c0c0;stop-opacity:1;" />
  682. </linearGradient>
  683. <linearGradient
  684. id="linearGradient5254-5-2-3-4">
  685. <stop
  686. style="stop-color:#c0c0c0;stop-opacity:1;"
  687. offset="0"
  688. id="stop5256-7-9-0-5" />
  689. <stop
  690. style="stop-color:#808080;stop-opacity:1;"
  691. offset="1"
  692. id="stop5262-7-9-4-8" />
  693. </linearGradient>
  694. <linearGradient
  695. id="linearGradient4707-64-8-1">
  696. <stop
  697. id="stop4709-39-3-77"
  698. offset="0"
  699. style="stop-color:#c0c0c0;stop-opacity:1;" />
  700. <stop
  701. style="stop-color:#ffffff;stop-opacity:1;"
  702. offset="0.40000001"
  703. id="stop4711-01-0-9" />
  704. <stop
  705. id="stop4713-16-1-4"
  706. offset="0.60000002"
  707. style="stop-color:#ffffff;stop-opacity:1;" />
  708. <stop
  709. id="stop4715-46-5-6"
  710. offset="1"
  711. style="stop-color:#c0c0c0;stop-opacity:1;" />
  712. </linearGradient>
  713. <linearGradient
  714. id="linearGradient5254-5-56-5-77">
  715. <stop
  716. style="stop-color:#c0c0c0;stop-opacity:1;"
  717. offset="0"
  718. id="stop5256-7-8-3-57" />
  719. <stop
  720. style="stop-color:#808080;stop-opacity:1;"
  721. offset="1"
  722. id="stop5262-7-0-9-47" />
  723. </linearGradient>
  724. <linearGradient
  725. id="linearGradient4707-3-0-92">
  726. <stop
  727. id="stop4709-1-9-2"
  728. offset="0"
  729. style="stop-color:#c0c0c0;stop-opacity:1;" />
  730. <stop
  731. style="stop-color:#ffffff;stop-opacity:1;"
  732. offset="0.40000001"
  733. id="stop4711-4-2-98" />
  734. <stop
  735. id="stop4713-1-8-4"
  736. offset="0.60000002"
  737. style="stop-color:#ffffff;stop-opacity:1;" />
  738. <stop
  739. id="stop4715-4-2-6"
  740. offset="1"
  741. style="stop-color:#c0c0c0;stop-opacity:1;" />
  742. </linearGradient>
  743. <linearGradient
  744. id="linearGradient5254-5-2-9-3">
  745. <stop
  746. style="stop-color:#c0c0c0;stop-opacity:1;"
  747. offset="0"
  748. id="stop5256-7-9-9-0" />
  749. <stop
  750. style="stop-color:#808080;stop-opacity:1;"
  751. offset="1"
  752. id="stop5262-7-9-0-3" />
  753. </linearGradient>
  754. <linearGradient
  755. id="linearGradient4707-3-03-4">
  756. <stop
  757. id="stop4709-1-8-1"
  758. offset="0"
  759. style="stop-color:#c0c0c0;stop-opacity:1;" />
  760. <stop
  761. style="stop-color:#ffffff;stop-opacity:1;"
  762. offset="0.40000001"
  763. id="stop4711-4-8-7" />
  764. <stop
  765. id="stop4713-1-2-6"
  766. offset="0.60000002"
  767. style="stop-color:#ffffff;stop-opacity:1;" />
  768. <stop
  769. id="stop4715-4-9-4"
  770. offset="1"
  771. style="stop-color:#c0c0c0;stop-opacity:1;" />
  772. </linearGradient>
  773. <linearGradient
  774. id="linearGradient5254-5-2-3-3">
  775. <stop
  776. style="stop-color:#c0c0c0;stop-opacity:1;"
  777. offset="0"
  778. id="stop5256-7-9-0-4" />
  779. <stop
  780. style="stop-color:#808080;stop-opacity:1;"
  781. offset="1"
  782. id="stop5262-7-9-4-1" />
  783. </linearGradient>
  784. <linearGradient
  785. id="linearGradient4707-64-8-80">
  786. <stop
  787. id="stop4709-39-3-0"
  788. offset="0"
  789. style="stop-color:#c0c0c0;stop-opacity:1;" />
  790. <stop
  791. style="stop-color:#ffffff;stop-opacity:1;"
  792. offset="0.40000001"
  793. id="stop4711-01-0-30" />
  794. <stop
  795. id="stop4713-16-1-605"
  796. offset="0.60000002"
  797. style="stop-color:#ffffff;stop-opacity:1;" />
  798. <stop
  799. id="stop4715-46-5-1"
  800. offset="1"
  801. style="stop-color:#c0c0c0;stop-opacity:1;" />
  802. </linearGradient>
  803. <linearGradient
  804. id="linearGradient5254-5-56-5-6">
  805. <stop
  806. style="stop-color:#c0c0c0;stop-opacity:1;"
  807. offset="0"
  808. id="stop5256-7-8-3-4" />
  809. <stop
  810. style="stop-color:#808080;stop-opacity:1;"
  811. offset="1"
  812. id="stop5262-7-0-9-79" />
  813. </linearGradient>
  814. <linearGradient
  815. id="linearGradient4707-3-0-77">
  816. <stop
  817. id="stop4709-1-9-0"
  818. offset="0"
  819. style="stop-color:#c0c0c0;stop-opacity:1;" />
  820. <stop
  821. style="stop-color:#ffffff;stop-opacity:1;"
  822. offset="0.40000001"
  823. id="stop4711-4-2-3" />
  824. <stop
  825. id="stop4713-1-8-7"
  826. offset="0.60000002"
  827. style="stop-color:#ffffff;stop-opacity:1;" />
  828. <stop
  829. id="stop4715-4-2-16"
  830. offset="1"
  831. style="stop-color:#c0c0c0;stop-opacity:1;" />
  832. </linearGradient>
  833. <linearGradient
  834. id="linearGradient5254-5-2-9-8">
  835. <stop
  836. style="stop-color:#c0c0c0;stop-opacity:1;"
  837. offset="0"
  838. id="stop5256-7-9-9-72" />
  839. <stop
  840. style="stop-color:#808080;stop-opacity:1;"
  841. offset="1"
  842. id="stop5262-7-9-0-9" />
  843. </linearGradient>
  844. <linearGradient
  845. id="linearGradient4707-3-03-5">
  846. <stop
  847. id="stop4709-1-8-12"
  848. offset="0"
  849. style="stop-color:#c0c0c0;stop-opacity:1;" />
  850. <stop
  851. style="stop-color:#ffffff;stop-opacity:1;"
  852. offset="0.40000001"
  853. id="stop4711-4-8-4" />
  854. <stop
  855. id="stop4713-1-2-32"
  856. offset="0.60000002"
  857. style="stop-color:#ffffff;stop-opacity:1;" />
  858. <stop
  859. id="stop4715-4-9-7"
  860. offset="1"
  861. style="stop-color:#c0c0c0;stop-opacity:1;" />
  862. </linearGradient>
  863. <linearGradient
  864. id="linearGradient5254-5-2-3-0">
  865. <stop
  866. style="stop-color:#c0c0c0;stop-opacity:1;"
  867. offset="0"
  868. id="stop5256-7-9-0-0" />
  869. <stop
  870. style="stop-color:#808080;stop-opacity:1;"
  871. offset="1"
  872. id="stop5262-7-9-4-11" />
  873. </linearGradient>
  874. <linearGradient
  875. id="linearGradient4707-64-8-37">
  876. <stop
  877. id="stop4709-39-3-06"
  878. offset="0"
  879. style="stop-color:#c0c0c0;stop-opacity:1;" />
  880. <stop
  881. style="stop-color:#ffffff;stop-opacity:1;"
  882. offset="0.40000001"
  883. id="stop4711-01-0-0" />
  884. <stop
  885. id="stop4713-16-1-8"
  886. offset="0.60000002"
  887. style="stop-color:#ffffff;stop-opacity:1;" />
  888. <stop
  889. id="stop4715-46-5-5"
  890. offset="1"
  891. style="stop-color:#c0c0c0;stop-opacity:1;" />
  892. </linearGradient>
  893. <linearGradient
  894. id="linearGradient5254-5-56-5-43">
  895. <stop
  896. style="stop-color:#c0c0c0;stop-opacity:1;"
  897. offset="0"
  898. id="stop5256-7-8-3-78" />
  899. <stop
  900. style="stop-color:#808080;stop-opacity:1;"
  901. offset="1"
  902. id="stop5262-7-0-9-0" />
  903. </linearGradient>
  904. <linearGradient
  905. id="linearGradient4707-3-0-5">
  906. <stop
  907. id="stop4709-1-9-39"
  908. offset="0"
  909. style="stop-color:#c0c0c0;stop-opacity:1;" />
  910. <stop
  911. style="stop-color:#ffffff;stop-opacity:1;"
  912. offset="0.40000001"
  913. id="stop4711-4-2-0" />
  914. <stop
  915. id="stop4713-1-8-2"
  916. offset="0.60000002"
  917. style="stop-color:#ffffff;stop-opacity:1;" />
  918. <stop
  919. id="stop4715-4-2-2"
  920. offset="1"
  921. style="stop-color:#c0c0c0;stop-opacity:1;" />
  922. </linearGradient>
  923. <linearGradient
  924. id="linearGradient5254-5-2-9-4">
  925. <stop
  926. style="stop-color:#c0c0c0;stop-opacity:1;"
  927. offset="0"
  928. id="stop5256-7-9-9-4" />
  929. <stop
  930. style="stop-color:#808080;stop-opacity:1;"
  931. offset="1"
  932. id="stop5262-7-9-0-6" />
  933. </linearGradient>
  934. <linearGradient
  935. id="linearGradient4707-3-03-7">
  936. <stop
  937. id="stop4709-1-8-0"
  938. offset="0"
  939. style="stop-color:#c0c0c0;stop-opacity:1;" />
  940. <stop
  941. style="stop-color:#ffffff;stop-opacity:1;"
  942. offset="0.40000001"
  943. id="stop4711-4-8-2" />
  944. <stop
  945. id="stop4713-1-2-69"
  946. offset="0.60000002"
  947. style="stop-color:#ffffff;stop-opacity:1;" />
  948. <stop
  949. id="stop4715-4-9-2"
  950. offset="1"
  951. style="stop-color:#c0c0c0;stop-opacity:1;" />
  952. </linearGradient>
  953. <linearGradient
  954. id="linearGradient5254-5-2-3-93">
  955. <stop
  956. style="stop-color:#c0c0c0;stop-opacity:1;"
  957. offset="0"
  958. id="stop5256-7-9-0-51" />
  959. <stop
  960. style="stop-color:#808080;stop-opacity:1;"
  961. offset="1"
  962. id="stop5262-7-9-4-3" />
  963. </linearGradient>
  964. <linearGradient
  965. id="linearGradient4707-64-8-43">
  966. <stop
  967. id="stop4709-39-3-5"
  968. offset="0"
  969. style="stop-color:#c0c0c0;stop-opacity:1;" />
  970. <stop
  971. style="stop-color:#ffffff;stop-opacity:1;"
  972. offset="0.40000001"
  973. id="stop4711-01-0-2" />
  974. <stop
  975. id="stop4713-16-1-0"
  976. offset="0.60000002"
  977. style="stop-color:#ffffff;stop-opacity:1;" />
  978. <stop
  979. id="stop4715-46-5-19"
  980. offset="1"
  981. style="stop-color:#c0c0c0;stop-opacity:1;" />
  982. </linearGradient>
  983. <linearGradient
  984. id="linearGradient5254-5-56-5-74">
  985. <stop
  986. style="stop-color:#c0c0c0;stop-opacity:1;"
  987. offset="0"
  988. id="stop5256-7-8-3-876" />
  989. <stop
  990. style="stop-color:#808080;stop-opacity:1;"
  991. offset="1"
  992. id="stop5262-7-0-9-6" />
  993. </linearGradient>
  994. <linearGradient
  995. id="linearGradient4707-3-0-6">
  996. <stop
  997. id="stop4709-1-9-7"
  998. offset="0"
  999. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1000. <stop
  1001. style="stop-color:#ffffff;stop-opacity:1;"
  1002. offset="0.40000001"
  1003. id="stop4711-4-2-7" />
  1004. <stop
  1005. id="stop4713-1-8-70"
  1006. offset="0.60000002"
  1007. style="stop-color:#ffffff;stop-opacity:1;" />
  1008. <stop
  1009. id="stop4715-4-2-9"
  1010. offset="1"
  1011. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1012. </linearGradient>
  1013. <linearGradient
  1014. id="linearGradient5254-5-2-9-80">
  1015. <stop
  1016. style="stop-color:#c0c0c0;stop-opacity:1;"
  1017. offset="0"
  1018. id="stop5256-7-9-9-2" />
  1019. <stop
  1020. style="stop-color:#808080;stop-opacity:1;"
  1021. offset="1"
  1022. id="stop5262-7-9-0-8" />
  1023. </linearGradient>
  1024. <linearGradient
  1025. id="linearGradient4707-3-03-6">
  1026. <stop
  1027. id="stop4709-1-8-2"
  1028. offset="0"
  1029. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1030. <stop
  1031. style="stop-color:#ffffff;stop-opacity:1;"
  1032. offset="0.40000001"
  1033. id="stop4711-4-8-72" />
  1034. <stop
  1035. id="stop4713-1-2-5"
  1036. offset="0.60000002"
  1037. style="stop-color:#ffffff;stop-opacity:1;" />
  1038. <stop
  1039. id="stop4715-4-9-47"
  1040. offset="1"
  1041. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1042. </linearGradient>
  1043. <linearGradient
  1044. id="linearGradient5254-5-2-3-7">
  1045. <stop
  1046. style="stop-color:#c0c0c0;stop-opacity:1;"
  1047. offset="0"
  1048. id="stop5256-7-9-0-64" />
  1049. <stop
  1050. style="stop-color:#808080;stop-opacity:1;"
  1051. offset="1"
  1052. id="stop5262-7-9-4-16" />
  1053. </linearGradient>
  1054. <linearGradient
  1055. inkscape:collect="always"
  1056. xlink:href="#linearGradient4707-3"
  1057. id="linearGradient4453"
  1058. gradientUnits="userSpaceOnUse"
  1059. gradientTransform="matrix(0.50204329,0,0,0.57202303,723.1965,202.39736)"
  1060. spreadMethod="pad"
  1061. x1="-1057.1428"
  1062. y1="-137.63783"
  1063. x2="-1057.1428"
  1064. y2="108.07645" />
  1065. <linearGradient
  1066. inkscape:collect="always"
  1067. xlink:href="#linearGradient5254-5-2"
  1068. id="linearGradient4455"
  1069. gradientUnits="userSpaceOnUse"
  1070. gradientTransform="matrix(0.50204329,0,0,0.57202303,723.1965,202.39736)"
  1071. x1="-1057.1428"
  1072. y1="-137.63783"
  1073. x2="-1057.1428"
  1074. y2="108.07645" />
  1075. <linearGradient
  1076. id="linearGradient4707-64-8-40">
  1077. <stop
  1078. id="stop4709-39-3-51"
  1079. offset="0"
  1080. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1081. <stop
  1082. style="stop-color:#ffffff;stop-opacity:1;"
  1083. offset="0.40000001"
  1084. id="stop4711-01-0-90" />
  1085. <stop
  1086. id="stop4713-16-1-5"
  1087. offset="0.60000002"
  1088. style="stop-color:#ffffff;stop-opacity:1;" />
  1089. <stop
  1090. id="stop4715-46-5-36"
  1091. offset="1"
  1092. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1093. </linearGradient>
  1094. <linearGradient
  1095. id="linearGradient5254-5-56-5-2">
  1096. <stop
  1097. style="stop-color:#c0c0c0;stop-opacity:1;"
  1098. offset="0"
  1099. id="stop5256-7-8-3-05" />
  1100. <stop
  1101. style="stop-color:#808080;stop-opacity:1;"
  1102. offset="1"
  1103. id="stop5262-7-0-9-00" />
  1104. </linearGradient>
  1105. <linearGradient
  1106. id="linearGradient4707-64-8-5">
  1107. <stop
  1108. id="stop4709-39-3-8"
  1109. offset="0"
  1110. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1111. <stop
  1112. style="stop-color:#ffffff;stop-opacity:1;"
  1113. offset="0.40000001"
  1114. id="stop4711-01-0-72" />
  1115. <stop
  1116. id="stop4713-16-1-09"
  1117. offset="0.60000002"
  1118. style="stop-color:#ffffff;stop-opacity:1;" />
  1119. <stop
  1120. id="stop4715-46-5-4"
  1121. offset="1"
  1122. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1123. </linearGradient>
  1124. <linearGradient
  1125. id="linearGradient5254-5-56-5-23">
  1126. <stop
  1127. style="stop-color:#c0c0c0;stop-opacity:1;"
  1128. offset="0"
  1129. id="stop5256-7-8-3-9" />
  1130. <stop
  1131. style="stop-color:#808080;stop-opacity:1;"
  1132. offset="1"
  1133. id="stop5262-7-0-9-63" />
  1134. </linearGradient>
  1135. <linearGradient
  1136. id="linearGradient4707-64-8-432">
  1137. <stop
  1138. id="stop4709-39-3-20"
  1139. offset="0"
  1140. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1141. <stop
  1142. style="stop-color:#ffffff;stop-opacity:1;"
  1143. offset="0.40000001"
  1144. id="stop4711-01-0-44" />
  1145. <stop
  1146. id="stop4713-16-1-1"
  1147. offset="0.60000002"
  1148. style="stop-color:#ffffff;stop-opacity:1;" />
  1149. <stop
  1150. id="stop4715-46-5-12"
  1151. offset="1"
  1152. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1153. </linearGradient>
  1154. <linearGradient
  1155. id="linearGradient5254-5-56-5-41">
  1156. <stop
  1157. style="stop-color:#c0c0c0;stop-opacity:1;"
  1158. offset="0"
  1159. id="stop5256-7-8-3-09" />
  1160. <stop
  1161. style="stop-color:#808080;stop-opacity:1;"
  1162. offset="1"
  1163. id="stop5262-7-0-9-97" />
  1164. </linearGradient>
  1165. <linearGradient
  1166. id="linearGradient4707-64-8-9">
  1167. <stop
  1168. id="stop4709-39-3-36"
  1169. offset="0"
  1170. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1171. <stop
  1172. style="stop-color:#ffffff;stop-opacity:1;"
  1173. offset="0.40000001"
  1174. id="stop4711-01-0-04" />
  1175. <stop
  1176. id="stop4713-16-1-84"
  1177. offset="0.60000002"
  1178. style="stop-color:#ffffff;stop-opacity:1;" />
  1179. <stop
  1180. id="stop4715-46-5-01"
  1181. offset="1"
  1182. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1183. </linearGradient>
  1184. <linearGradient
  1185. id="linearGradient5254-5-56-5-11">
  1186. <stop
  1187. style="stop-color:#c0c0c0;stop-opacity:1;"
  1188. offset="0"
  1189. id="stop5256-7-8-3-571" />
  1190. <stop
  1191. style="stop-color:#808080;stop-opacity:1;"
  1192. offset="1"
  1193. id="stop5262-7-0-9-90" />
  1194. </linearGradient>
  1195. <linearGradient
  1196. inkscape:collect="always"
  1197. xlink:href="#linearGradient4707-3-5"
  1198. id="linearGradient4453-6"
  1199. gradientUnits="userSpaceOnUse"
  1200. gradientTransform="matrix(0.50204329,0,0,0.57202303,723.1965,202.39736)"
  1201. spreadMethod="pad"
  1202. x1="-1057.1428"
  1203. y1="-137.63783"
  1204. x2="-1057.1428"
  1205. y2="108.07645" />
  1206. <linearGradient
  1207. id="linearGradient4707-3-5">
  1208. <stop
  1209. id="stop4709-1-4"
  1210. offset="0"
  1211. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1212. <stop
  1213. style="stop-color:#ffffff;stop-opacity:1;"
  1214. offset="0.40000001"
  1215. id="stop4711-4-26" />
  1216. <stop
  1217. id="stop4713-1-81"
  1218. offset="0.60000002"
  1219. style="stop-color:#ffffff;stop-opacity:1;" />
  1220. <stop
  1221. id="stop4715-4-1"
  1222. offset="1"
  1223. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1224. </linearGradient>
  1225. <linearGradient
  1226. inkscape:collect="always"
  1227. xlink:href="#linearGradient5254-5-2-0"
  1228. id="linearGradient4455-5"
  1229. gradientUnits="userSpaceOnUse"
  1230. gradientTransform="matrix(0.50204329,0,0,0.57202303,723.1965,202.39736)"
  1231. x1="-1057.1428"
  1232. y1="-137.63783"
  1233. x2="-1057.1428"
  1234. y2="108.07645" />
  1235. <linearGradient
  1236. id="linearGradient5254-5-2-0">
  1237. <stop
  1238. style="stop-color:#c0c0c0;stop-opacity:1;"
  1239. offset="0"
  1240. id="stop5256-7-9-8" />
  1241. <stop
  1242. style="stop-color:#808080;stop-opacity:1;"
  1243. offset="1"
  1244. id="stop5262-7-9-9" />
  1245. </linearGradient>
  1246. <linearGradient
  1247. inkscape:collect="always"
  1248. xlink:href="#linearGradient4707-3-1"
  1249. id="linearGradient4453-2"
  1250. gradientUnits="userSpaceOnUse"
  1251. gradientTransform="matrix(0.50204329,0,0,0.57202303,723.1965,202.39736)"
  1252. spreadMethod="pad"
  1253. x1="-1057.1428"
  1254. y1="-137.63783"
  1255. x2="-1057.1428"
  1256. y2="108.07645" />
  1257. <linearGradient
  1258. id="linearGradient4707-3-1">
  1259. <stop
  1260. id="stop4709-1-1"
  1261. offset="0"
  1262. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1263. <stop
  1264. style="stop-color:#ffffff;stop-opacity:1;"
  1265. offset="0.40000001"
  1266. id="stop4711-4-9" />
  1267. <stop
  1268. id="stop4713-1-5"
  1269. offset="0.60000002"
  1270. style="stop-color:#ffffff;stop-opacity:1;" />
  1271. <stop
  1272. id="stop4715-4-6"
  1273. offset="1"
  1274. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1275. </linearGradient>
  1276. <linearGradient
  1277. inkscape:collect="always"
  1278. xlink:href="#linearGradient5254-5-2-98"
  1279. id="linearGradient4455-55"
  1280. gradientUnits="userSpaceOnUse"
  1281. gradientTransform="matrix(0.50204329,0,0,0.57202303,723.1965,202.39736)"
  1282. x1="-1057.1428"
  1283. y1="-137.63783"
  1284. x2="-1057.1428"
  1285. y2="108.07645" />
  1286. <linearGradient
  1287. id="linearGradient5254-5-2-98">
  1288. <stop
  1289. style="stop-color:#c0c0c0;stop-opacity:1;"
  1290. offset="0"
  1291. id="stop5256-7-9-1" />
  1292. <stop
  1293. style="stop-color:#808080;stop-opacity:1;"
  1294. offset="1"
  1295. id="stop5262-7-9-97" />
  1296. </linearGradient>
  1297. <linearGradient
  1298. id="linearGradient4707-3-8">
  1299. <stop
  1300. id="stop4709-1-95"
  1301. offset="0"
  1302. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1303. <stop
  1304. style="stop-color:#ffffff;stop-opacity:1;"
  1305. offset="0.40000001"
  1306. id="stop4711-4-93" />
  1307. <stop
  1308. id="stop4713-1-1"
  1309. offset="0.60000002"
  1310. style="stop-color:#ffffff;stop-opacity:1;" />
  1311. <stop
  1312. id="stop4715-4-5"
  1313. offset="1"
  1314. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1315. </linearGradient>
  1316. <linearGradient
  1317. id="linearGradient5254-5-2-5">
  1318. <stop
  1319. style="stop-color:#c0c0c0;stop-opacity:1;"
  1320. offset="0"
  1321. id="stop5256-7-9-09" />
  1322. <stop
  1323. style="stop-color:#808080;stop-opacity:1;"
  1324. offset="1"
  1325. id="stop5262-7-9-5" />
  1326. </linearGradient>
  1327. <linearGradient
  1328. inkscape:collect="always"
  1329. xlink:href="#linearGradient4707-38"
  1330. id="linearGradient18600-6"
  1331. gradientUnits="userSpaceOnUse"
  1332. gradientTransform="matrix(2.2320105,0,0,4.1722117,3479.8105,-1056.8115)"
  1333. spreadMethod="pad"
  1334. x1="-1057.1428"
  1335. y1="-137.63783"
  1336. x2="-1057.1428"
  1337. y2="108.07645" />
  1338. <linearGradient
  1339. id="linearGradient4707-38">
  1340. <stop
  1341. id="stop4709-19"
  1342. offset="0"
  1343. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1344. <stop
  1345. style="stop-color:#ffffff;stop-opacity:1;"
  1346. offset="0.40000001"
  1347. id="stop4711-96" />
  1348. <stop
  1349. id="stop4713-3"
  1350. offset="0.60000002"
  1351. style="stop-color:#ffffff;stop-opacity:1;" />
  1352. <stop
  1353. id="stop4715-45"
  1354. offset="1"
  1355. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1356. </linearGradient>
  1357. <linearGradient
  1358. inkscape:collect="always"
  1359. xlink:href="#linearGradient5254-5-8"
  1360. id="linearGradient18602-3"
  1361. gradientUnits="userSpaceOnUse"
  1362. gradientTransform="matrix(2.2320105,0,0,4.1722117,3479.8105,-1056.8115)"
  1363. x1="-1057.1428"
  1364. y1="-137.63783"
  1365. x2="-1057.1428"
  1366. y2="108.07645" />
  1367. <linearGradient
  1368. id="linearGradient5254-5-8">
  1369. <stop
  1370. style="stop-color:#c0c0c0;stop-opacity:1;"
  1371. offset="0"
  1372. id="stop5256-7-1" />
  1373. <stop
  1374. style="stop-color:#808080;stop-opacity:1;"
  1375. offset="1"
  1376. id="stop5262-7-2" />
  1377. </linearGradient>
  1378. <linearGradient
  1379. inkscape:collect="always"
  1380. xlink:href="#linearGradient4707-3-1-0"
  1381. id="linearGradient4453-2-5"
  1382. gradientUnits="userSpaceOnUse"
  1383. gradientTransform="matrix(0.50204329,0,0,0.57202303,723.1965,202.39736)"
  1384. spreadMethod="pad"
  1385. x1="-1057.1428"
  1386. y1="-137.63783"
  1387. x2="-1057.1428"
  1388. y2="108.07645" />
  1389. <linearGradient
  1390. id="linearGradient4707-3-1-0">
  1391. <stop
  1392. id="stop4709-1-1-8"
  1393. offset="0"
  1394. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1395. <stop
  1396. style="stop-color:#ffffff;stop-opacity:1;"
  1397. offset="0.40000001"
  1398. id="stop4711-4-9-5" />
  1399. <stop
  1400. id="stop4713-1-5-1"
  1401. offset="0.60000002"
  1402. style="stop-color:#ffffff;stop-opacity:1;" />
  1403. <stop
  1404. id="stop4715-4-6-9"
  1405. offset="1"
  1406. style="stop-color:#c0c0c0;stop-opacity:1;" />
  1407. </linearGradient>
  1408. <linearGradient
  1409. inkscape:collect="always"
  1410. xlink:href="#linearGradient5254-5-2-98-1"
  1411. id="linearGradient4455-55-8"
  1412. gradientUnits="userSpaceOnUse"
  1413. gradientTransform="matrix(0.50204329,0,0,0.57202303,723.1965,202.39736)"
  1414. x1="-1057.1428"
  1415. y1="-137.63783"
  1416. x2="-1057.1428"
  1417. y2="108.07645" />
  1418. <linearGradient
  1419. id="linearGradient5254-5-2-98-1">
  1420. <stop
  1421. style="stop-color:#c0c0c0;stop-opacity:1;"
  1422. offset="0"
  1423. id="stop5256-7-9-1-5" />
  1424. <stop
  1425. style="stop-color:#808080;stop-opacity:1;"
  1426. offset="1"
  1427. id="stop5262-7-9-97-3" />
  1428. </linearGradient>
  1429. </defs>
  1430. <sodipodi:namedview
  1431. id="base"
  1432. pagecolor="#ffffff"
  1433. bordercolor="#666666"
  1434. borderopacity="1.0"
  1435. inkscape:pageopacity="0.0"
  1436. inkscape:pageshadow="2"
  1437. inkscape:zoom="0.7"
  1438. inkscape:cx="287.20549"
  1439. inkscape:cy="446.17375"
  1440. inkscape:document-units="px"
  1441. inkscape:current-layer="layer1"
  1442. showgrid="false"
  1443. inkscape:window-width="1855"
  1444. inkscape:window-height="1056"
  1445. inkscape:window-x="65"
  1446. inkscape:window-y="24"
  1447. inkscape:window-maximized="1"
  1448. fit-margin-top="0"
  1449. fit-margin-left="0"
  1450. fit-margin-right="0"
  1451. fit-margin-bottom="0" />
  1452. <metadata
  1453. id="metadata7">
  1454. <rdf:RDF>
  1455. <cc:Work
  1456. rdf:about="">
  1457. <dc:format>image/svg+xml</dc:format>
  1458. <dc:type
  1459. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  1460. <dc:title />
  1461. </cc:Work>
  1462. </rdf:RDF>
  1463. </metadata>
  1464. <g
  1465. inkscape:label="Ebene 1"
  1466. inkscape:groupmode="layer"
  1467. id="layer1"
  1468. transform="translate(-78.288739,-263.12628)">
  1469. <rect
  1470. style="fill:#808080;fill-opacity:1"
  1471. y="218.89685"
  1472. x="-458.88049"
  1473. height="929.3905"
  1474. width="32.363327"
  1475. id="rect18516-4-5"
  1476. transform="matrix(0,-1,1,0,0,0)" />
  1477. <g
  1478. transform="matrix(0.54151067,0,0,0.5239281,-85.0984,1454.6623)"
  1479. id="g17514-39">
  1480. <rect
  1481. ry="50.816029"
  1482. y="-1648.9464"
  1483. x="316.73306"
  1484. height="1013.2516"
  1485. width="1613.4248"
  1486. id="rect5215-5-18"
  1487. style="fill:url(#linearGradient18600-6);fill-opacity:1;stroke:url(#linearGradient18602-3);stroke-width:30.51625824;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
  1488. <text
  1489. sodipodi:linespacing="125%"
  1490. id="text5640-00-9"
  1491. y="-707.47742"
  1492. x="358.99652"
  1493. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1494. xml:space="preserve"><tspan
  1495. y="-707.47742"
  1496. x="358.99652"
  1497. id="tspan5642-9-51"
  1498. sodipodi:role="line"
  1499. style="font-size:60.07733154px">boost::mpl::fold&lt;...&gt;</tspan></text>
  1500. </g>
  1501. <rect
  1502. style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  1503. y="218.89685"
  1504. x="-386.88049"
  1505. height="929.3905"
  1506. width="32.363327"
  1507. id="rect18516-4"
  1508. transform="matrix(0,-1,1,0,0,0)" />
  1509. <rect
  1510. style="fill:#c0c0c0;fill-opacity:1"
  1511. y="218.5611"
  1512. x="-423.30908"
  1513. height="928.8866"
  1514. width="33.077614"
  1515. id="rect18516-3"
  1516. transform="matrix(0,-1,1,0,0,0)" />
  1517. <text
  1518. xml:space="preserve"
  1519. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1520. x="204.07263"
  1521. y="343.31122"
  1522. id="text18736"
  1523. sodipodi:linespacing="125%"><tspan
  1524. sodipodi:role="line"
  1525. x="204.07263"
  1526. y="343.31122"
  1527. style="font-size:28px"
  1528. id="tspan3094">boost_::mpl::vector&lt;</tspan><tspan
  1529. sodipodi:role="line"
  1530. x="204.07263"
  1531. y="378.31122"
  1532. style="font-size:28px"
  1533. id="tspan4876"> boost_::mpl::vector&lt;mpl_::char_&lt;'+'&gt;, mpl_::integral_c&lt;int, 2&gt;&gt;,</tspan><tspan
  1534. sodipodi:role="line"
  1535. x="204.07263"
  1536. y="413.31122"
  1537. style="font-size:28px"
  1538. id="tspan4894"> boost_::mpl::vector&lt;mpl_::char_&lt;'+'&gt;, mpl_::integral_c&lt;int, 3&gt;&gt;,</tspan><tspan
  1539. sodipodi:role="line"
  1540. x="204.07263"
  1541. y="448.31122"
  1542. style="font-size:28px"
  1543. id="tspan3361"> boost_::mpl::vector&lt;mpl_::char_&lt;'+'&gt;, mpl_::integral_c&lt;int, 4&gt;&gt;</tspan><tspan
  1544. sodipodi:role="line"
  1545. x="204.07263"
  1546. y="483.31122"
  1547. style="font-size:28px"
  1548. id="tspan3106">&gt;</tspan></text>
  1549. <g
  1550. transform="matrix(0.54151067,0,0,0.5239281,96.33977,595.89314)"
  1551. id="g17514-2">
  1552. <rect
  1553. ry="45.761845"
  1554. y="121.21386"
  1555. x="11.72951"
  1556. height="138.91988"
  1557. width="362.90558"
  1558. id="rect5215-5-1"
  1559. style="fill:url(#linearGradient4453);fill-opacity:1;stroke:url(#linearGradient4455);stroke-width:5.35892057;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
  1560. <text
  1561. sodipodi:linespacing="125%"
  1562. id="text5640-00-3"
  1563. y="206.41183"
  1564. x="26.949203"
  1565. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1566. xml:space="preserve"><tspan
  1567. y="206.41183"
  1568. x="26.949203"
  1569. id="tspan5642-9-8"
  1570. sodipodi:role="line"
  1571. style="font-size:60.07733154px">sum_items</tspan></text>
  1572. </g>
  1573. <text
  1574. xml:space="preserve"
  1575. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1576. x="551.26538"
  1577. y="1176.4041"
  1578. id="text18736-2"
  1579. sodipodi:linespacing="125%"><tspan
  1580. sodipodi:role="line"
  1581. x="551.26538"
  1582. y="1176.4041"
  1583. style="font-size:28px"
  1584. id="tspan4711">mpl_::integral_c&lt;int, 9&gt;</tspan></text>
  1585. <text
  1586. xml:space="preserve"
  1587. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1588. x="97.566032"
  1589. y="784.48755"
  1590. id="text18736-9"
  1591. sodipodi:linespacing="125%"><tspan
  1592. sodipodi:role="line"
  1593. x="97.566032"
  1594. y="784.48755"
  1595. style="font-size:28px"
  1596. id="tspan3106-1">mpl_::integral_c&lt;int, 2&gt;</tspan></text>
  1597. <g
  1598. id="g5949"
  1599. transform="translate(-156.6512,809.64014)">
  1600. <rect
  1601. y="-521.22278"
  1602. x="277.97214"
  1603. height="367.03778"
  1604. width="4.0406103"
  1605. id="rect18761-1"
  1606. style="fill:#000000;fill-opacity:1" />
  1607. <path
  1608. sodipodi:nodetypes="ccccc"
  1609. inkscape:connector-curvature="0"
  1610. id="rect18817-9"
  1611. d="m 264.53567,-178.07391 30.3046,0 -15.4494,26.26396 0,0 z"
  1612. style="fill:#000000;fill-opacity:1" />
  1613. </g>
  1614. <g
  1615. id="g5949-2"
  1616. transform="translate(449.85438,1306.0176)">
  1617. <rect
  1618. y="-251.32761"
  1619. x="277.97214"
  1620. height="97.14254"
  1621. width="4.0406103"
  1622. id="rect18761-1-6"
  1623. style="fill:#000000;fill-opacity:1" />
  1624. <path
  1625. sodipodi:nodetypes="ccccc"
  1626. inkscape:connector-curvature="0"
  1627. id="rect18817-9-0"
  1628. d="m 264.53567,-178.07391 30.3046,0 -15.4494,26.26396 0,0 z"
  1629. style="fill:#000000;fill-opacity:1" />
  1630. </g>
  1631. <rect
  1632. style="fill:#000000;fill-opacity:1"
  1633. id="rect18761-1-6-3"
  1634. width="4.0406103"
  1635. height="20.609152"
  1636. x="199.25508"
  1637. y="732.82397" />
  1638. <g
  1639. transform="matrix(0.54151067,0,0,0.5239281,351.29188,756.69764)"
  1640. id="g17514-2-2">
  1641. <rect
  1642. ry="45.761845"
  1643. y="121.21386"
  1644. x="11.72951"
  1645. height="138.91988"
  1646. width="362.90558"
  1647. id="rect5215-5-1-7"
  1648. style="fill:url(#linearGradient4453-2);fill-opacity:1;stroke:url(#linearGradient4455-55);stroke-width:5.35892057;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
  1649. <text
  1650. sodipodi:linespacing="125%"
  1651. id="text5640-00-3-4"
  1652. y="206.41183"
  1653. x="26.949203"
  1654. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1655. xml:space="preserve"><tspan
  1656. y="206.41183"
  1657. x="26.949203"
  1658. id="tspan5642-9-8-4"
  1659. sodipodi:role="line"
  1660. style="font-size:60.07733154px">sum_items</tspan></text>
  1661. </g>
  1662. <rect
  1663. style="fill:#000000;fill-opacity:1"
  1664. id="rect18761-3-0-0-0-6"
  1665. width="4.0406103"
  1666. height="63.06168"
  1667. x="368.57675"
  1668. y="-218.27382"
  1669. transform="matrix(0,1,-1,0,0,0)" />
  1670. <g
  1671. id="g5949-91"
  1672. transform="translate(162.7856,971.6848)">
  1673. <rect
  1674. y="-219.07993"
  1675. x="277.97214"
  1676. height="64.894905"
  1677. width="4.0406103"
  1678. id="rect18761-1-8"
  1679. style="fill:#000000;fill-opacity:1" />
  1680. <path
  1681. sodipodi:nodetypes="ccccc"
  1682. inkscape:connector-curvature="0"
  1683. id="rect18817-9-9"
  1684. d="m 264.53567,-178.07391 30.3046,0 -15.4494,26.26396 0,0 z"
  1685. style="fill:#000000;fill-opacity:1" />
  1686. </g>
  1687. <rect
  1688. style="fill:#000000;fill-opacity:1"
  1689. id="rect18761-3-0-0-0-6-4"
  1690. width="4.0406103"
  1691. height="242.49608"
  1692. x="753.00537"
  1693. y="-443.1694"
  1694. transform="matrix(0,1,-1,0,0,0)" />
  1695. <text
  1696. xml:space="preserve"
  1697. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1698. x="94.498955"
  1699. y="284.39972"
  1700. id="text18736-2-6"
  1701. sodipodi:linespacing="125%"><tspan
  1702. sodipodi:role="line"
  1703. x="94.498955"
  1704. y="284.39972"
  1705. style="font-size:28px"
  1706. id="tspan4711-0">boost::mpl::int_&lt;0&gt;</tspan></text>
  1707. <g
  1708. id="g5949-3"
  1709. transform="translate(-124.6512,809.64014)">
  1710. <rect
  1711. y="-441.22278"
  1712. x="277.97214"
  1713. height="287.03778"
  1714. width="4.0406103"
  1715. id="rect18761-1-4"
  1716. style="fill:#000000;fill-opacity:1" />
  1717. <path
  1718. sodipodi:nodetypes="ccccc"
  1719. inkscape:connector-curvature="0"
  1720. id="rect18817-9-6"
  1721. d="m 264.53567,-178.07391 30.3046,0 -15.4494,26.26396 0,0 z"
  1722. style="fill:#000000;fill-opacity:1" />
  1723. </g>
  1724. <g
  1725. id="g5949-91-2"
  1726. transform="translate(200.7856,971.6848)">
  1727. <rect
  1728. y="-426.22278"
  1729. x="277.97214"
  1730. height="272.03778"
  1731. width="4.0406103"
  1732. id="rect18761-1-8-8"
  1733. style="fill:#000000;fill-opacity:1" />
  1734. <path
  1735. sodipodi:nodetypes="ccccc"
  1736. inkscape:connector-curvature="0"
  1737. id="rect18817-9-9-2"
  1738. d="m 264.53567,-178.07391 30.3046,0 -15.4494,26.26396 0,0 z"
  1739. style="fill:#000000;fill-opacity:1" />
  1740. </g>
  1741. <rect
  1742. style="fill:#000000;fill-opacity:1"
  1743. id="rect18761-3-0-0-0-6-1"
  1744. width="4.0406103"
  1745. height="30.204536"
  1746. x="406.57675"
  1747. y="-218.27382"
  1748. transform="matrix(0,1,-1,0,0,0)" />
  1749. <rect
  1750. style="fill:#000000;fill-opacity:1"
  1751. id="rect18761-1-6-3-5"
  1752. width="4.0406103"
  1753. height="140.60915"
  1754. x="187.69701"
  1755. y="408.47452" />
  1756. <rect
  1757. style="fill:#000000;fill-opacity:1"
  1758. id="rect18761-3-0-0-0-6-4-6"
  1759. width="4.0406103"
  1760. height="293.21039"
  1761. x="545.3302"
  1762. y="-481.39392"
  1763. transform="matrix(0,1,-1,0,0,0)" />
  1764. <text
  1765. xml:space="preserve"
  1766. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1767. x="359.14914"
  1768. y="944.4704"
  1769. id="text18736-9-4"
  1770. sodipodi:linespacing="125%"><tspan
  1771. sodipodi:role="line"
  1772. x="359.14914"
  1773. y="944.4704"
  1774. style="font-size:28px"
  1775. id="tspan3106-1-3">mpl_::integral_c&lt;int, 5&gt;</tspan></text>
  1776. <rect
  1777. style="fill:#000000;fill-opacity:1"
  1778. id="rect18761-1-6-3-8"
  1779. width="4.0406103"
  1780. height="20.609152"
  1781. x="460.83817"
  1782. y="892.80682" />
  1783. <g
  1784. transform="matrix(0.54151067,0,0,0.5239281,612.87498,916.68046)"
  1785. id="g17514-2-2-6">
  1786. <rect
  1787. ry="45.761845"
  1788. y="121.21386"
  1789. x="11.72951"
  1790. height="138.91988"
  1791. width="362.90558"
  1792. id="rect5215-5-1-7-2"
  1793. style="fill:url(#linearGradient4453-2-5);fill-opacity:1;stroke:url(#linearGradient4455-55-8);stroke-width:5.35892057;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
  1794. <text
  1795. sodipodi:linespacing="125%"
  1796. id="text5640-00-3-4-9"
  1797. y="206.41183"
  1798. x="26.949203"
  1799. style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
  1800. xml:space="preserve"><tspan
  1801. y="206.41183"
  1802. x="26.949203"
  1803. id="tspan5642-9-8-4-2"
  1804. sodipodi:role="line"
  1805. style="font-size:60.07733154px">sum_items</tspan></text>
  1806. </g>
  1807. <g
  1808. id="g5949-91-24"
  1809. transform="translate(424.3687,1131.6676)">
  1810. <rect
  1811. y="-219.07993"
  1812. x="277.97214"
  1813. height="64.894905"
  1814. width="4.0406103"
  1815. id="rect18761-1-8-0"
  1816. style="fill:#000000;fill-opacity:1" />
  1817. <path
  1818. sodipodi:nodetypes="ccccc"
  1819. inkscape:connector-curvature="0"
  1820. id="rect18817-9-9-20"
  1821. d="m 264.53567,-178.07391 30.3046,0 -15.4494,26.26396 0,0 z"
  1822. style="fill:#000000;fill-opacity:1" />
  1823. </g>
  1824. <rect
  1825. style="fill:#000000;fill-opacity:1"
  1826. id="rect18761-3-0-0-0-6-4-4"
  1827. width="4.0406103"
  1828. height="242.49608"
  1829. x="912.98822"
  1830. y="-704.7525"
  1831. transform="matrix(0,1,-1,0,0,0)" />
  1832. <g
  1833. id="g5949-91-2-0"
  1834. transform="translate(462.3687,1131.6676)">
  1835. <rect
  1836. y="-673.36566"
  1837. x="277.97214"
  1838. height="519.18066"
  1839. width="4.0406103"
  1840. id="rect18761-1-8-8-2"
  1841. style="fill:#000000;fill-opacity:1" />
  1842. <path
  1843. sodipodi:nodetypes="ccccc"
  1844. inkscape:connector-curvature="0"
  1845. id="rect18817-9-9-2-5"
  1846. d="m 264.53567,-178.07391 30.3046,0 -15.4494,26.26396 0,0 z"
  1847. style="fill:#000000;fill-opacity:1" />
  1848. </g>
  1849. </g>
  1850. </svg>