misc.xml 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  1. <shapes name="mxgraph.mockup.misc">
  2. <shape name="Critical Icon" h="32" w="32" aspect="1">
  3. <foreground>
  4. <strokecolor color="#000000"/>
  5. <strokecolor color="#000000"/>
  6. <fillcolor color="#ff0000"/>
  7. <ellipse x="0" y="0" w="32" h="32"/>
  8. <fillstroke/>
  9. <strokecolor color="#ffffff"/>
  10. <strokewidth width="3"/>
  11. <fillcolor color="none"/>
  12. <path>
  13. <move x="8" y="24"/>
  14. <line x="24" y="8"/>
  15. </path>
  16. <stroke/>
  17. <path>
  18. <move x="8" y="8"/>
  19. <line x="24" y="24"/>
  20. </path>
  21. <stroke/>
  22. </foreground>
  23. </shape>
  24. <shape name="Cursor Arrow" h="29" w="18.5" aspect="1">
  25. <foreground>
  26. <strokecolor color="#000000"/>
  27. <fillcolor color="#ffffff"/>
  28. <path>
  29. <move x="0" y="26"/>
  30. <line x="0" y="0"/>
  31. <line x="18.5" y="19"/>
  32. <line x="10" y="19"/>
  33. <line x="14.5" y="27.5"/>
  34. <line x="11.5" y="29"/>
  35. <line x="6.5" y="20.5"/>
  36. <close/>
  37. </path>
  38. <fillstroke/>
  39. </foreground>
  40. </shape>
  41. <shape name="Cursor Hand" h="33.25" w="23.89" aspect="1">
  42. <foreground>
  43. <strokecolor color="#000000"/>
  44. <fillcolor color="#ffffff"/>
  45. <linejoin join="round"/>
  46. <path>
  47. <move x="7.39" y="33.25"/>
  48. <arc rx="20" ry="20" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="5.39" y="25.25"/>
  49. <arc rx="40" ry="40" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="0.39" y="17.25"/>
  50. <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="2.39" y="14.25"/>
  51. <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="5.89" y="17.75"/>
  52. <line x="5.89" y="2.25"/>
  53. <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="10.39" y="2.25"/>
  54. <line x="10.39" y="14.75"/>
  55. <line x="10.39" y="10.25"/>
  56. <arc rx="2.5" ry="2.5" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="14.89" y="10.25"/>
  57. <line x="14.89" y="14.75"/>
  58. <line x="14.89" y="11.25"/>
  59. <arc rx="2.5" ry="2.5" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="19.39" y="11.25"/>
  60. <line x="19.39" y="16.25"/>
  61. <line x="19.39" y="11.75"/>
  62. <arc rx="5" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="23.89" y="15.25"/>
  63. <arc rx="50" ry="50" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="21.39" y="29.25"/>
  64. <line x="21.39" y="33.25"/>
  65. <close/>
  66. </path>
  67. <fillstroke/>
  68. </foreground>
  69. </shape>
  70. <shape name="Gear" h="38.8" w="39" aspect="1">
  71. <foreground>
  72. <strokecolor color="#2c457e"/>
  73. <fillcolor color="#f2f2f2"/>
  74. <path>
  75. <move x="21" y="5.1"/>
  76. <line x="25" y="0"/>
  77. <line x="29.6" y="1.8"/>
  78. <line x="28.7" y="7.8"/>
  79. <line x="31.2" y="10.3"/>
  80. <line x="37" y="9.3"/>
  81. <line x="39" y="13.8"/>
  82. <line x="34.3" y="17.55"/>
  83. <line x="34.3" y="21.3"/>
  84. <line x="39" y="24.5"/>
  85. <line x="37.3" y="29.3"/>
  86. <line x="31.5" y="28.3"/>
  87. <line x="28.4" y="31"/>
  88. <line x="29.2" y="36.8"/>
  89. <line x="24.5" y="38.8"/>
  90. <line x="21.2" y="33.6"/>
  91. <line x="17.9" y="33.6"/>
  92. <line x="14.6" y="38.8"/>
  93. <line x="9.7" y="36.8"/>
  94. <line x="10.7" y="31"/>
  95. <line x="8.2" y="28.3"/>
  96. <line x="2.2" y="29.3"/>
  97. <line x="0" y="24.5"/>
  98. <line x="5" y="21.3"/>
  99. <line x="5" y="17.55"/>
  100. <line x="0" y="13.8"/>
  101. <line x="2.2" y="9.3"/>
  102. <line x="8.2" y="10.3"/>
  103. <line x="10.7" y="7.8"/>
  104. <line x="9.7" y="1.8"/>
  105. <line x="14.6" y="0"/>
  106. <line x="17.9" y="5.1"/>
  107. <close/>
  108. </path>
  109. <fillstroke/>
  110. <fillcolor color="#ffffff"/>
  111. <ellipse x="13.45" y="13.3" w="12" h="12"/>
  112. <fillstroke/>
  113. </foreground>
  114. </shape>
  115. <shape name="Help Icon" h="32" w="32" aspect="1">
  116. <foreground>
  117. <strokecolor color="strokeColor2" default="#666666"/>
  118. <fillcolor color="fillColor2" default="#cccccc"/>
  119. <ellipse x="0" y="0" w="32" h="32"/>
  120. <fillstroke/>
  121. <fontcolor color="fontColor2" default="#2c457e"/>
  122. <fontsize size="20"/>
  123. <fontstyle style="1"/>
  124. <text str="?" x="16" y="16" align="center" valign="middle"/>
  125. </foreground>
  126. </shape>
  127. <shape name="Horizontal Splitter" h="24" w="250" aspect="1">
  128. <foreground>
  129. <strokecolor color="none"/>
  130. <fillcolor color="#fafafa"/>
  131. <rect x="0" y="0" w="250" h="24"/>
  132. <fillstroke/>
  133. <strokecolor color="#2c457e"/>
  134. <fillcolor color="none"/>
  135. <path>
  136. <move x="0" y="0"/>
  137. <line x="250" y="0"/>
  138. </path>
  139. <stroke/>
  140. <path>
  141. <move x="0" y="24"/>
  142. <line x="250" y="24"/>
  143. </path>
  144. <stroke/>
  145. <strokecolor color="#000000"/>
  146. <fillcolor color="#2c457e"/>
  147. <roundrect x="95" y="5" w="25" h="14" arcsize="16.715"/>
  148. <fillstroke/>
  149. <roundrect x="130" y="5" w="25" h="14" arcsize="16.715"/>
  150. <fillstroke/>
  151. <strokecolor color="#ffffff"/>
  152. <fillcolor color="#ffffff"/>
  153. <linejoin join="round"/>
  154. <path>
  155. <move x="113" y="15"/>
  156. <line x="102" y="15"/>
  157. <line x="107.5" y="8"/>
  158. <close/>
  159. </path>
  160. <fillstroke/>
  161. <path>
  162. <move x="148" y="8"/>
  163. <line x="137" y="8"/>
  164. <line x="142.5" y="15"/>
  165. <close/>
  166. </path>
  167. <fillstroke/>
  168. </foreground>
  169. </shape>
  170. <shape name="Image Placeholder" h="100" w="100" aspect="1">
  171. <foreground>
  172. <strokecolor color="#000000"/>
  173. <fillcolor color="#ffffff"/>
  174. <rect x="0" y="0" w="100" h="100"/>
  175. <fillstroke/>
  176. <path>
  177. <move x="0" y="100"/>
  178. <line x="100" y="0"/>
  179. </path>
  180. <stroke/>
  181. <path>
  182. <move x="0" y="0"/>
  183. <line x="100" y="100"/>
  184. </path>
  185. <stroke/>
  186. </foreground>
  187. </shape>
  188. <shape name="Information Icon" h="22" w="32" aspect="1">
  189. <foreground>
  190. <strokecolor color="#000000"/>
  191. <fillcolor color="#ffffff"/>
  192. <miterlimit limit="15"/>
  193. <path>
  194. <move x="26" y="15.7"/>
  195. <arc rx="14.34" ry="8.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="0" x="22.79" y="17.059"/>
  196. <arc rx="11.62" ry="13.51" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="29.37" y="21.48"/>
  197. <arc rx="8.78" ry="10.2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="26" y="15.7"/>
  198. <close/>
  199. </path>
  200. <fillstroke/>
  201. <fontsize size="14"/>
  202. <fontcolor color="#2c457e"/>
  203. <fontstyle style="1"/>
  204. <text str="i" x="14" y="10" valign="middle" align="center"/>
  205. </foreground>
  206. </shape>
  207. <shape name="Loading Bar 1" h="24" w="250" aspect="1">
  208. <foreground>
  209. <strokecolor color="#000000"/>
  210. <fillcolor color="#fafafa"/>
  211. <roundrect x="0" y="0" w="250" h="24" arcsize="11.417"/>
  212. <fillstroke/>
  213. <fillcolor color="#2c457e"/>
  214. <rect x="3" y="3" w="10" h="18"/>
  215. <fillstroke/>
  216. <strokecolor color="#000000"/>
  217. <fillcolor color="none"/>
  218. <roundrect x="0" y="0" w="250" h="24" arcsize="11.417"/>
  219. <stroke/>
  220. <strokecolor color="none"/>
  221. <fillcolor color="#2c457e"/>
  222. <rect x="15" y="3" w="10" h="18"/>
  223. <fillstroke/>
  224. <rect x="27" y="3" w="10" h="18"/>
  225. <fillstroke/>
  226. <rect x="39" y="3" w="10" h="18"/>
  227. <fillstroke/>
  228. <rect x="51" y="3" w="10" h="18"/>
  229. <fillstroke/>
  230. <rect x="63" y="3" w="10" h="18"/>
  231. <fillstroke/>
  232. <rect x="75" y="3" w="10" h="18"/>
  233. <fillstroke/>
  234. <rect x="87" y="3" w="10" h="18"/>
  235. <fillstroke/>
  236. <rect x="99" y="3" w="10" h="18"/>
  237. <fillstroke/>
  238. <rect x="111" y="3" w="10" h="18"/>
  239. <fillstroke/>
  240. <rect x="123" y="3" w="10" h="18"/>
  241. <fillstroke/>
  242. <rect x="135" y="3" w="10" h="18"/>
  243. <fillstroke/>
  244. </foreground>
  245. </shape>
  246. <shape name="Loading Bar 2" h="24" w="250" aspect="1">
  247. <foreground>
  248. <strokecolor color="none"/>
  249. <fillcolor color="#fafafa"/>
  250. <roundrect x="0" y="0" w="250" h="24" arcsize="11.417"/>
  251. <fillstroke/>
  252. <fillcolor color="#2c457e"/>
  253. <rect x="3" y="3" w="150" h="18"/>
  254. <fillstroke/>
  255. <strokecolor color="#000000"/>
  256. <fillcolor color="none"/>
  257. <roundrect x="0" y="0" w="250" h="24" arcsize="11.417"/>
  258. <stroke/>
  259. </foreground>
  260. </shape>
  261. <shape name="Loading Circle 1" h="84" w="88" aspect="1">
  262. <foreground>
  263. <strokecolor color="none"/>
  264. <fillcolor color="#888888"/>
  265. <ellipse x="9" y="3" w="24" h="24"/>
  266. <fillstroke/>
  267. <fillcolor color="#999999"/>
  268. <ellipse x="0" y="29" w="22" h="22"/>
  269. <fillstroke/>
  270. <fillcolor color="#aaaaaa"/>
  271. <ellipse x="11" y="55" w="20" h="20"/>
  272. <fillstroke/>
  273. <fillcolor color="#bbbbbb"/>
  274. <ellipse x="37" y="66" w="18" h="18"/>
  275. <fillstroke/>
  276. <fillcolor color="#cccccc"/>
  277. <ellipse x="63" y="57" w="16" h="16"/>
  278. <fillstroke/>
  279. <fillcolor color="#dddddd"/>
  280. <ellipse x="74" y="33" w="14" h="14"/>
  281. <fillstroke/>
  282. <fillcolor color="#eeeeee"/>
  283. <ellipse x="65" y="9" w="12" h="12"/>
  284. <fillstroke/>
  285. <fillcolor color="#f3f3f3"/>
  286. <ellipse x="41" y="0" w="10" h="10"/>
  287. <fillstroke/>
  288. </foreground>
  289. </shape>
  290. <shape name="Loading Circle 2" h="90" w="90" aspect="1">
  291. <foreground>
  292. <strokecolor color="#000000"/>
  293. <strokecolor color="#808080"/>
  294. <strokewidth width="4"/>
  295. <path>
  296. <move x="45" y="31"/>
  297. <line x="45" y="0"/>
  298. </path>
  299. <stroke/>
  300. <strokecolor color="#d1d1d1"/>
  301. <path>
  302. <move x="59" y="45"/>
  303. <line x="90" y="45"/>
  304. </path>
  305. <stroke/>
  306. <strokecolor color="#b3b3b3"/>
  307. <path>
  308. <move x="45" y="59"/>
  309. <line x="45" y="90"/>
  310. </path>
  311. <stroke/>
  312. <strokecolor color="#949494"/>
  313. <path>
  314. <move x="31" y="45"/>
  315. <line x="0" y="45"/>
  316. </path>
  317. <stroke/>
  318. <strokecolor color="#bdbdbd"/>
  319. <path>
  320. <move x="52" y="57"/>
  321. <line x="67.5" y="84"/>
  322. </path>
  323. <stroke/>
  324. <strokecolor color="#c7c7c7"/>
  325. <path>
  326. <move x="57" y="52"/>
  327. <line x="84" y="67.5"/>
  328. </path>
  329. <stroke/>
  330. <strokecolor color="#a8a8a8"/>
  331. <path>
  332. <move x="22.5" y="84"/>
  333. <line x="38" y="57"/>
  334. </path>
  335. <stroke/>
  336. <strokecolor color="#9e9e9e"/>
  337. <path>
  338. <move x="6" y="67.5"/>
  339. <line x="33" y="52"/>
  340. </path>
  341. <stroke/>
  342. <strokecolor color="#8a8a8a"/>
  343. <path>
  344. <move x="6" y="22.5"/>
  345. <line x="33" y="38.3"/>
  346. </path>
  347. <stroke/>
  348. <strokecolor color="#808080"/>
  349. <path>
  350. <move x="22.5" y="6"/>
  351. <line x="38" y="33"/>
  352. </path>
  353. <stroke/>
  354. </foreground>
  355. </shape>
  356. <shape name="Mail" h="60" w="100" aspect="1">
  357. <foreground>
  358. <fillcolor color="#ffffff"/>
  359. <strokecolor color="#2c457e"/>
  360. <strokewidth width="2"/>
  361. <linejoin join="round"/>
  362. <linecap cap="round"/>
  363. <rect x="0" y="0" w="100" h="60"/>
  364. <fillstroke/>
  365. <path>
  366. <move x="0" y="0"/>
  367. <line x="50" y="30"/>
  368. <line x="100" y="0"/>
  369. </path>
  370. <stroke/>
  371. </foreground>
  372. </shape>
  373. <shape name="Map" h="251" w="251" aspect="1">
  374. <foreground>
  375. <strokecolor color="strokeColor2" default="#000000"/>
  376. <fillcolor color="fillColor2" default="#ffffff"/>
  377. <rect x="0" y="0" w="250" h="250"/>
  378. <fillstroke/>
  379. <strokecolor color="strokeColor3" default="#d87146"/>
  380. <fillcolor color="fillColor3" default="#ffca8c"/>
  381. <path>
  382. <move x="15" y="0"/>
  383. <line x="12.834" y="4.167"/>
  384. <line x="6.001" y="0.167"/>
  385. <close/>
  386. </path>
  387. <fillstroke/>
  388. <fillcolor color="fillColor4" default="#d87146"/>
  389. <path>
  390. <move x="5.667" y="18.167"/>
  391. <line x="13.834" y="18.5"/>
  392. <line x="13.334" y="24.667"/>
  393. <line x="21.501" y="26.5"/>
  394. <line x="18.834" y="46.5"/>
  395. <line x="9.834" y="44.5"/>
  396. <line x="9.167" y="50.334"/>
  397. <line x="1.334" y="49.334"/>
  398. <line x="3.334" y="40.834"/>
  399. <line x="0.334" y="40"/>
  400. <line x="0.334" y="29"/>
  401. <line x="5.334" y="25"/>
  402. <close/>
  403. </path>
  404. <fillstroke/>
  405. <fillcolor color="fillColor3" default="#ffca8c"/>
  406. <path>
  407. <move x="21.834" y="12"/>
  408. <line x="19.167" y="9.167"/>
  409. <line x="23.334" y="0.5"/>
  410. <line x="39.334" y="0"/>
  411. <close/>
  412. </path>
  413. <fillstroke/>
  414. <path>
  415. <move x="25.834" y="17.5"/>
  416. <line x="42.001" y="7"/>
  417. <line x="46.167" y="14.834"/>
  418. <line x="28.501" y="25.5"/>
  419. <close/>
  420. </path>
  421. <fillstroke/>
  422. <path>
  423. <move x="54.667" y="18"/>
  424. <line x="60.501" y="27.667"/>
  425. <line x="28.167" y="44.667"/>
  426. <line x="29.834" y="40.5"/>
  427. <line x="30.167" y="32.834"/>
  428. <close/>
  429. </path>
  430. <fillstroke/>
  431. <path>
  432. <move x="47.667" y="3"/>
  433. <line x="53.334" y="12"/>
  434. <line x="57.834" y="9.167"/>
  435. <line x="66.667" y="24.667"/>
  436. <line x="82.834" y="17"/>
  437. <line x="75.001" y="0.334"/>
  438. <line x="51.834" y="0.167"/>
  439. <close/>
  440. </path>
  441. <fillstroke/>
  442. <path>
  443. <move x="89.667" y="14.667"/>
  444. <line x="82.834" y="0.167"/>
  445. <line x="101.667" y="0.167"/>
  446. <line x="114.001" y="7.167"/>
  447. <line x="101.167" y="19.167"/>
  448. <close/>
  449. </path>
  450. <fillstroke/>
  451. <path>
  452. <move x="95.834" y="24.5"/>
  453. <line x="93.667" y="24"/>
  454. <line x="89.501" y="14.167"/>
  455. <line x="97.834" y="11.5"/>
  456. <line x="102.501" y="18.167"/>
  457. <close/>
  458. </path>
  459. <fillstroke/>
  460. <path>
  461. <move x="121.167" y="2.834"/>
  462. <line x="118.334" y="0.334"/>
  463. <line x="123.334" y="0.167"/>
  464. <close/>
  465. </path>
  466. <fillstroke/>
  467. <path>
  468. <move x="128.001" y="9.334"/>
  469. <line x="124.667" y="6.334"/>
  470. <line x="131.001" y="0.167"/>
  471. <line x="138.834" y="0.167"/>
  472. <close/>
  473. </path>
  474. <fillstroke/>
  475. <path>
  476. <move x="157.834" y="5.167"/>
  477. <line x="152.501" y="0.167"/>
  478. <line x="162.501" y="0.334"/>
  479. <close/>
  480. </path>
  481. <fillstroke/>
  482. <path>
  483. <move x="164.167" y="9.5"/>
  484. <line x="172.501" y="1.334"/>
  485. <line x="175.167" y="2.334"/>
  486. <line x="171.834" y="12.667"/>
  487. <close/>
  488. </path>
  489. <fillstroke/>
  490. <path>
  491. <move x="146.667" y="27.167"/>
  492. <line x="161.167" y="13.667"/>
  493. <line x="171.167" y="18.834"/>
  494. <line x="163.167" y="41.167"/>
  495. <close/>
  496. </path>
  497. <fillstroke/>
  498. <fillcolor color="fillColor4" default="#d87146"/>
  499. <path>
  500. <move x="153.334" y="21"/>
  501. <line x="161.167" y="14"/>
  502. <line x="171.167" y="18.834"/>
  503. <line x="167.501" y="28.5"/>
  504. <close/>
  505. </path>
  506. <fillstroke/>
  507. <fillcolor color="fillColor3" default="#ffca8c"/>
  508. <path>
  509. <move x="177.501" y="16.5"/>
  510. <line x="180.501" y="7.167"/>
  511. <line x="191.501" y="13.5"/>
  512. <line x="181.501" y="23.667"/>
  513. <close/>
  514. </path>
  515. <fillstroke/>
  516. <path>
  517. <move x="200.167" y="6"/>
  518. <line x="192.834" y="0"/>
  519. <line x="206.001" y="0"/>
  520. <close/>
  521. </path>
  522. <fillstroke/>
  523. <path>
  524. <move x="207.001" y="6.334"/>
  525. <line x="212.167" y="1.667"/>
  526. <line x="226.001" y="10.834"/>
  527. <line x="220.167" y="15.834"/>
  528. <close/>
  529. </path>
  530. <fillstroke/>
  531. <path>
  532. <move x="224.001" y="23.167"/>
  533. <line x="232.167" y="15.667"/>
  534. <line x="250.001" y="27.834"/>
  535. <line x="249.834" y="41.334"/>
  536. <close/>
  537. </path>
  538. <fillstroke/>
  539. <path>
  540. <move x="231.834" y="6.167"/>
  541. <line x="222.667" y="0.334"/>
  542. <line x="233.667" y="0.167"/>
  543. <line x="235.667" y="2"/>
  544. <close/>
  545. </path>
  546. <fillstroke/>
  547. <path>
  548. <move x="243.834" y="5.5"/>
  549. <line x="248.834" y="0.334"/>
  550. <line x="250.334" y="0.5"/>
  551. <line x="250.001" y="10.5"/>
  552. <close/>
  553. </path>
  554. <fillstroke/>
  555. <path>
  556. <move x="184.334" y="28.834"/>
  557. <line x="202.667" y="10"/>
  558. <line x="216.334" y="19.334"/>
  559. <line x="189.834" y="41"/>
  560. <close/>
  561. </path>
  562. <fillstroke/>
  563. <path>
  564. <move x="176.001" y="30.167"/>
  565. <line x="185.667" y="46.167"/>
  566. <line x="176.501" y="53.334"/>
  567. <line x="168.834" y="45.834"/>
  568. <close/>
  569. </path>
  570. <fillstroke/>
  571. <path>
  572. <move x="204.501" y="38.667"/>
  573. <line x="217.334" y="27.834"/>
  574. <line x="227.501" y="35"/>
  575. <line x="221.001" y="49"/>
  576. <close/>
  577. </path>
  578. <fillstroke/>
  579. <path>
  580. <move x="225.667" y="52.334"/>
  581. <line x="232.334" y="38"/>
  582. <line x="247.501" y="48.167"/>
  583. <line x="232.501" y="57.334"/>
  584. <close/>
  585. </path>
  586. <fillstroke/>
  587. <path>
  588. <move x="238.501" y="60.667"/>
  589. <line x="250.167" y="53.334"/>
  590. <line x="249.834" y="68.167"/>
  591. <close/>
  592. </path>
  593. <fillstroke/>
  594. <path>
  595. <move x="225.501" y="72.5"/>
  596. <line x="232.501" y="66.167"/>
  597. <line x="248.334" y="76.334"/>
  598. <line x="239.834" y="84.667"/>
  599. <close/>
  600. </path>
  601. <fillstroke/>
  602. <path>
  603. <move x="199.001" y="60"/>
  604. <line x="203.167" y="47.5"/>
  605. <line x="227.501" y="62.5"/>
  606. <line x="213.001" y="71.5"/>
  607. <close/>
  608. </path>
  609. <fillstroke/>
  610. <path>
  611. <move x="212.501" y="87.5"/>
  612. <line x="215.001" y="80.834"/>
  613. <line x="213.001" y="77.167"/>
  614. <line x="220.834" y="75.834"/>
  615. <line x="235.834" y="88.834"/>
  616. <line x="229.001" y="98.334"/>
  617. <close/>
  618. </path>
  619. <fillstroke/>
  620. <path>
  621. <move x="189.667" y="52.667"/>
  622. <line x="198.167" y="43.5"/>
  623. <line x="199.834" y="44.5"/>
  624. <line x="199.334" y="47.334"/>
  625. <line x="194.667" y="57"/>
  626. <close/>
  627. </path>
  628. <fillstroke/>
  629. <path>
  630. <move x="165.334" y="69.5"/>
  631. <line x="186.167" y="55.834"/>
  632. <line x="191.001" y="60.167"/>
  633. <line x="177.667" y="72.334"/>
  634. <line x="181.667" y="77.167"/>
  635. <line x="176.334" y="81.667"/>
  636. <close/>
  637. </path>
  638. <fillstroke/>
  639. <fillcolor color="fillColor4" default="#d87146"/>
  640. <path>
  641. <move x="183.334" y="73.334"/>
  642. <line x="191.834" y="64"/>
  643. <line x="199.001" y="69.834"/>
  644. <line x="190.501" y="79.5"/>
  645. <close/>
  646. </path>
  647. <fillstroke/>
  648. <fillcolor color="fillColor3" default="#ffca8c"/>
  649. <path>
  650. <move x="199.501" y="78.334"/>
  651. <line x="203.334" y="73.667"/>
  652. <line x="208.334" y="78.334"/>
  653. <line x="207.501" y="84.5"/>
  654. <close/>
  655. </path>
  656. <fillstroke/>
  657. <path>
  658. <move x="196.834" y="98.5"/>
  659. <line x="181.001" y="85.834"/>
  660. <line x="185.501" y="82.334"/>
  661. <line x="190.834" y="86.834"/>
  662. <line x="195.001" y="83.167"/>
  663. <line x="205.501" y="89.667"/>
  664. <close/>
  665. </path>
  666. <fillstroke/>
  667. <path>
  668. <move x="201.834" y="101"/>
  669. <line x="210.001" y="93"/>
  670. <line x="225.167" y="104.5"/>
  671. <line x="223.334" y="108.334"/>
  672. <line x="217.834" y="110"/>
  673. <close/>
  674. </path>
  675. <fillstroke/>
  676. <path>
  677. <move x="247.667" y="88.667"/>
  678. <line x="241.167" y="98.334"/>
  679. <line x="250.167" y="103"/>
  680. <line x="250.334" y="90"/>
  681. <close/>
  682. </path>
  683. <fillstroke/>
  684. <path>
  685. <move x="240.501" y="118.5"/>
  686. <line x="243.667" y="114"/>
  687. <line x="250.167" y="116.167"/>
  688. <line x="249.667" y="123.167"/>
  689. <close/>
  690. </path>
  691. <fillstroke/>
  692. <path>
  693. <move x="233.667" y="134.834"/>
  694. <line x="237.167" y="124.667"/>
  695. <line x="247.334" y="128.334"/>
  696. <line x="241.667" y="136.667"/>
  697. <close/>
  698. </path>
  699. <fillstroke/>
  700. <path>
  701. <move x="222.001" y="168.667"/>
  702. <line x="231.334" y="142.834"/>
  703. <line x="238.834" y="142.834"/>
  704. <line x="249.334" y="147.167"/>
  705. <line x="237.167" y="177"/>
  706. <close/>
  707. </path>
  708. <fillstroke/>
  709. <path>
  710. <move x="242.501" y="180"/>
  711. <line x="246.001" y="171.167"/>
  712. <line x="250.001" y="172.334"/>
  713. <line x="250.001" y="184"/>
  714. <close/>
  715. </path>
  716. <fillstroke/>
  717. <path>
  718. <move x="248.334" y="166.167"/>
  719. <line x="250.167" y="161.334"/>
  720. <line x="250.167" y="166.167"/>
  721. <close/>
  722. </path>
  723. <fillstroke/>
  724. <path>
  725. <move x="214.001" y="193.167"/>
  726. <line x="220.334" y="176.667"/>
  727. <line x="250.001" y="192.167"/>
  728. <line x="249.834" y="211.5"/>
  729. <close/>
  730. </path>
  731. <fillstroke/>
  732. <path>
  733. <move x="206.667" y="215.167"/>
  734. <line x="212.167" y="200.5"/>
  735. <line x="250.167" y="220"/>
  736. <line x="250.001" y="235.334"/>
  737. <close/>
  738. </path>
  739. <fillstroke/>
  740. <path>
  741. <move x="202.501" y="229.834"/>
  742. <line x="205.001" y="223.167"/>
  743. <line x="250.334" y="243.167"/>
  744. <line x="250.334" y="246"/>
  745. <line x="247.001" y="247.5"/>
  746. <close/>
  747. </path>
  748. <fillstroke/>
  749. <path>
  750. <move x="200.667" y="236.167"/>
  751. <line x="231.667" y="248.334"/>
  752. <line x="230.834" y="249.834"/>
  753. <line x="207.167" y="249.834"/>
  754. <line x="196.834" y="246.5"/>
  755. <close/>
  756. </path>
  757. <fillstroke/>
  758. <fillcolor color="fillColor4" default="#d87146"/>
  759. <path>
  760. <move x="179.334" y="247.834"/>
  761. <line x="178.001" y="250.5"/>
  762. <line x="153.834" y="249.834"/>
  763. <line x="157.501" y="239.5"/>
  764. <close/>
  765. </path>
  766. <fillstroke/>
  767. <fillcolor color="fillColor3" default="#ffca8c"/>
  768. <path>
  769. <move x="185.501" y="242"/>
  770. <line x="164.001" y="233"/>
  771. <line x="168.667" y="223.334"/>
  772. <line x="189.334" y="232.334"/>
  773. <close/>
  774. </path>
  775. <fillstroke/>
  776. <path>
  777. <move x="191.167" y="225.5"/>
  778. <line x="173.667" y="217.167"/>
  779. <line x="177.501" y="210.167"/>
  780. <line x="193.834" y="217.334"/>
  781. <close/>
  782. </path>
  783. <fillstroke/>
  784. <path>
  785. <move x="190.834" y="188.5"/>
  786. <line x="202.001" y="195.167"/>
  787. <line x="195.667" y="211.834"/>
  788. <line x="180.834" y="205.5"/>
  789. <close/>
  790. </path>
  791. <fillstroke/>
  792. <path>
  793. <move x="197.834" y="185"/>
  794. <line x="205.667" y="168.667"/>
  795. <line x="210.501" y="171.834"/>
  796. <line x="204.167" y="188.667"/>
  797. <close/>
  798. </path>
  799. <fillstroke/>
  800. <path>
  801. <move x="213.167" y="148.334"/>
  802. <line x="217.167" y="150.167"/>
  803. <line x="212.334" y="164.5"/>
  804. <line x="207.667" y="162.167"/>
  805. <close/>
  806. </path>
  807. <fillstroke/>
  808. <path>
  809. <move x="206.834" y="127.167"/>
  810. <line x="212.001" y="116.5"/>
  811. <line x="226.334" y="122.334"/>
  812. <line x="223.001" y="132.5"/>
  813. <close/>
  814. </path>
  815. <fillstroke/>
  816. <path>
  817. <move x="202.501" y="136.834"/>
  818. <line x="204.834" y="132"/>
  819. <line x="220.667" y="138.667"/>
  820. <line x="218.334" y="144.667"/>
  821. <close/>
  822. </path>
  823. <fillstroke/>
  824. <path>
  825. <move x="200.001" y="142"/>
  826. <line x="204.001" y="144"/>
  827. <line x="198.667" y="156.334"/>
  828. <line x="194.001" y="154.167"/>
  829. <close/>
  830. </path>
  831. <fillstroke/>
  832. <path>
  833. <move x="198.334" y="133.5"/>
  834. <line x="189.167" y="151.334"/>
  835. <line x="183.334" y="148.167"/>
  836. <line x="192.501" y="131"/>
  837. <close/>
  838. </path>
  839. <fillstroke/>
  840. <path>
  841. <move x="206.667" y="115.167"/>
  842. <line x="200.167" y="128.334"/>
  843. <line x="194.834" y="126"/>
  844. <line x="200.667" y="113"/>
  845. <close/>
  846. </path>
  847. <fillstroke/>
  848. <path>
  849. <move x="195.001" y="110.5"/>
  850. <line x="177.334" y="145.334"/>
  851. <line x="168.167" y="140.334"/>
  852. <line x="190.334" y="108.167"/>
  853. <close/>
  854. </path>
  855. <fillstroke/>
  856. <path>
  857. <move x="162.001" y="136.834"/>
  858. <line x="157.167" y="134.167"/>
  859. <line x="179.667" y="104.5"/>
  860. <line x="183.501" y="105.834"/>
  861. <close/>
  862. </path>
  863. <fillstroke/>
  864. <path>
  865. <move x="173.334" y="99"/>
  866. <line x="153.167" y="127.667"/>
  867. <line x="147.167" y="116.834"/>
  868. <line x="167.834" y="94.334"/>
  869. <close/>
  870. </path>
  871. <fillstroke/>
  872. <path>
  873. <move x="162.334" y="89.834"/>
  874. <line x="142.001" y="112.167"/>
  875. <line x="137.001" y="114.334"/>
  876. <line x="124.501" y="117.167"/>
  877. <line x="122.667" y="112.834"/>
  878. <line x="128.834" y="109.5"/>
  879. <line x="128.334" y="106.167"/>
  880. <line x="155.667" y="82.834"/>
  881. <close/>
  882. </path>
  883. <fillstroke/>
  884. <fillcolor color="fillColor4" default="#d87146"/>
  885. <path>
  886. <move x="134.501" y="115.167"/>
  887. <line x="124.667" y="117.334"/>
  888. <line x="122.667" y="112.667"/>
  889. <line x="129.001" y="109.5"/>
  890. <line x="128.667" y="106.167"/>
  891. <line x="130.001" y="104.834"/>
  892. <close/>
  893. </path>
  894. <fillstroke/>
  895. <path>
  896. <move x="126.834" y="123.834"/>
  897. <line x="140.834" y="120.667"/>
  898. <line x="147.667" y="134.834"/>
  899. <line x="133.501" y="140.834"/>
  900. <close/>
  901. </path>
  902. <fillstroke/>
  903. <fillcolor color="fillColor3" default="#ffca8c"/>
  904. <path>
  905. <move x="136.834" y="147.667"/>
  906. <line x="152.501" y="140.167"/>
  907. <line x="157.667" y="143.5"/>
  908. <line x="142.834" y="163.667"/>
  909. <close/>
  910. </path>
  911. <fillstroke/>
  912. <path>
  913. <move x="145.334" y="172.834"/>
  914. <line x="164.001" y="146.334"/>
  915. <line x="174.167" y="151.5"/>
  916. <line x="151.667" y="189"/>
  917. <close/>
  918. </path>
  919. <fillstroke/>
  920. <path>
  921. <move x="155.501" y="194.834"/>
  922. <line x="164.334" y="182"/>
  923. <line x="180.834" y="190"/>
  924. <line x="173.001" y="201.5"/>
  925. <close/>
  926. </path>
  927. <fillstroke/>
  928. <path>
  929. <move x="167.667" y="177.334"/>
  930. <line x="180.167" y="156.334"/>
  931. <line x="195.167" y="163.334"/>
  932. <line x="184.501" y="184.834"/>
  933. <close/>
  934. </path>
  935. <fillstroke/>
  936. <path>
  937. <move x="123.667" y="15.334"/>
  938. <line x="138.167" y="28.834"/>
  939. <line x="133.834" y="32.667"/>
  940. <line x="122.501" y="23"/>
  941. <close/>
  942. </path>
  943. <fillstroke/>
  944. <path>
  945. <move x="142.834" y="34"/>
  946. <line x="169.667" y="58.5"/>
  947. <line x="163.167" y="62.167"/>
  948. <line x="139.334" y="38.334"/>
  949. <close/>
  950. </path>
  951. <fillstroke/>
  952. <path>
  953. <move x="118.334" y="12.667"/>
  954. <line x="116.667" y="25"/>
  955. <line x="128.834" y="37.667"/>
  956. <line x="121.334" y="44"/>
  957. <line x="106.334" y="23.834"/>
  958. <close/>
  959. </path>
  960. <fillstroke/>
  961. <path>
  962. <move x="134.167" y="42.834"/>
  963. <line x="159.667" y="67.5"/>
  964. <line x="146.667" y="78.834"/>
  965. <line x="126.167" y="51.334"/>
  966. <close/>
  967. </path>
  968. <fillstroke/>
  969. <path>
  970. <move x="121.334" y="56.334"/>
  971. <line x="141.501" y="83.667"/>
  972. <line x="126.834" y="96.334"/>
  973. <line x="115.667" y="92.834"/>
  974. <line x="107.501" y="71.834"/>
  975. <close/>
  976. </path>
  977. <fillstroke/>
  978. <fillcolor color="fillColor4" default="#d87146"/>
  979. <path>
  980. <move x="122.501" y="99.667"/>
  981. <line x="116.834" y="98"/>
  982. <line x="115.501" y="92.167"/>
  983. <line x="121.834" y="88.334"/>
  984. <line x="127.334" y="96.167"/>
  985. <close/>
  986. </path>
  987. <fillstroke/>
  988. <fillcolor color="fillColor3" default="#ffca8c"/>
  989. <path>
  990. <move x="94.167" y="56.667"/>
  991. <line x="107.001" y="89.167"/>
  992. <line x="100.834" y="94.834"/>
  993. <line x="76.334" y="89.5"/>
  994. <line x="78.001" y="76"/>
  995. <line x="84.334" y="71.834"/>
  996. <line x="80.501" y="63.834"/>
  997. <close/>
  998. </path>
  999. <fillstroke/>
  1000. <fillcolor color="fillColor4" default="#d87146"/>
  1001. <path>
  1002. <move x="106.667" y="87.5"/>
  1003. <line x="108.501" y="92"/>
  1004. <line x="108.334" y="97.5"/>
  1005. <line x="100.667" y="94.834"/>
  1006. <line x="99.334" y="94.667"/>
  1007. <line x="101.167" y="87.167"/>
  1008. <close/>
  1009. </path>
  1010. <fillstroke/>
  1011. <fillcolor color="fillColor3" default="#ffca8c"/>
  1012. <path>
  1013. <move x="105.334" y="63.167"/>
  1014. <line x="101.167" y="52.334"/>
  1015. <line x="113.001" y="45.834"/>
  1016. <line x="116.001" y="50.167"/>
  1017. <close/>
  1018. </path>
  1019. <fillstroke/>
  1020. <path>
  1021. <move x="99.667" y="45.834"/>
  1022. <line x="95.001" y="35.334"/>
  1023. <line x="101.667" y="30.167"/>
  1024. <line x="108.667" y="40"/>
  1025. <close/>
  1026. </path>
  1027. <fillstroke/>
  1028. <path>
  1029. <move x="93.501" y="49.334"/>
  1030. <line x="77.167" y="58.5"/>
  1031. <line x="73.001" y="47.334"/>
  1032. <line x="88.667" y="39.334"/>
  1033. <close/>
  1034. </path>
  1035. <fillstroke/>
  1036. <path>
  1037. <move x="87.667" y="33"/>
  1038. <line x="71.001" y="42"/>
  1039. <line x="66.501" y="33.167"/>
  1040. <line x="84.001" y="24.167"/>
  1041. <close/>
  1042. </path>
  1043. <fillstroke/>
  1044. <path>
  1045. <move x="49.167" y="53"/>
  1046. <line x="44.001" y="45"/>
  1047. <line x="60.667" y="36.834"/>
  1048. <line x="65.167" y="44"/>
  1049. <close/>
  1050. </path>
  1051. <fillstroke/>
  1052. <fillcolor color="fillColor4" default="#d87146"/>
  1053. <path>
  1054. <move x="62.334" y="52.167"/>
  1055. <line x="67.001" y="60.334"/>
  1056. <line x="58.167" y="65.167"/>
  1057. <line x="53.334" y="61.667"/>
  1058. <line x="53.834" y="56.334"/>
  1059. <close/>
  1060. </path>
  1061. <fillstroke/>
  1062. <fillcolor color="fillColor3" default="#ffca8c"/>
  1063. <path>
  1064. <move x="40.001" y="47.667"/>
  1065. <line x="53.001" y="68.834"/>
  1066. <line x="44.667" y="73.834"/>
  1067. <line x="30.167" y="52.667"/>
  1068. <close/>
  1069. </path>
  1070. <fillstroke/>
  1071. <fillcolor color="fillColor4" default="#d87146"/>
  1072. <path>
  1073. <move x="47.667" y="77.834"/>
  1074. <line x="56.167" y="72.167"/>
  1075. <line x="72.501" y="75.667"/>
  1076. <line x="69.167" y="88.834"/>
  1077. <line x="56.667" y="91"/>
  1078. <close/>
  1079. </path>
  1080. <fillstroke/>
  1081. <fillcolor color="fillColor3" default="#ffca8c"/>
  1082. <path>
  1083. <move x="119.667" y="186.167"/>
  1084. <line x="138.667" y="173.667"/>
  1085. <line x="156.667" y="223.5"/>
  1086. <line x="153.167" y="227.334"/>
  1087. <close/>
  1088. </path>
  1089. <fillstroke/>
  1090. <path>
  1091. <move x="111.834" y="182.834"/>
  1092. <line x="141.167" y="216.667"/>
  1093. <line x="131.834" y="215.5"/>
  1094. <line x="106.834" y="186.834"/>
  1095. <close/>
  1096. </path>
  1097. <fillstroke/>
  1098. <path>
  1099. <move x="142.834" y="225"/>
  1100. <line x="152.001" y="232.167"/>
  1101. <line x="144.667" y="249.834"/>
  1102. <line x="105.834" y="250"/>
  1103. <close/>
  1104. </path>
  1105. <fillstroke/>
  1106. <fillcolor color="fillColor5" default="#b2d8ad"/>
  1107. <path>
  1108. <move x="16.667" y="218"/>
  1109. <line x="36.834" y="240.167"/>
  1110. <line x="25.334" y="250.334"/>
  1111. <line x="7.334" y="250"/>
  1112. <line x="8.167" y="225"/>
  1113. <close/>
  1114. </path>
  1115. <fillstroke/>
  1116. <fillcolor color="fillColor3" default="#ffca8c"/>
  1117. <path>
  1118. <move x="0" y="232.5"/>
  1119. <line x="9.667" y="223.667"/>
  1120. <line x="23.001" y="238.167"/>
  1121. <line x="9.334" y="250.167"/>
  1122. <line x="0.167" y="250.5"/>
  1123. <close/>
  1124. </path>
  1125. <fillstroke/>
  1126. <fillcolor color="fillColor5" default="#b2d8ad"/>
  1127. <path>
  1128. <move x="13.501" y="214.667"/>
  1129. <line x="0.334" y="225.167"/>
  1130. <line x="0.334" y="210.5"/>
  1131. <line x="6.167" y="206.667"/>
  1132. <close/>
  1133. </path>
  1134. <fillstroke/>
  1135. <path>
  1136. <move x="26.667" y="203.667"/>
  1137. <line x="22.167" y="198"/>
  1138. <line x="42.501" y="181.167"/>
  1139. <line x="42.167" y="176.5"/>
  1140. <line x="53.667" y="167.5"/>
  1141. <line x="59.001" y="168.834"/>
  1142. <line x="61.667" y="173"/>
  1143. <close/>
  1144. </path>
  1145. <fillstroke/>
  1146. <fillcolor color="fillColor4" default="#d87146"/>
  1147. <path>
  1148. <move x="25.667" y="174.334"/>
  1149. <line x="36.001" y="186.5"/>
  1150. <line x="30.167" y="190.834"/>
  1151. <line x="19.334" y="179.167"/>
  1152. <close/>
  1153. </path>
  1154. <fillstroke/>
  1155. <fillcolor color="fillColor5" default="#b2d8ad"/>
  1156. <path>
  1157. <move x="33.167" y="168.667"/>
  1158. <line x="12.167" y="185.5"/>
  1159. <line x="0.167" y="170"/>
  1160. <line x="19.334" y="153.167"/>
  1161. <close/>
  1162. </path>
  1163. <fillstroke/>
  1164. <path>
  1165. <move x="62.667" y="160"/>
  1166. <line x="68.667" y="155.334"/>
  1167. <line x="75.167" y="162.5"/>
  1168. <line x="66.001" y="169.5"/>
  1169. <line x="62.501" y="166"/>
  1170. <close/>
  1171. </path>
  1172. <fillstroke/>
  1173. <path>
  1174. <move x="25.001" y="56"/>
  1175. <line x="50.834" y="95.167"/>
  1176. <line x="46.334" y="99.167"/>
  1177. <line x="53.334" y="108.5"/>
  1178. <line x="50.834" y="110.5"/>
  1179. <line x="30.334" y="81.834"/>
  1180. <line x="33.667" y="79.667"/>
  1181. <line x="24.501" y="65.834"/>
  1182. <line x="15.667" y="71.5"/>
  1183. <line x="21.834" y="82.834"/>
  1184. <line x="18.167" y="85"/>
  1185. <line x="12.001" y="77.334"/>
  1186. <line x="13.501" y="68"/>
  1187. <line x="22.167" y="62.667"/>
  1188. <close/>
  1189. </path>
  1190. <fillstroke/>
  1191. <path>
  1192. <move x="22.334" y="69.834"/>
  1193. <line x="28.167" y="77.5"/>
  1194. <line x="24.667" y="80.167"/>
  1195. <line x="19.667" y="71.667"/>
  1196. <close/>
  1197. </path>
  1198. <fillstroke/>
  1199. <path>
  1200. <move x="17.667" y="91.334"/>
  1201. <line x="27.001" y="84.667"/>
  1202. <line x="41.834" y="104.667"/>
  1203. <line x="37.667" y="107.5"/>
  1204. <line x="25.167" y="92.834"/>
  1205. <line x="20.834" y="95"/>
  1206. <close/>
  1207. </path>
  1208. <fillstroke/>
  1209. <path>
  1210. <move x="21.334" y="122.834"/>
  1211. <line x="19.667" y="121.5"/>
  1212. <line x="21.334" y="112.334"/>
  1213. <line x="33.001" y="113"/>
  1214. <close/>
  1215. </path>
  1216. <fillstroke/>
  1217. <path>
  1218. <move x="17.167" y="121.334"/>
  1219. <line x="14.834" y="121.667"/>
  1220. <line x="9.334" y="113.334"/>
  1221. <line x="16.834" y="113.667"/>
  1222. <close/>
  1223. </path>
  1224. <fillstroke/>
  1225. <path>
  1226. <move x="5.667" y="117.334"/>
  1227. <line x="13.001" y="123.667"/>
  1228. <line x="11.167" y="126.167"/>
  1229. <line x="4.501" y="122.5"/>
  1230. <close/>
  1231. </path>
  1232. <fillstroke/>
  1233. <path>
  1234. <move x="7.334" y="108.5"/>
  1235. <line x="8.834" y="94.834"/>
  1236. <line x="14.334" y="94.834"/>
  1237. <line x="17.167" y="98.5"/>
  1238. <line x="15.834" y="109.167"/>
  1239. <close/>
  1240. </path>
  1241. <fillstroke/>
  1242. <path>
  1243. <move x="10.501" y="81.667"/>
  1244. <line x="15.167" y="86.667"/>
  1245. <line x="10.167" y="88.667"/>
  1246. <close/>
  1247. </path>
  1248. <fillstroke/>
  1249. <path>
  1250. <move x="4.001" y="92.5"/>
  1251. <line x="0.334" y="108.834"/>
  1252. <line x="0.667" y="92"/>
  1253. <close/>
  1254. </path>
  1255. <fillstroke/>
  1256. <path>
  1257. <move x="48.667" y="114.834"/>
  1258. <line x="23.501" y="133.667"/>
  1259. <line x="25.334" y="136"/>
  1260. <line x="50.167" y="117.834"/>
  1261. <close/>
  1262. </path>
  1263. <fillstroke/>
  1264. <path>
  1265. <move x="20.167" y="136.167"/>
  1266. <line x="21.334" y="137.667"/>
  1267. <line x="9.167" y="147.167"/>
  1268. <line x="8.501" y="145.667"/>
  1269. <close/>
  1270. </path>
  1271. <fillstroke/>
  1272. <path>
  1273. <move x="39.834" y="134.167"/>
  1274. <curve x1="39.834" y1="134.167" x2="54.501" y2="121.667" x3="54.501" y3="121.667"/>
  1275. <curve x1="54.501" y1="121.667" x2="69.501" y2="137.834" x3="69.501" y3="137.834"/>
  1276. <curve x1="69.501" y1="137.834" x2="54.334" y2="151.667" x3="54.334" y3="151.667"/>
  1277. <curve x1="54.334" y1="151.667" x2="51.334" y2="149.167" x3="51.334" y3="149.167"/>
  1278. <curve x1="51.334" y1="149.167" x2="42.501" y2="138.167" x3="42.501" y3="138.167"/>
  1279. <curve x1="42.501" y1="138.167" x2="39.667" y2="134.334" x3="39.667" y3="134.334"/>
  1280. <close/>
  1281. </path>
  1282. <fillstroke/>
  1283. <path>
  1284. <move x="36.667" y="137.167"/>
  1285. <curve x1="36.667" y1="137.167" x2="39.667" y2="141.167" x3="39.667" y3="141.167"/>
  1286. <curve x1="39.667" y1="141.167" x2="46.834" y2="152.5" x3="46.834" y3="152.5"/>
  1287. <curve x1="46.834" y1="152.5" x2="49.667" y2="155.834" x3="49.667" y3="155.834"/>
  1288. <curve x1="49.667" y1="155.834" x2="35.834" y2="167.667" x3="35.834" y3="167.667"/>
  1289. <curve x1="35.834" y1="167.667" x2="21.501" y2="149.834" x3="21.501" y3="149.834"/>
  1290. <curve x1="21.501" y1="149.834" x2="37.001" y2="137.167" x3="37.001" y3="137.167"/>
  1291. <close/>
  1292. </path>
  1293. <fillstroke/>
  1294. <path>
  1295. <move x="4.167" y="127.834"/>
  1296. <curve x1="4.167" y1="127.834" x2="6.001" y2="128.667" x3="6.001" y3="128.667"/>
  1297. <curve x1="6.001" y1="128.667" x2="11.667" y2="137.667" x3="11.667" y3="137.834"/>
  1298. <curve x1="11.667" y1="138" x2="0.667" y2="146.834" x3="0.667" y3="146.834"/>
  1299. <curve x1="0.667" y1="146.834" x2="0.334" y2="131.334" x3="0.334" y3="131.334"/>
  1300. <curve x1="0.334" y1="131.334" x2="4.167" y2="128" x3="4.167" y3="128"/>
  1301. <close/>
  1302. </path>
  1303. <fillstroke/>
  1304. <ellipse x="13.834" y="126.667" w="6.5" h="6.667"/>
  1305. <fillstroke/>
  1306. <path>
  1307. <move x="23.834" y="125.167"/>
  1308. <line x="44.501" y="109.667"/>
  1309. <line x="46.834" y="113.167"/>
  1310. <line x="26.501" y="128.834"/>
  1311. <close/>
  1312. </path>
  1313. <fillstroke/>
  1314. <path>
  1315. <move x="4.501" y="88.167"/>
  1316. <line x="6.667" y="79.334"/>
  1317. <arc rx="4" ry="9" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="0.334" y="78.167"/>
  1318. <line x="0.334" y="87.5"/>
  1319. <line x="4.334" y="88.334"/>
  1320. <close/>
  1321. </path>
  1322. <fillstroke/>
  1323. <path>
  1324. <move x="0.667" y="65.667"/>
  1325. <line x="11.001" y="67.5"/>
  1326. <line x="9.334" y="76"/>
  1327. <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="0.501" y="71"/>
  1328. <line x="0.501" y="65.334"/>
  1329. <close/>
  1330. </path>
  1331. <fillstroke/>
  1332. <fillcolor color="fillColor4" default="#d87146"/>
  1333. <path>
  1334. <move x="62.667" y="98.5"/>
  1335. <arc rx="50" ry="50" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="84.834" y="98"/>
  1336. <arc rx="50" ry="50" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="103.167" y="103.834"/>
  1337. <arc rx="15" ry="15" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="116.334" y="117.667"/>
  1338. <line x="128.001" y="143.834"/>
  1339. <line x="115.834" y="149"/>
  1340. <line x="122.501" y="166"/>
  1341. <line x="134.334" y="161.667"/>
  1342. <line x="138.834" y="174"/>
  1343. <line x="122.667" y="184.167"/>
  1344. <line x="111.667" y="172"/>
  1345. <line x="57.334" y="223.834"/>
  1346. <line x="42.167" y="207.667"/>
  1347. <line x="55.167" y="195"/>
  1348. <arc rx="20" ry="20" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="76.501" y="189"/>
  1349. <line x="73.334" y="186.5"/>
  1350. <line x="79.334" y="181.667"/>
  1351. <line x="81.334" y="183.834"/>
  1352. <arc rx="20" ry="20" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="88.167" y="163.667"/>
  1353. <line x="73.834" y="150.667"/>
  1354. <line x="82.834" y="141.667"/>
  1355. <line x="60.334" y="115"/>
  1356. <line x="68.501" y="106.667"/>
  1357. <line x="62.667" y="98.501"/>
  1358. <close/>
  1359. </path>
  1360. <fillstroke/>
  1361. <fillcolor color="fillColor3" default="#ffca8c"/>
  1362. <path>
  1363. <move x="247.567" y="138.167"/>
  1364. <line x="250.167" y="133.967"/>
  1365. <line x="250.167" y="139.367"/>
  1366. <close/>
  1367. </path>
  1368. <fillstroke/>
  1369. <fillcolor color="fillColor5" default="#b2d8ad"/>
  1370. <path>
  1371. <move x="84.767" y="207.767"/>
  1372. <curve x1="84.767" y1="207.767" x2="100.967" y2="192.767" x3="100.967" y3="192.767"/>
  1373. <curve x1="100.967" y1="192.767" x2="109.367" y2="200.367" x3="109.367" y3="200.367"/>
  1374. <curve x1="109.367" y1="200.367" x2="89.967" y2="210.167" x3="89.967" y3="210.167"/>
  1375. <curve x1="89.967" y1="210.167" x2="84.767" y2="207.967" x3="84.767" y3="207.967"/>
  1376. <close/>
  1377. </path>
  1378. <fillstroke/>
  1379. <path>
  1380. <move x="81.767" y="210.367"/>
  1381. <line x="88.167" y="212.367"/>
  1382. <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="88.167" y="226.367"/>
  1383. <line x="81.567" y="227.967"/>
  1384. <line x="72.367" y="219.967"/>
  1385. <line x="81.767" y="210.367"/>
  1386. <close/>
  1387. </path>
  1388. <fillstroke/>
  1389. <path>
  1390. <move x="71.167" y="220.767"/>
  1391. <arc rx="28" ry="35" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="101.567" y="230.567"/>
  1392. <line x="103.167" y="233.967"/>
  1393. <arc rx="20" ry="30" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="83.767" y="239.367"/>
  1394. <line x="85.967" y="235.767"/>
  1395. <line x="75.767" y="232.767"/>
  1396. <line x="69.167" y="222.767"/>
  1397. <line x="71.167" y="220.767"/>
  1398. <close/>
  1399. </path>
  1400. <fillstroke/>
  1401. <path>
  1402. <move x="66.967" y="224.367"/>
  1403. <curve x1="66.967" y1="224.367" x2="73.367" y2="232.967" x3="73.367" y3="232.967"/>
  1404. <curve x1="73.367" y1="232.967" x2="70.967" y2="236.167" x3="70.967" y3="236.167"/>
  1405. <curve x1="70.967" y1="236.167" x2="79.567" y2="242.167" x3="79.567" y3="242.167"/>
  1406. <curve x1="79.567" y1="242.167" x2="76.967" y2="245.367" x3="76.967" y3="245.367"/>
  1407. <curve x1="76.967" y1="245.367" x2="57.567" y2="233.767" x3="57.567" y3="233.767"/>
  1408. <curve x1="57.567" y1="233.767" x2="66.767" y2="224.167" x3="66.767" y3="224.167"/>
  1409. <close/>
  1410. </path>
  1411. <fillstroke/>
  1412. <path>
  1413. <move x="82.167" y="242.167"/>
  1414. <curve x1="82.167" y1="242.167" x2="88.167" y2="243.567" x3="88.167" y3="243.567"/>
  1415. <curve x1="88.167" y1="243.567" x2="87.767" y2="249.567" x3="87.767" y3="249.567"/>
  1416. <curve x1="87.767" y1="249.567" x2="76.167" y2="250.367" x3="76.167" y3="250.367"/>
  1417. <curve x1="76.167" y1="250.367" x2="82.167" y2="242.367" x3="82.167" y3="242.367"/>
  1418. <close/>
  1419. </path>
  1420. <fillstroke/>
  1421. <path>
  1422. <move x="112.367" y="204.367"/>
  1423. <curve x1="112.367" y1="204.367" x2="115.767" y2="207.567" x3="115.767" y3="207.567"/>
  1424. <curve x1="115.767" y1="207.567" x2="104.167" y2="226.167" x3="104.167" y3="226.167"/>
  1425. <curve x1="104.167" y1="226.167" x2="92.967" y2="222.967" x3="92.967" y3="222.967"/>
  1426. <curve x1="92.967" y1="222.967" x2="96.767" y2="210.767" x3="96.767" y3="210.767"/>
  1427. <curve x1="96.767" y1="210.767" x2="112.367" y2="204.367" x3="112.367" y3="204.367"/>
  1428. <close/>
  1429. </path>
  1430. <fillstroke/>
  1431. <path>
  1432. <move x="118.767" y="211.767"/>
  1433. <curve x1="118.767" y1="211.767" x2="122.567" y2="216.367" x3="122.567" y3="216.367"/>
  1434. <curve x1="122.567" y1="216.367" x2="105.767" y2="233.567" x3="105.767" y3="233.567"/>
  1435. <curve x1="105.767" y1="233.567" x2="104.567" y2="230.567" x3="104.567" y3="230.567"/>
  1436. <curve x1="104.567" y1="230.567" x2="118.567" y2="211.767" x3="118.567" y3="211.767"/>
  1437. <close/>
  1438. </path>
  1439. <fillstroke/>
  1440. <path>
  1441. <move x="125.767" y="218.167"/>
  1442. <line x="134.167" y="221.767"/>
  1443. <line x="95.967" y="250.167"/>
  1444. <line x="90.367" y="249.967"/>
  1445. <line x="90.967" y="244.167"/>
  1446. <arc rx="20" ry="20" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="103.967" y="239.167"/>
  1447. <arc rx="80" ry="80" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="125.767" y="218.167"/>
  1448. <close/>
  1449. </path>
  1450. <fillstroke/>
  1451. <fillcolor color="fillColor6" default="#ffffff"/>
  1452. <path>
  1453. <move x="112.334" y="122.834"/>
  1454. <line x="119.667" y="134.334"/>
  1455. <line x="114.834" y="140.334"/>
  1456. <line x="104.834" y="130.167"/>
  1457. <close/>
  1458. </path>
  1459. <fillstroke/>
  1460. <path>
  1461. <move x="69.167" y="111.5"/>
  1462. <line x="79.167" y="102.667"/>
  1463. <line x="93.001" y="116.834"/>
  1464. <line x="82.001" y="127"/>
  1465. <close/>
  1466. </path>
  1467. <fillstroke/>
  1468. <path>
  1469. <move x="98.834" y="133.834"/>
  1470. <line x="107.334" y="142.167"/>
  1471. <line x="101.167" y="148.5"/>
  1472. <line x="93.167" y="139"/>
  1473. <close/>
  1474. </path>
  1475. <fillstroke/>
  1476. <strokecolor color="strokeColor2" default="#000000"/>
  1477. <strokewidth width="2"/>
  1478. <rect x="0.167" y="0.167" w="250" h="250"/>
  1479. <stroke/>
  1480. </foreground>
  1481. </shape>
  1482. <shape name="Search Box" h="44" w="350" aspect="1">
  1483. <foreground>
  1484. <strokecolor color="#000000"/>
  1485. <fillcolor color="#fafafa"/>
  1486. <roundrect x="0" y="0" w="350" h="44" arcsize="6.4"/>
  1487. <fillstroke/>
  1488. <fillcolor color="#ffffff"/>
  1489. <rect x="10" y="10" w="250" h="24"/>
  1490. <fillstroke/>
  1491. <strokecolor color="#2c457e"/>
  1492. <strokewidth width="4"/>
  1493. <fillcolor color="none"/>
  1494. <ellipse x="14" y="14" w="10" h="10"/>
  1495. <stroke/>
  1496. <linecap cap="round"/>
  1497. <path>
  1498. <move x="27" y="30"/>
  1499. <line x="22" y="23"/>
  1500. </path>
  1501. <stroke/>
  1502. <fontsize size="14"/>
  1503. <fontstyle style="1"/>
  1504. <fontcolor color="#2c457e"/>
  1505. <text str="Search" x="272" y="22" valign="middle" align="center"/>
  1506. </foreground>
  1507. </shape>
  1508. <shape name="Security" h="96.846" w="78" aspect="1">
  1509. <foreground>
  1510. <strokecolor color="#000000"/>
  1511. <strokecolor color="#000000"/>
  1512. <strokewidth width="2"/>
  1513. <fillcolor color="#ed9d01"/>
  1514. <roundrect x="0" y="38.346" w="78" h="58.5" arcsize="7.479"/>
  1515. <fillstroke/>
  1516. <fillcolor color="#929da8"/>
  1517. <path>
  1518. <move x="7.5" y="38.346"/>
  1519. <line x="7.5" y="27.346"/>
  1520. <arc rx="31.7" ry="30.8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="70.5" y="27.346"/>
  1521. <line x="70.5" y="38.346"/>
  1522. <line x="56.5" y="38.346"/>
  1523. <line x="56.5" y="27.346"/>
  1524. <arc rx="18" ry="18" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="21.5" y="27.346"/>
  1525. <line x="21.5" y="38.346"/>
  1526. <close/>
  1527. </path>
  1528. <fillstroke/>
  1529. <strokecolor color="none"/>
  1530. <strokewidth width="1"/>
  1531. <fillcolor color="#ffc800"/>
  1532. <roundrect x="9" y="46.846" w="60" h="42" arcsize="10.12"/>
  1533. <fillstroke/>
  1534. <strokecolor color="#000000"/>
  1535. <strokewidth width="4"/>
  1536. <fillcolor color="none"/>
  1537. <path>
  1538. <move x="39" y="76.846"/>
  1539. <line x="39" y="68.846"/>
  1540. </path>
  1541. <stroke/>
  1542. <strokewidth width="2"/>
  1543. <fillcolor color="#000000"/>
  1544. <ellipse x="34" y="58.846" w="10" h="10"/>
  1545. <fillstroke/>
  1546. </foreground>
  1547. </shape>
  1548. <shape name="Sign In" h="350" w="250" aspect="1">
  1549. <foreground>
  1550. <strokecolor color="#000000"/>
  1551. <fillcolor color="#fafafa"/>
  1552. <linecap cap="round"/>
  1553. <roundrect x="0" y="0" w="250" h="350" arcsize="1.71"/>
  1554. <fillstroke/>
  1555. <strokecolor color="#2c457e"/>
  1556. <strokewidth width="3"/>
  1557. <fillcolor color="none"/>
  1558. <path>
  1559. <move x="10" y="50"/>
  1560. <line x="240" y="50"/>
  1561. </path>
  1562. <stroke/>
  1563. <strokecolor color="#000000"/>
  1564. <strokewidth width="1"/>
  1565. <fillcolor color="#2c457e"/>
  1566. <roundrect x="15" y="200" w="81" h="25" arcsize="7.85"/>
  1567. <fillstroke/>
  1568. <fillcolor color="#ffffff"/>
  1569. <rect x="15" y="90" w="180" h="23"/>
  1570. <fillstroke/>
  1571. <strokecolor color="#2c457e"/>
  1572. <strokewidth width="3"/>
  1573. <fillcolor color="none"/>
  1574. <path>
  1575. <move x="10" y="260"/>
  1576. <line x="240" y="260"/>
  1577. </path>
  1578. <stroke/>
  1579. <strokecolor color="#000000"/>
  1580. <strokewidth width="1"/>
  1581. <fillcolor color="#2c457e"/>
  1582. <roundrect x="15" y="300" w="81" h="25" arcsize="7.85"/>
  1583. <fillstroke/>
  1584. <fillcolor color="#ffffff"/>
  1585. <rect x="15" y="150" w="180" h="23"/>
  1586. <fillstroke/>
  1587. <fillcolor color="none"/>
  1588. <roundrect x="0" y="0" w="250" h="350" arcsize="1.71"/>
  1589. <stroke/>
  1590. <fillcolor color="#000000"/>
  1591. <path>
  1592. <ellipse w="10" h="10" x="20" y="157"/>
  1593. </path>
  1594. <fillstroke/>
  1595. <path>
  1596. <ellipse w="10" h="10" x="35" y="157"/>
  1597. </path>
  1598. <fillstroke/>
  1599. <path>
  1600. <ellipse w="10" h="10" x="50" y="157"/>
  1601. </path>
  1602. <fillstroke/>
  1603. <path>
  1604. <ellipse w="10" h="10" x="65" y="157"/>
  1605. </path>
  1606. <fillstroke/>
  1607. <path>
  1608. <ellipse w="10" h="10" x="80" y="157"/>
  1609. </path>
  1610. <fillstroke/>
  1611. <path>
  1612. <ellipse w="10" h="10" x="95" y="157"/>
  1613. </path>
  1614. <fillstroke/>
  1615. <fontcolor color="#2c457e"/>
  1616. <fontsize size="14"/>
  1617. <fontstyle style="1"/>
  1618. <text str="Sign In" x="15" y="35" align="left" valign="middle"/>
  1619. <fontcolor color="#ffffff"/>
  1620. <text str="SIGN IN" x="54" y="212" align="center" valign="middle"/>
  1621. <text str="SIGN UP" x="54" y="313" align="center" valign="middle"/>
  1622. <fontcolor color="#000000"/>
  1623. <fontsize size="12"/>
  1624. <text str="User Name:" x="15" y="80" align="left" valign="middle"/>
  1625. <text str="Password:" x="15" y="140" align="left" valign="middle"/>
  1626. <text str="New User" x="15" y="280" align="left" valign="middle"/>
  1627. <fontstyle style="0"/>
  1628. <text str="johndoe" x="20" y="100" align="left" valign="middle"/>
  1629. <fontstyle style="2"/>
  1630. <fontcolor color="#0000ff"/>
  1631. <text str="Forgot password?" x="20" y="240" align="left" valign="middle"/>
  1632. <strokecolor color="#0000ff"/>
  1633. <path>
  1634. <move x="18" y="247"/>
  1635. <line x="115" y="247"/>
  1636. </path>
  1637. <stroke/>
  1638. </foreground>
  1639. </shape>
  1640. <shape name="Sign Up" h="270" w="400" aspect="1">
  1641. <foreground>
  1642. <strokecolor color="#000000"/>
  1643. <fillcolor color="#fafafa"/>
  1644. <roundrect x="0" y="0" w="400" h="270" arcsize="1.551"/>
  1645. <fillstroke/>
  1646. <strokecolor color="#2c457e"/>
  1647. <strokewidth width="3"/>
  1648. <fillcolor color="none"/>
  1649. <linecap cap="round"/>
  1650. <path>
  1651. <move x="10" y="50"/>
  1652. <line x="390" y="50"/>
  1653. </path>
  1654. <stroke/>
  1655. <strokecolor color="#000000"/>
  1656. <strokewidth width="1"/>
  1657. <fillcolor color="#2c457e"/>
  1658. <linecap cap="butt"/>
  1659. <roundrect x="300" y="229" w="81" h="25" arcsize="7.852"/>
  1660. <fillstroke/>
  1661. <fillcolor color="#ffffff"/>
  1662. <rect x="150" y="70" w="180" h="23"/>
  1663. <fillstroke/>
  1664. <rect x="150" y="110" w="180" h="23"/>
  1665. <fillstroke/>
  1666. <fillcolor color="none"/>
  1667. <roundrect x="0" y="0" w="400" h="270" arcsize="1.551"/>
  1668. <stroke/>
  1669. <fillcolor color="#ffffff"/>
  1670. <rect x="150" y="150" w="180" h="23"/>
  1671. <fillstroke/>
  1672. <rect x="150" y="190" w="180" h="23"/>
  1673. <fillstroke/>
  1674. <rect x="150" y="235" w="10" h="10"/>
  1675. <fillstroke/>
  1676. <fillcolor color="#000000"/>
  1677. <path>
  1678. <ellipse w="10" h="10" x="160" y="157"/>
  1679. </path>
  1680. <fillstroke/>
  1681. <path>
  1682. <ellipse w="10" h="10" x="175" y="157"/>
  1683. </path>
  1684. <fillstroke/>
  1685. <path>
  1686. <ellipse w="10" h="10" x="190" y="157"/>
  1687. </path>
  1688. <fillstroke/>
  1689. <path>
  1690. <ellipse w="10" h="10" x="205" y="157"/>
  1691. </path>
  1692. <fillstroke/>
  1693. <path>
  1694. <ellipse w="10" h="10" x="220" y="157"/>
  1695. </path>
  1696. <fillstroke/>
  1697. <path>
  1698. <ellipse w="10" h="10" x="235" y="157"/>
  1699. </path>
  1700. <fillstroke/>
  1701. <path>
  1702. <ellipse w="10" h="10" x="160" y="197"/>
  1703. </path>
  1704. <fillstroke/>
  1705. <path>
  1706. <ellipse w="10" h="10" x="175" y="197"/>
  1707. </path>
  1708. <fillstroke/>
  1709. <path>
  1710. <ellipse w="10" h="10" x="190" y="197"/>
  1711. </path>
  1712. <fillstroke/>
  1713. <path>
  1714. <ellipse w="10" h="10" x="205" y="197"/>
  1715. </path>
  1716. <fillstroke/>
  1717. <path>
  1718. <ellipse w="10" h="10" x="220" y="197"/>
  1719. </path>
  1720. <fillstroke/>
  1721. <path>
  1722. <ellipse w="10" h="10" x="235" y="197"/>
  1723. </path>
  1724. <fillstroke/>
  1725. <fontcolor color="#2c457e"/>
  1726. <fontsize size="14"/>
  1727. <fontstyle style="1"/>
  1728. <text str="Sign Up" x="15" y="35" align="left" valign="middle"/>
  1729. <fontcolor color="#ffffff"/>
  1730. <text str="SIGN UP" x="340" y="241" align="center" valign="middle"/>
  1731. <fontcolor color="#000000"/>
  1732. <fontsize size="12"/>
  1733. <text str="Login name:" x="140" y="82" align="right" valign="middle"/>
  1734. <text str="E-mail:" x="140" y="122" align="right" valign="middle"/>
  1735. <text str="Password:" x="140" y="162" align="right" valign="middle"/>
  1736. <text str="Confirm password:" x="140" y="202" align="right" valign="middle"/>
  1737. <fontstyle style="0"/>
  1738. <text str="johndoe" x="155" y="82" align="left" valign="middle"/>
  1739. <text str="jdoe@default.net" x="155" y="122" align="left" valign="middle"/>
  1740. <fontstyle style="3"/>
  1741. <fontsize size="13"/>
  1742. <text str="Remember me" x="165" y="240" align="left" valign="middle"/>
  1743. </foreground>
  1744. </shape>
  1745. <shape name="Star Rating" h="33.75" w="213.5" aspect="1">
  1746. <foreground>
  1747. <strokecolor color="#000000"/>
  1748. <strokecolor color="#999999"/>
  1749. <fillcolor color="#ffff00"/>
  1750. <path>
  1751. <move x="0" y="12.284"/>
  1752. <line x="12.74" y="12.284"/>
  1753. <line x="16.625" y="0"/>
  1754. <line x="20.511" y="12.284"/>
  1755. <line x="33.25" y="12.284"/>
  1756. <line x="23.101" y="20.51"/>
  1757. <line x="27.126" y="33.5"/>
  1758. <line x="16.625" y="25.46"/>
  1759. <line x="6.125" y="33.5"/>
  1760. <line x="10.15" y="20.51"/>
  1761. <close/>
  1762. </path>
  1763. <fillstroke/>
  1764. <path>
  1765. <move x="45.5" y="12.534"/>
  1766. <line x="58.24" y="12.534"/>
  1767. <line x="62.125" y="0.25"/>
  1768. <line x="66.01" y="12.534"/>
  1769. <line x="78.75" y="12.534"/>
  1770. <line x="68.601" y="20.76"/>
  1771. <line x="72.626" y="33.75"/>
  1772. <line x="62.125" y="25.71"/>
  1773. <line x="51.625" y="33.75"/>
  1774. <line x="55.65" y="20.76"/>
  1775. <close/>
  1776. </path>
  1777. <fillstroke/>
  1778. <path>
  1779. <move x="90.25" y="12.534"/>
  1780. <line x="102.99" y="12.534"/>
  1781. <line x="106.875" y="0.25"/>
  1782. <line x="110.76" y="12.534"/>
  1783. <line x="123.5" y="12.534"/>
  1784. <line x="113.351" y="20.76"/>
  1785. <line x="117.376" y="33.75"/>
  1786. <line x="106.875" y="25.71"/>
  1787. <line x="96.375" y="33.75"/>
  1788. <line x="100.4" y="20.76"/>
  1789. <close/>
  1790. </path>
  1791. <fillstroke/>
  1792. <path>
  1793. <move x="135.25" y="12.534"/>
  1794. <line x="147.99" y="12.534"/>
  1795. <line x="151.875" y="0.25"/>
  1796. <line x="155.761" y="12.534"/>
  1797. <line x="168.5" y="12.534"/>
  1798. <line x="158.35" y="20.76"/>
  1799. <line x="162.376" y="33.75"/>
  1800. <line x="151.875" y="25.71"/>
  1801. <line x="141.375" y="33.75"/>
  1802. <line x="145.4" y="20.76"/>
  1803. <close/>
  1804. </path>
  1805. <fillstroke/>
  1806. <fillcolor color="#ffffff"/>
  1807. <path>
  1808. <move x="180.25" y="12.284"/>
  1809. <line x="192.99" y="12.284"/>
  1810. <line x="196.875" y="0"/>
  1811. <line x="200.761" y="12.284"/>
  1812. <line x="213.5" y="12.284"/>
  1813. <line x="203.35" y="20.51"/>
  1814. <line x="207.376" y="33.5"/>
  1815. <line x="196.875" y="25.46"/>
  1816. <line x="186.375" y="33.5"/>
  1817. <line x="190.4" y="20.51"/>
  1818. <close/>
  1819. </path>
  1820. <fillstroke/>
  1821. </foreground>
  1822. </shape>
  1823. <shape name="Vertical Splitter" h="250" w="24" aspect="1">
  1824. <foreground>
  1825. <strokecolor color="none"/>
  1826. <fillcolor color="#fafafa"/>
  1827. <path>
  1828. <move x="24" y="0"/>
  1829. <line x="0" y="0"/>
  1830. <line x="0" y="250"/>
  1831. <line x="24" y="250"/>
  1832. <close/>
  1833. </path>
  1834. <fillstroke/>
  1835. <strokecolor color="#2c457e"/>
  1836. <fillcolor color="none"/>
  1837. <path>
  1838. <move x="24" y="0"/>
  1839. <line x="24" y="250"/>
  1840. </path>
  1841. <stroke/>
  1842. <path>
  1843. <move x="0" y="0"/>
  1844. <line x="0" y="250"/>
  1845. </path>
  1846. <stroke/>
  1847. <strokecolor color="#000000"/>
  1848. <fillcolor color="#2c457e"/>
  1849. <path>
  1850. <move x="16" y="95"/>
  1851. <line x="8" y="95"/>
  1852. <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="5" y="98"/>
  1853. <line x="5" y="117"/>
  1854. <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="8" y="120"/>
  1855. <line x="16" y="120"/>
  1856. <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="19" y="117"/>
  1857. <line x="19" y="98"/>
  1858. <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="16" y="95"/>
  1859. <close/>
  1860. </path>
  1861. <fillstroke/>
  1862. <path>
  1863. <move x="16" y="130"/>
  1864. <line x="8" y="130"/>
  1865. <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="5" y="133"/>
  1866. <line x="5" y="152"/>
  1867. <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="8" y="155"/>
  1868. <line x="16" y="155"/>
  1869. <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="19" y="152"/>
  1870. <line x="19" y="133"/>
  1871. <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="16" y="130"/>
  1872. <close/>
  1873. </path>
  1874. <fillstroke/>
  1875. <strokecolor color="#ffffff"/>
  1876. <fillcolor color="#ffffff"/>
  1877. <linejoin join="round"/>
  1878. <path>
  1879. <move x="9" y="113"/>
  1880. <line x="9" y="102"/>
  1881. <line x="16" y="107.5"/>
  1882. <close/>
  1883. </path>
  1884. <fillstroke/>
  1885. <path>
  1886. <move x="16" y="148"/>
  1887. <line x="16" y="137"/>
  1888. <line x="9" y="142.5"/>
  1889. <close/>
  1890. </path>
  1891. <fillstroke/>
  1892. </foreground>
  1893. </shape>
  1894. <shape name="Video" h="270" w="400" aspect="1">
  1895. <foreground>
  1896. <strokecolor color="#000000"/>
  1897. <fillcolor color="#fafafa"/>
  1898. <roundrect x="0" y="0" w="400" h="270" arcsize="1.551"/>
  1899. <fillstroke/>
  1900. <strokecolor color="#2c457e"/>
  1901. <strokewidth width="3"/>
  1902. <fillcolor color="none"/>
  1903. <linecap cap="round"/>
  1904. <path>
  1905. <move x="10" y="20"/>
  1906. <line x="390" y="20"/>
  1907. </path>
  1908. <stroke/>
  1909. <strokecolor color="#000000"/>
  1910. <strokewidth width="1"/>
  1911. <linecap cap="butt"/>
  1912. <roundrect x="0" y="0" w="400" h="270" arcsize="1.551"/>
  1913. <stroke/>
  1914. <fillcolor color="#999999"/>
  1915. <linejoin join="round"/>
  1916. <rect x="10" y="30" w="380" h="200"/>
  1917. <fillstroke/>
  1918. <strokewidth width="4"/>
  1919. <fillcolor color="#cccccc"/>
  1920. <path>
  1921. <move x="180" y="110"/>
  1922. <line x="220" y="130"/>
  1923. <line x="180" y="150"/>
  1924. <close/>
  1925. </path>
  1926. <fillstroke/>
  1927. <strokecolor color="#999999"/>
  1928. <strokewidth width="1"/>
  1929. <fillcolor color="#999999"/>
  1930. <linejoin join="miter"/>
  1931. <ellipse x="10" y="235" w="30" h="30"/>
  1932. <fillstroke/>
  1933. <ellipse x="45" y="235" w="30" h="30"/>
  1934. <fillstroke/>
  1935. <ellipse x="80" y="235" w="30" h="30"/>
  1936. <fillstroke/>
  1937. <ellipse x="115" y="235" w="30" h="30"/>
  1938. <fillstroke/>
  1939. <ellipse x="150" y="235" w="30" h="30"/>
  1940. <fillstroke/>
  1941. <strokewidth width="4"/>
  1942. <fillcolor color="none"/>
  1943. <linecap cap="round"/>
  1944. <path>
  1945. <move x="190" y="250"/>
  1946. <line x="320" y="250"/>
  1947. </path>
  1948. <stroke/>
  1949. <strokewidth width="1"/>
  1950. <fillcolor color="#999999"/>
  1951. <linecap cap="butt"/>
  1952. <ellipse x="195" y="245" w="10" h="10"/>
  1953. <fillstroke/>
  1954. <strokecolor color="#cccccc"/>
  1955. <strokewidth width="2"/>
  1956. <fillcolor color="#cccccc"/>
  1957. <linejoin join="round"/>
  1958. <path>
  1959. <move x="25" y="244"/>
  1960. <line x="25" y="256"/>
  1961. <line x="16" y="250"/>
  1962. <close/>
  1963. </path>
  1964. <fillstroke/>
  1965. <path>
  1966. <move x="35" y="244"/>
  1967. <line x="35" y="256"/>
  1968. <line x="26" y="250"/>
  1969. <close/>
  1970. </path>
  1971. <fillstroke/>
  1972. <fillcolor color="none"/>
  1973. <linejoin join="miter"/>
  1974. <linecap cap="round"/>
  1975. <path>
  1976. <move x="15" y="244"/>
  1977. <line x="15" y="256"/>
  1978. </path>
  1979. <stroke/>
  1980. <fillcolor color="#cccccc"/>
  1981. <linejoin join="round"/>
  1982. <linecap cap="butt"/>
  1983. <path>
  1984. <move x="59" y="244"/>
  1985. <line x="59" y="256"/>
  1986. <line x="50" y="250"/>
  1987. <close/>
  1988. </path>
  1989. <fillstroke/>
  1990. <path>
  1991. <move x="69" y="244"/>
  1992. <line x="69" y="256"/>
  1993. <line x="60" y="250"/>
  1994. <close/>
  1995. </path>
  1996. <fillstroke/>
  1997. <fillcolor color="none"/>
  1998. <linejoin join="miter"/>
  1999. <linecap cap="round"/>
  2000. <path>
  2001. <move x="15" y="244"/>
  2002. <line x="15" y="256"/>
  2003. </path>
  2004. <stroke/>
  2005. <fillcolor color="#cccccc"/>
  2006. <linejoin join="round"/>
  2007. <linecap cap="butt"/>
  2008. <path>
  2009. <move x="90" y="240"/>
  2010. <line x="90" y="260"/>
  2011. <line x="105" y="250"/>
  2012. <close/>
  2013. </path>
  2014. <fillstroke/>
  2015. <path>
  2016. <move x="130" y="244"/>
  2017. <line x="130" y="256"/>
  2018. <line x="139" y="250"/>
  2019. <close/>
  2020. </path>
  2021. <fillstroke/>
  2022. <fillcolor color="none"/>
  2023. <linejoin join="miter"/>
  2024. <linecap cap="round"/>
  2025. <path>
  2026. <move x="175" y="244"/>
  2027. <line x="175" y="256"/>
  2028. </path>
  2029. <stroke/>
  2030. <fillcolor color="#cccccc"/>
  2031. <linejoin join="round"/>
  2032. <linecap cap="butt"/>
  2033. <path>
  2034. <move x="120" y="244"/>
  2035. <line x="120" y="256"/>
  2036. <line x="129" y="250"/>
  2037. <close/>
  2038. </path>
  2039. <fillstroke/>
  2040. <path>
  2041. <move x="165" y="244"/>
  2042. <line x="165" y="256"/>
  2043. <line x="174" y="250"/>
  2044. <close/>
  2045. </path>
  2046. <fillstroke/>
  2047. <path>
  2048. <move x="155" y="244"/>
  2049. <line x="155" y="256"/>
  2050. <line x="164" y="250"/>
  2051. <close/>
  2052. </path>
  2053. <fillstroke/>
  2054. <strokecolor color="#999999"/>
  2055. <strokewidth width="1"/>
  2056. <fillcolor color="#999999"/>
  2057. <path>
  2058. <move x="330" y="245"/>
  2059. <line x="330" y="255"/>
  2060. <line x="335" y="255"/>
  2061. <line x="340" y="260"/>
  2062. <line x="340" y="240"/>
  2063. <line x="335" y="245"/>
  2064. <close/>
  2065. </path>
  2066. <fillstroke/>
  2067. <fillcolor color="none"/>
  2068. <linecap cap="round"/>
  2069. <rect x="370" y="245" w="15" h="10"/>
  2070. <stroke/>
  2071. <path>
  2072. <move x="345" y="250"/>
  2073. <line x="352" y="250"/>
  2074. </path>
  2075. <stroke/>
  2076. <path>
  2077. <move x="344" y="244"/>
  2078. <line x="350" y="241"/>
  2079. </path>
  2080. <stroke/>
  2081. <path>
  2082. <move x="344" y="256"/>
  2083. <line x="350" y="259"/>
  2084. </path>
  2085. <stroke/>
  2086. <path>
  2087. <move x="365" y="242"/>
  2088. <line x="368" y="244"/>
  2089. </path>
  2090. <stroke/>
  2091. <path>
  2092. <move x="367" y="242"/>
  2093. <line x="365" y="242"/>
  2094. <line x="365" y="243.5"/>
  2095. <close/>
  2096. </path>
  2097. <stroke/>
  2098. <path>
  2099. <move x="365" y="256.5"/>
  2100. <line x="365" y="258"/>
  2101. <line x="367" y="258"/>
  2102. <close/>
  2103. </path>
  2104. <stroke/>
  2105. <path>
  2106. <move x="388" y="258"/>
  2107. <line x="390" y="258"/>
  2108. <line x="390" y="256.5"/>
  2109. <close/>
  2110. </path>
  2111. <stroke/>
  2112. <path>
  2113. <move x="390" y="243.5"/>
  2114. <line x="390" y="242"/>
  2115. <line x="388" y="242"/>
  2116. <close/>
  2117. </path>
  2118. <stroke/>
  2119. <path>
  2120. <move x="368" y="256"/>
  2121. <line x="365" y="258"/>
  2122. </path>
  2123. <stroke/>
  2124. <path>
  2125. <move x="387" y="256"/>
  2126. <line x="390" y="258"/>
  2127. </path>
  2128. <stroke/>
  2129. <path>
  2130. <move x="387" y="244"/>
  2131. <line x="390" y="242"/>
  2132. </path>
  2133. <stroke/>
  2134. <strokecolor color="#000000"/>
  2135. <strokewidth width="2"/>
  2136. <linejoin join="miter"/>
  2137. <path>
  2138. <move x="390" y="15"/>
  2139. <line x="380" y="5"/>
  2140. </path>
  2141. <stroke/>
  2142. <path>
  2143. <move x="390" y="5"/>
  2144. <line x="380" y="15"/>
  2145. </path>
  2146. <stroke/>
  2147. <fontsize size="14"/>
  2148. <fontstyle style="1"/>
  2149. <text str="Video Name" x="15" y="10" align="left" valign="middle"/>
  2150. </foreground>
  2151. </shape>
  2152. <shape name="Warning Icon" h="32" w="32" aspect="1">
  2153. <foreground>
  2154. <strokecolor color="#000000"/>
  2155. <strokecolor color="#000000"/>
  2156. <fillcolor color="#ffff00"/>
  2157. <linejoin join="round"/>
  2158. <path>
  2159. <move x="0" y="32"/>
  2160. <line x="16" y="0"/>
  2161. <line x="32" y="32"/>
  2162. <close/>
  2163. </path>
  2164. <fillstroke/>
  2165. <strokecolor color="none"/>
  2166. <fillcolor color="#000000"/>
  2167. <linejoin join="miter"/>
  2168. <ellipse x="14" y="25" w="4" h="4"/>
  2169. <fillstroke/>
  2170. <strokecolor color="#000000"/>
  2171. <strokewidth width="3.5"/>
  2172. <fillcolor color="none"/>
  2173. <linecap cap="round"/>
  2174. <path>
  2175. <move x="16" y="21"/>
  2176. <line x="16" y="11"/>
  2177. </path>
  2178. <stroke/>
  2179. </foreground>
  2180. </shape>
  2181. </shapes>