icons.xml 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481
  1. <shapes name="mxGraph.ios7.icons">
  2. <shape aspect="variable" h="100" name="Add" strokewidth="inherit" w="100">
  3. <connections/>
  4. <foreground>
  5. <ellipse h="100" w="100" x="0" y="0"/>
  6. <fillstroke/>
  7. <path>
  8. <move x="50" y="20"/>
  9. <line x="50" y="80"/>
  10. <move x="20" y="50"/>
  11. <line x="80" y="50"/>
  12. </path>
  13. <fillstroke/>
  14. </foreground>
  15. </shape>
  16. <shape aspect="variable" h="101.07" name="Alarm Clock" strokewidth="inherit" w="90">
  17. <connections/>
  18. <foreground>
  19. <ellipse h="90" w="90" x="0" y="11.07"/>
  20. <fillstroke/>
  21. <path>
  22. <move x="45" y="21.07"/>
  23. <line x="45" y="56.07"/>
  24. <line x="25" y="56.07"/>
  25. </path>
  26. <stroke/>
  27. <path>
  28. <move x="0" y="101.07"/>
  29. <line x="13" y="88.07"/>
  30. <move x="90" y="101.07"/>
  31. <line x="77" y="88.07"/>
  32. <move x="35" y="6.07"/>
  33. <line x="5" y="21.07"/>
  34. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="35" x-axis-rotation="0" y="6.07"/>
  35. <close/>
  36. <move x="55" y="6.07"/>
  37. <line x="85" y="21.07"/>
  38. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="55" x-axis-rotation="0" y="6.07"/>
  39. <close/>
  40. </path>
  41. <fillstroke/>
  42. </foreground>
  43. </shape>
  44. <shape aspect="variable" h="85" name="Back" strokewidth="inherit" w="100.1">
  45. <connections/>
  46. <foreground>
  47. <path>
  48. <move x="0" y="30"/>
  49. <line x="40" y="0"/>
  50. <line x="40" y="20"/>
  51. <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="100" x-axis-rotation="0" y="85"/>
  52. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="40" x-axis-rotation="0" y="45"/>
  53. <line x="40" y="65"/>
  54. <close/>
  55. </path>
  56. <fillstroke/>
  57. </foreground>
  58. </shape>
  59. <shape aspect="variable" h="56" name="Backward" strokewidth="inherit" w="100">
  60. <connections/>
  61. <foreground>
  62. <path>
  63. <move x="50" y="0"/>
  64. <line x="0" y="28"/>
  65. <line x="50" y="56"/>
  66. <close/>
  67. <move x="100" y="0"/>
  68. <line x="50" y="28"/>
  69. <line x="100" y="56"/>
  70. <close/>
  71. </path>
  72. <fillstroke/>
  73. </foreground>
  74. </shape>
  75. <shape aspect="variable" h="70" name="Bag" strokewidth="inherit" w="70">
  76. <connections/>
  77. <foreground>
  78. <rect h="70" w="70" x="0" y="0"/>
  79. <fillstroke/>
  80. <path>
  81. <move x="13" y="15"/>
  82. <line x="17" y="15"/>
  83. <move x="53" y="15"/>
  84. <line x="57" y="15"/>
  85. <move x="15" y="15"/>
  86. <line x="15" y="35"/>
  87. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="0" x="55" x-axis-rotation="0" y="35"/>
  88. <line x="55" y="15"/>
  89. </path>
  90. <stroke/>
  91. </foreground>
  92. </shape>
  93. <shape aspect="variable" h="100" name="Basketball" strokewidth="inherit" w="100">
  94. <connections/>
  95. <foreground>
  96. <ellipse h="100" w="100" x="0" y="0"/>
  97. <fillstroke/>
  98. <path>
  99. <move x="0" y="50"/>
  100. <line x="100" y="50"/>
  101. <move x="20" y="10"/>
  102. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="20" x-axis-rotation="0" y="90"/>
  103. <move x="80" y="10"/>
  104. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="80" x-axis-rotation="0" y="90"/>
  105. </path>
  106. <stroke/>
  107. </foreground>
  108. </shape>
  109. <shape aspect="variable" h="40" name="Basket Cancel" strokewidth="inherit" w="100">
  110. <connections/>
  111. <foreground>
  112. <path>
  113. <move x="0" y="0"/>
  114. <line x="100" y="0"/>
  115. <line x="95" y="10"/>
  116. <line x="91" y="10"/>
  117. <line x="81" y="40"/>
  118. <line x="19" y="40"/>
  119. <line x="9" y="10"/>
  120. <line x="5" y="10"/>
  121. <close/>
  122. </path>
  123. <fillstroke/>
  124. <path>
  125. <move x="9" y="10"/>
  126. <line x="91" y="10"/>
  127. <move x="40" y="15"/>
  128. <line x="60" y="35"/>
  129. <move x="60" y="15"/>
  130. <line x="40" y="35"/>
  131. </path>
  132. <fillstroke/>
  133. </foreground>
  134. </shape>
  135. <shape aspect="variable" h="40" name="Battery" strokewidth="inherit" w="100">
  136. <connections/>
  137. <foreground>
  138. <save/>
  139. <strokecolor color="none"/>
  140. <path>
  141. <move x="0" y="0"/>
  142. <line x="95" y="0"/>
  143. <line x="95" y="15"/>
  144. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="25"/>
  145. <line x="95" y="40"/>
  146. <line x="0" y="40"/>
  147. <close/>
  148. <close/>
  149. </path>
  150. <fill/>
  151. <restore/>
  152. <rect/>
  153. <stroke/>
  154. <fillcolor color="none"/>
  155. <path>
  156. <move x="0" y="0"/>
  157. <line x="45" y="0"/>
  158. <line x="45" y="40"/>
  159. <line x="0" y="40"/>
  160. <close/>
  161. <move x="50" y="0"/>
  162. <line x="95" y="0"/>
  163. <line x="95" y="40"/>
  164. <line x="50" y="40"/>
  165. <move x="95" y="15"/>
  166. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="25"/>
  167. </path>
  168. <stroke/>
  169. </foreground>
  170. </shape>
  171. <shape aspect="variable" h="77.34" name="Bell" strokewidth="inherit" w="80">
  172. <connections/>
  173. <foreground>
  174. <path>
  175. <move x="0" y="73"/>
  176. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="10" x-axis-rotation="0" y="63"/>
  177. <line x="10" y="33"/>
  178. <arc large-arc-flag="1" rx="30" ry="30" sweep-flag="1" x="70" x-axis-rotation="0" y="33"/>
  179. <line x="70" y="63"/>
  180. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="73"/>
  181. <close/>
  182. <move x="35" y="75"/>
  183. <line x="45" y="75"/>
  184. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="35" x-axis-rotation="0" y="75"/>
  185. <close/>
  186. </path>
  187. <fillstroke/>
  188. <fillcolor color="none"/>
  189. <path>
  190. <move x="37" y="3"/>
  191. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="43" x-axis-rotation="0" y="3"/>
  192. </path>
  193. <stroke/>
  194. </foreground>
  195. </shape>
  196. <shape aspect="variable" h="96" name="Bluetooth" strokewidth="inherit" w="50">
  197. <connections/>
  198. <foreground>
  199. <fillcolor color="none"/>
  200. <path>
  201. <move x="0" y="73"/>
  202. <line x="50" y="23"/>
  203. <line x="25" y="0"/>
  204. <line x="25" y="96"/>
  205. <line x="50" y="73"/>
  206. <line x="0" y="23"/>
  207. </path>
  208. <stroke/>
  209. </foreground>
  210. </shape>
  211. <shape aspect="variable" h="85" name="Book" strokewidth="inherit" w="100">
  212. <connections/>
  213. <foreground>
  214. <path>
  215. <move x="5" y="80"/>
  216. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="75"/>
  217. <line x="0" y="5"/>
  218. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  219. <line x="45" y="0"/>
  220. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="50" x-axis-rotation="0" y="5"/>
  221. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="55" x-axis-rotation="0" y="0"/>
  222. <line x="95" y="0"/>
  223. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  224. <line x="100" y="75"/>
  225. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="80"/>
  226. <close/>
  227. <move x="50" y="5"/>
  228. <line x="50" y="85"/>
  229. </path>
  230. <fillstroke/>
  231. </foreground>
  232. </shape>
  233. <shape aspect="variable" h="80" name="Bookmark" strokewidth="inherit" w="60">
  234. <connections/>
  235. <foreground>
  236. <path>
  237. <move x="0" y="0"/>
  238. <line x="60" y="0"/>
  239. <line x="60" y="80"/>
  240. <line x="30" y="55"/>
  241. <line x="0" y="80"/>
  242. <close/>
  243. <move x="10" y="20"/>
  244. <line x="50" y="20"/>
  245. <move x="10" y="35"/>
  246. <line x="50" y="35"/>
  247. </path>
  248. <fillstroke/>
  249. </foreground>
  250. </shape>
  251. <shape aspect="variable" h="90" name="Box" strokewidth="inherit" w="100">
  252. <connections/>
  253. <foreground>
  254. <path>
  255. <move x="0" y="0"/>
  256. <line x="100" y="0"/>
  257. <line x="100" y="15"/>
  258. <line x="95" y="15"/>
  259. <line x="95" y="90"/>
  260. <line x="5" y="90"/>
  261. <line x="5" y="15"/>
  262. <line x="0" y="15"/>
  263. <close/>
  264. </path>
  265. <fillstroke/>
  266. <path>
  267. <move x="5" y="15"/>
  268. <line x="95" y="15"/>
  269. <move x="75" y="25"/>
  270. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="75" x-axis-rotation="0" y="35"/>
  271. <line x="25" y="35"/>
  272. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="25" x-axis-rotation="0" y="25"/>
  273. <close/>
  274. </path>
  275. <stroke/>
  276. </foreground>
  277. </shape>
  278. <shape aspect="variable" h="67" name="Briefcase" strokewidth="inherit" w="100">
  279. <connections/>
  280. <foreground>
  281. <rect h="60" w="100" x="0" y="7"/>
  282. <fillstroke/>
  283. <rect h="10" w="20" x="40" y="32"/>
  284. <stroke/>
  285. <path>
  286. <move x="0" y="37"/>
  287. <line x="40" y="37"/>
  288. <move x="60" y="37"/>
  289. <line x="100" y="37"/>
  290. <move x="40" y="7"/>
  291. <line x="40" y="0"/>
  292. <line x="60" y="0"/>
  293. <line x="60" y="7"/>
  294. </path>
  295. <stroke/>
  296. </foreground>
  297. </shape>
  298. <shape aspect="variable" h="100" name="Calculator" strokewidth="inherit" w="80">
  299. <connections/>
  300. <foreground>
  301. <roundrect arcsize="6.25" h="100" w="80" x="0" y="0"/>
  302. <fillstroke/>
  303. <rect h="15" w="70" x="5" y="5"/>
  304. <stroke/>
  305. <path>
  306. <move x="5" y="75"/>
  307. <line x="5" y="95"/>
  308. <line x="25" y="95"/>
  309. <move x="5" y="50"/>
  310. <line x="5" y="70"/>
  311. <line x="25" y="70"/>
  312. <move x="5" y="25"/>
  313. <line x="5" y="45"/>
  314. <line x="25" y="45"/>
  315. <move x="30" y="25"/>
  316. <line x="30" y="45"/>
  317. <line x="50" y="45"/>
  318. <move x="55" y="25"/>
  319. <line x="55" y="45"/>
  320. <line x="75" y="45"/>
  321. <move x="30" y="50"/>
  322. <line x="30" y="70"/>
  323. <line x="50" y="70"/>
  324. <move x="30" y="75"/>
  325. <line x="30" y="95"/>
  326. <line x="50" y="95"/>
  327. <move x="55" y="50"/>
  328. <line x="55" y="95"/>
  329. <line x="75" y="95"/>
  330. </path>
  331. <stroke/>
  332. </foreground>
  333. </shape>
  334. <shape aspect="variable" h="100" name="Calendar" strokewidth="inherit" w="100">
  335. <connections/>
  336. <foreground>
  337. <save/>
  338. <rect h="100" w="100" x="0" y="0"/>
  339. <fillstroke/>
  340. <path>
  341. <move x="0" y="20"/>
  342. <line x="100" y="20"/>
  343. </path>
  344. <stroke/>
  345. <ellipse h="4" w="4" x="28" y="8"/>
  346. <stroke/>
  347. <ellipse h="4" w="4" x="68" y="8"/>
  348. <stroke/>
  349. <restore/>
  350. <rect/>
  351. <stroke/>
  352. <fontsize size="20"/>
  353. <fontcolor color="#0080F0"/>
  354. <text str="15" align="center" valign="middle" x="50" y="50"/>
  355. </foreground>
  356. </shape>
  357. <shape aspect="variable" h="58" name="Camera" strokewidth="inherit" w="100">
  358. <connections/>
  359. <foreground>
  360. <path>
  361. <move x="5" y="58"/>
  362. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="53"/>
  363. <line x="0" y="13"/>
  364. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="8"/>
  365. <line x="30" y="8"/>
  366. <line x="40" y="0"/>
  367. <line x="60" y="0"/>
  368. <line x="70" y="8"/>
  369. <line x="95" y="8"/>
  370. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="13"/>
  371. <line x="100" y="53"/>
  372. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="58"/>
  373. <close/>
  374. </path>
  375. <fillstroke/>
  376. <ellipse h="44" w="44" x="28" y="8"/>
  377. <stroke/>
  378. <ellipse h="36" w="36" x="32" y="12"/>
  379. <stroke/>
  380. </foreground>
  381. </shape>
  382. <shape aspect="variable" h="60" name="Chat" strokewidth="inherit" w="100">
  383. <connections/>
  384. <foreground>
  385. <path>
  386. <move x="55" y="0"/>
  387. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="65" x-axis-rotation="0" y="10"/>
  388. <line x="65" y="30"/>
  389. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="55" x-axis-rotation="0" y="40"/>
  390. <line x="25" y="40"/>
  391. <line x="15" y="50"/>
  392. <line x="15" y="40"/>
  393. <line x="10" y="40"/>
  394. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="30"/>
  395. <line x="0" y="10"/>
  396. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  397. <close/>
  398. </path>
  399. <fillstroke/>
  400. <path>
  401. <move x="90" y="10"/>
  402. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  403. <line x="100" y="40"/>
  404. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="90" x-axis-rotation="0" y="50"/>
  405. <line x="85" y="50"/>
  406. <line x="85" y="60"/>
  407. <line x="75" y="50"/>
  408. <line x="45" y="50"/>
  409. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="35" x-axis-rotation="0" y="40"/>
  410. <line x="35" y="20"/>
  411. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="45" x-axis-rotation="0" y="10"/>
  412. <close/>
  413. </path>
  414. <fillstroke/>
  415. </foreground>
  416. </shape>
  417. <shape aspect="variable" h="100" name="Clock" strokewidth="inherit" w="100">
  418. <connections/>
  419. <foreground>
  420. <ellipse h="100" w="100" x="0" y="0"/>
  421. <fillstroke/>
  422. <path>
  423. <move x="50" y="5"/>
  424. <line x="50" y="50"/>
  425. <line x="25" y="50"/>
  426. </path>
  427. <stroke/>
  428. </foreground>
  429. </shape>
  430. <shape aspect="variable" h="48.51" name="Cloud" strokewidth="inherit" w="92.1">
  431. <connections/>
  432. <foreground>
  433. <path>
  434. <move x="80.28" y="48.51"/>
  435. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="77.28" x-axis-rotation="0" y="23.51"/>
  436. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="35.28" x-axis-rotation="0" y="14.51"/>
  437. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="14.28" x-axis-rotation="0" y="21.51"/>
  438. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="0" x="13.28" x-axis-rotation="0" y="48.51"/>
  439. <close/>
  440. </path>
  441. <fillstroke/>
  442. </foreground>
  443. </shape>
  444. <shape aspect="variable" h="97" name="Compose" strokewidth="inherit" w="97">
  445. <connections/>
  446. <foreground>
  447. <rect h="80" w="80" x="0" y="17"/>
  448. <fillstroke/>
  449. <path>
  450. <move x="97" y="5"/>
  451. <line x="33" y="70"/>
  452. <line x="25" y="72"/>
  453. <line x="27" y="64"/>
  454. <line x="92" y="0"/>
  455. <close/>
  456. </path>
  457. <fillstroke/>
  458. </foreground>
  459. </shape>
  460. <shape aspect="variable" h="80" name="Controls" strokewidth="inherit" w="90">
  461. <connections/>
  462. <foreground>
  463. <save/>
  464. <path>
  465. <move x="75" y="0"/>
  466. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="75" x-axis-rotation="0" y="30"/>
  467. <line x="15" y="30"/>
  468. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="15" x-axis-rotation="0" y="0"/>
  469. <close/>
  470. </path>
  471. <fillstroke/>
  472. <fillcolor color="#0080F0"/>
  473. <path>
  474. <move x="75" y="50"/>
  475. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="75" x-axis-rotation="0" y="80"/>
  476. <line x="15" y="80"/>
  477. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="15" x-axis-rotation="0" y="50"/>
  478. <close/>
  479. </path>
  480. <fillstroke/>
  481. <ellipse h="24" w="24" x="3" y="3"/>
  482. <fill/>
  483. <restore/>
  484. <rect/>
  485. <stroke/>
  486. <ellipse h="24" w="24" x="63" y="53"/>
  487. <fill/>
  488. </foreground>
  489. </shape>
  490. <shape aspect="variable" h="50" name="Credit Card" strokewidth="inherit" w="100">
  491. <connections/>
  492. <foreground>
  493. <roundrect arcsize="10" h="50" w="100" x="0" y="0"/>
  494. <fillstroke/>
  495. <path>
  496. <move x="0" y="10"/>
  497. <line x="100" y="10"/>
  498. <move x="0" y="20"/>
  499. <line x="100" y="20"/>
  500. <move x="5" y="30"/>
  501. <line x="30" y="30"/>
  502. <move x="5" y="40"/>
  503. <line x="60" y="40"/>
  504. <move x="85" y="40"/>
  505. <line x="95" y="40"/>
  506. </path>
  507. <fillstroke/>
  508. </foreground>
  509. </shape>
  510. <shape aspect="variable" h="100" name="Crop" strokewidth="inherit" w="100">
  511. <connections/>
  512. <foreground>
  513. <rect h="80" w="80" x="10" y="10"/>
  514. <fillstroke/>
  515. <path>
  516. <move x="10" y="0"/>
  517. <line x="10" y="10"/>
  518. <line x="0" y="10"/>
  519. <move x="100" y="90"/>
  520. <line x="90" y="90"/>
  521. <line x="90" y="100"/>
  522. <move x="10" y="90"/>
  523. <line x="100" y="0"/>
  524. </path>
  525. <stroke/>
  526. </foreground>
  527. </shape>
  528. <shape aspect="variable" h="100" name="Cube" strokewidth="inherit" w="100">
  529. <connections/>
  530. <foreground>
  531. <path>
  532. <move x="0" y="20"/>
  533. <line x="50" y="0"/>
  534. <line x="100" y="20"/>
  535. <line x="100" y="80"/>
  536. <line x="50" y="100"/>
  537. <line x="0" y="80"/>
  538. <close/>
  539. </path>
  540. <fillstroke/>
  541. <path>
  542. <move x="0" y="20"/>
  543. <line x="50" y="40"/>
  544. <line x="100" y="20"/>
  545. <move x="50" y="40"/>
  546. <line x="50" y="100"/>
  547. </path>
  548. <stroke/>
  549. </foreground>
  550. </shape>
  551. <shape aspect="variable" h="85" name="Cup" strokewidth="inherit" w="80">
  552. <connections/>
  553. <foreground>
  554. <path>
  555. <move x="0" y="25"/>
  556. <line x="70" y="25"/>
  557. <line x="70" y="50"/>
  558. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
  559. <close/>
  560. </path>
  561. <fillstroke/>
  562. <path>
  563. <move x="0" y="85"/>
  564. <line x="70" y="85"/>
  565. <move x="35" y="0"/>
  566. <line x="35" y="20"/>
  567. <move x="20" y="10"/>
  568. <line x="20" y="20"/>
  569. <move x="50" y="10"/>
  570. <line x="50" y="20"/>
  571. </path>
  572. <fillstroke/>
  573. <path>
  574. <move x="70" y="25"/>
  575. <line x="80" y="25"/>
  576. <line x="80" y="45"/>
  577. <line x="70" y="45"/>
  578. </path>
  579. <stroke/>
  580. </foreground>
  581. </shape>
  582. <shape aspect="variable" h="96.67" name="Data" strokewidth="inherit" w="80">
  583. <connections/>
  584. <foreground>
  585. <path>
  586. <move x="0" y="13.33"/>
  587. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="1" x="80" x-axis-rotation="0" y="13.33"/>
  588. <line x="80" y="83.33"/>
  589. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="83.33"/>
  590. <close/>
  591. </path>
  592. <fillstroke/>
  593. <path>
  594. <move x="0" y="13.33"/>
  595. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="13.33"/>
  596. <move x="0" y="35.33"/>
  597. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="35.33"/>
  598. <move x="0" y="60.33"/>
  599. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="60.33"/>
  600. </path>
  601. <stroke/>
  602. </foreground>
  603. </shape>
  604. <shape aspect="variable" h="100" name="Delete" strokewidth="inherit" w="100">
  605. <connections/>
  606. <foreground>
  607. <ellipse h="100" w="100" x="0" y="0"/>
  608. <fillstroke/>
  609. <path>
  610. <move x="20" y="50"/>
  611. <line x="80" y="50"/>
  612. </path>
  613. <fillstroke/>
  614. </foreground>
  615. </shape>
  616. <shape aspect="variable" h="100" name="Document" strokewidth="inherit" w="70">
  617. <connections/>
  618. <foreground>
  619. <path>
  620. <move x="0" y="0"/>
  621. <line x="50" y="0"/>
  622. <line x="70" y="20"/>
  623. <line x="70" y="100"/>
  624. <line x="0" y="100"/>
  625. <close/>
  626. </path>
  627. <fillstroke/>
  628. <path>
  629. <move x="50" y="0"/>
  630. <line x="50" y="20"/>
  631. <line x="70" y="20"/>
  632. </path>
  633. <stroke/>
  634. </foreground>
  635. </shape>
  636. <shape aspect="variable" h="100" name="Documents" strokewidth="inherit" w="75">
  637. <connections/>
  638. <foreground>
  639. <path>
  640. <move x="0" y="10"/>
  641. <line x="15" y="10"/>
  642. <line x="15" y="0"/>
  643. <line x="60" y="0"/>
  644. <line x="75" y="15"/>
  645. <line x="75" y="90"/>
  646. <line x="60" y="90"/>
  647. <line x="60" y="100"/>
  648. <line x="0" y="100"/>
  649. <close/>
  650. </path>
  651. <fillstroke/>
  652. <path>
  653. <move x="60" y="0"/>
  654. <line x="60" y="15"/>
  655. <line x="75" y="15"/>
  656. <move x="45" y="10"/>
  657. <line x="45" y="25"/>
  658. <line x="60" y="25"/>
  659. <move x="15" y="10"/>
  660. <line x="45" y="10"/>
  661. <line x="60" y="25"/>
  662. <line x="60" y="90"/>
  663. </path>
  664. <stroke/>
  665. </foreground>
  666. </shape>
  667. <shape aspect="variable" h="85" name="Down" strokewidth="inherit" w="70">
  668. <connections/>
  669. <foreground>
  670. <path>
  671. <move x="45" y="15"/>
  672. <line x="70" y="15"/>
  673. <line x="70" y="85"/>
  674. <line x="0" y="85"/>
  675. <line x="0" y="15"/>
  676. <line x="25" y="15"/>
  677. </path>
  678. <fillstroke/>
  679. <path>
  680. <move x="15" y="40"/>
  681. <line x="35" y="60"/>
  682. <line x="55" y="40"/>
  683. <move x="35" y="0"/>
  684. <line x="35" y="60"/>
  685. </path>
  686. <stroke/>
  687. </foreground>
  688. </shape>
  689. <shape aspect="variable" h="98.38" name="Edit" strokewidth="inherit" w="98.38">
  690. <connections/>
  691. <foreground>
  692. <rect h="90" w="90" x="0" y="8.38"/>
  693. <fillstroke/>
  694. <path>
  695. <move x="92" y="1.38"/>
  696. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="97" x-axis-rotation="0" y="6.38"/>
  697. <line x="35" y="68.38"/>
  698. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="30" x-axis-rotation="0" y="63.38"/>
  699. <close/>
  700. </path>
  701. <fillstroke/>
  702. </foreground>
  703. </shape>
  704. <shape aspect="variable" h="100" name="Envelope (Empty)" strokewidth="inherit" w="100">
  705. <connections/>
  706. <foreground>
  707. <path>
  708. <move x="0" y="100"/>
  709. <line x="0" y="45"/>
  710. <line x="50" y="0"/>
  711. <line x="100" y="45"/>
  712. <line x="100" y="100"/>
  713. <close/>
  714. </path>
  715. <fillstroke/>
  716. <path>
  717. <move x="0" y="100"/>
  718. <line x="50" y="55"/>
  719. <line x="100" y="100"/>
  720. <move x="0" y="45"/>
  721. <line x="30.5" y="72.5"/>
  722. <move x="100" y="45"/>
  723. <line x="69.5" y="72.5"/>
  724. </path>
  725. <stroke/>
  726. </foreground>
  727. </shape>
  728. <shape aspect="variable" h="100" name="Envelope (Message)" strokewidth="inherit" w="100">
  729. <connections/>
  730. <foreground>
  731. <path>
  732. <move x="0" y="100"/>
  733. <line x="0" y="45"/>
  734. <line x="50" y="0"/>
  735. <line x="100" y="45"/>
  736. <line x="100" y="100"/>
  737. <close/>
  738. </path>
  739. <fillstroke/>
  740. <path>
  741. <move x="25" y="67.5"/>
  742. <line x="25" y="15"/>
  743. <line x="66.5" y="15"/>
  744. <line x="75" y="22.5"/>
  745. <line x="75" y="67.5"/>
  746. <line x="50" y="90"/>
  747. <close/>
  748. </path>
  749. <fillstroke/>
  750. <path>
  751. <move x="0" y="100"/>
  752. <line x="50" y="55"/>
  753. <line x="100" y="100"/>
  754. </path>
  755. <fillstroke/>
  756. <path>
  757. <move x="0" y="45"/>
  758. <line x="30.5" y="72.5"/>
  759. <move x="100" y="45"/>
  760. <line x="69.5" y="72.5"/>
  761. <move x="35" y="25"/>
  762. <line x="65" y="25"/>
  763. <move x="35" y="37"/>
  764. <line x="50" y="37"/>
  765. <move x="35" y="49"/>
  766. <line x="65" y="49"/>
  767. </path>
  768. <stroke/>
  769. </foreground>
  770. </shape>
  771. <shape aspect="variable" h="46.93" name="Eye" strokewidth="inherit" w="100">
  772. <connections/>
  773. <foreground>
  774. <path>
  775. <move x="0" y="23.47"/>
  776. <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="100" x-axis-rotation="0" y="23.47"/>
  777. <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="0" x-axis-rotation="0" y="23.47"/>
  778. <close/>
  779. </path>
  780. <fillstroke/>
  781. <ellipse h="36" w="36" x="32" y="5.47"/>
  782. <fillstroke/>
  783. <ellipse h="24" w="24" x="38" y="11.47"/>
  784. <fillstroke/>
  785. </foreground>
  786. </shape>
  787. <shape aspect="variable" h="100.72" name="Flag" strokewidth="inherit" w="100">
  788. <connections/>
  789. <foreground>
  790. <path>
  791. <move x="0" y="5.72"/>
  792. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="1" x="50" x-axis-rotation="0" y="5.72"/>
  793. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="0" x="100" x-axis-rotation="0" y="5.72"/>
  794. <line x="100" y="50.72"/>
  795. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="1" x="50" x-axis-rotation="0" y="50.72"/>
  796. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="0" x="0" x-axis-rotation="0" y="50.72"/>
  797. <line x="0" y="100.72"/>
  798. <close/>
  799. </path>
  800. <fillstroke/>
  801. </foreground>
  802. </shape>
  803. <shape aspect="variable" h="100" name="Flash" strokewidth="inherit" w="60">
  804. <connections/>
  805. <foreground>
  806. <path>
  807. <move x="0" y="50"/>
  808. <line x="35" y="0"/>
  809. <line x="35" y="50"/>
  810. <line x="60" y="50"/>
  811. <line x="25" y="100"/>
  812. <line x="25" y="50"/>
  813. <close/>
  814. </path>
  815. <fillstroke/>
  816. </foreground>
  817. </shape>
  818. <shape aspect="variable" h="100" name="Flashlight" strokewidth="inherit" w="50">
  819. <connections/>
  820. <foreground>
  821. <path>
  822. <move x="0" y="0"/>
  823. <line x="50" y="0"/>
  824. <line x="50" y="10"/>
  825. <line x="35" y="35"/>
  826. <line x="35" y="100"/>
  827. <line x="15" y="100"/>
  828. <line x="15" y="35"/>
  829. <line x="0" y="10"/>
  830. <close/>
  831. </path>
  832. <fillstroke/>
  833. <path>
  834. <move x="0" y="10"/>
  835. <line x="50" y="10"/>
  836. <move x="15" y="95"/>
  837. <line x="35" y="95"/>
  838. </path>
  839. <stroke/>
  840. <ellipse h="6" w="4" x="23" y="42"/>
  841. <stroke/>
  842. </foreground>
  843. </shape>
  844. <shape aspect="variable" h="65" name="Folder" strokewidth="inherit" w="100">
  845. <connections/>
  846. <foreground>
  847. <path>
  848. <move x="0" y="5"/>
  849. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  850. <line x="15" y="0"/>
  851. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="20" x-axis-rotation="0" y="5"/>
  852. <line x="95" y="5"/>
  853. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
  854. <line x="100" y="60"/>
  855. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="65"/>
  856. <line x="5" y="65"/>
  857. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="60"/>
  858. <close/>
  859. <move x="0" y="10"/>
  860. <line x="100" y="10"/>
  861. </path>
  862. <fillstroke/>
  863. </foreground>
  864. </shape>
  865. <shape aspect="variable" h="85" name="Folders" strokewidth="inherit" w="100">
  866. <connections/>
  867. <foreground>
  868. <rect h="75" w="100" x="0" y="10"/>
  869. <fillstroke/>
  870. <path>
  871. <move x="5" y="5"/>
  872. <line x="95" y="5"/>
  873. <move x="10" y="0"/>
  874. <line x="90" y="0"/>
  875. </path>
  876. <fillstroke/>
  877. </foreground>
  878. </shape>
  879. <shape aspect="variable" h="75" name="Folders 2" strokewidth="inherit" w="100">
  880. <connections/>
  881. <foreground>
  882. <path>
  883. <move x="0" y="0"/>
  884. <line x="90" y="0"/>
  885. <line x="90" y="10"/>
  886. <line x="100" y="10"/>
  887. <line x="100" y="75"/>
  888. <line x="10" y="75"/>
  889. <line x="10" y="65"/>
  890. <line x="0" y="65"/>
  891. <close/>
  892. </path>
  893. <fillstroke/>
  894. <path>
  895. <move x="10" y="65"/>
  896. <line x="10" y="10"/>
  897. <line x="90" y="10"/>
  898. </path>
  899. <stroke/>
  900. </foreground>
  901. </shape>
  902. <shape aspect="variable" h="56" name="Forward" strokewidth="inherit" w="100">
  903. <connections/>
  904. <foreground>
  905. <path>
  906. <move x="0" y="0"/>
  907. <line x="50" y="28"/>
  908. <line x="0" y="56"/>
  909. <close/>
  910. <move x="50" y="0"/>
  911. <line x="100" y="28"/>
  912. <line x="50" y="56"/>
  913. <close/>
  914. </path>
  915. <fillstroke/>
  916. </foreground>
  917. </shape>
  918. <shape aspect="variable" h="105.49" name="Gauge" strokewidth="inherit" w="108.56">
  919. <connections/>
  920. <foreground>
  921. <ellipse h="100" w="100" x="4.48" y="0.15"/>
  922. <fill/>
  923. <path>
  924. <move x="54.48" y="10.15"/>
  925. <line x="54.48" y="0.15"/>
  926. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="1" x="19.28" x-axis-rotation="0" y="14.95"/>
  927. </path>
  928. <stroke/>
  929. <linejoin join="round"/>
  930. <path>
  931. <move x="24.48" y="20.15"/>
  932. <line x="55.48" y="49.15"/>
  933. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="53.48" x-axis-rotation="0" y="51.15"/>
  934. <close/>
  935. </path>
  936. <stroke/>
  937. </foreground>
  938. </shape>
  939. <shape aspect="variable" h="40" name="Glasses" strokewidth="inherit" w="100">
  940. <connections/>
  941. <foreground>
  942. <ellipse h="40" w="40" x="5" y="0"/>
  943. <fillstroke/>
  944. <ellipse h="40" w="40" x="55" y="0"/>
  945. <fillstroke/>
  946. <path>
  947. <move x="0" y="20"/>
  948. <line x="5" y="20"/>
  949. <move x="95" y="20"/>
  950. <line x="100" y="20"/>
  951. <move x="45" y="19"/>
  952. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="55" x-axis-rotation="0" y="19"/>
  953. </path>
  954. <stroke/>
  955. </foreground>
  956. </shape>
  957. <shape aspect="variable" h="100" name="Globe" strokewidth="inherit" w="100">
  958. <connections/>
  959. <foreground>
  960. <ellipse h="100" w="100" x="0" y="0"/>
  961. <fillstroke/>
  962. <path>
  963. <move x="50" y="0"/>
  964. <line x="50" y="100"/>
  965. <move x="100" y="50"/>
  966. <line x="0" y="50"/>
  967. <move x="50" y="0"/>
  968. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
  969. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
  970. <close/>
  971. <move x="15" y="85"/>
  972. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="85" x-axis-rotation="0" y="85"/>
  973. <move x="15" y="15"/>
  974. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="85" x-axis-rotation="0" y="15"/>
  975. </path>
  976. <stroke/>
  977. </foreground>
  978. </shape>
  979. <shape aspect="variable" h="91.05" name="Heart" strokewidth="inherit" w="102.09">
  980. <connections/>
  981. <foreground>
  982. <path>
  983. <move x="11.05" y="51.05"/>
  984. <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="51.05" x-axis-rotation="0" y="11.05"/>
  985. <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="91.05" x-axis-rotation="0" y="51.05"/>
  986. <line x="51.05" y="91.05"/>
  987. <close/>
  988. <close/>
  989. </path>
  990. <fillstroke/>
  991. </foreground>
  992. </shape>
  993. <shape aspect="variable" h="100" name="Help" strokewidth="inherit" w="100">
  994. <connections/>
  995. <foreground>
  996. <ellipse h="100" w="100" x="0" y="0"/>
  997. <fillstroke/>
  998. <ellipse h="3" w="3" x="48.5" y="73.5"/>
  999. <fillstroke/>
  1000. <path>
  1001. <move x="35" y="35"/>
  1002. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="65" x-axis-rotation="0" y="35"/>
  1003. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="57" x-axis-rotation="0" y="51"/>
  1004. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="50" x-axis-rotation="0" y="70"/>
  1005. </path>
  1006. <stroke/>
  1007. </foreground>
  1008. </shape>
  1009. <shape aspect="variable" h="85" name="Home" strokewidth="inherit" w="80">
  1010. <connections/>
  1011. <foreground>
  1012. <path>
  1013. <move x="5" y="85"/>
  1014. <line x="5" y="35"/>
  1015. <line x="40" y="5"/>
  1016. <line x="75" y="35"/>
  1017. <line x="75" y="85"/>
  1018. <line x="50" y="85"/>
  1019. <line x="50" y="60"/>
  1020. <line x="30" y="60"/>
  1021. <line x="30" y="85"/>
  1022. <close/>
  1023. </path>
  1024. <fillstroke/>
  1025. <path>
  1026. <move x="14" y="23"/>
  1027. <line x="14" y="10"/>
  1028. <line x="20" y="10"/>
  1029. <line x="20" y="18"/>
  1030. </path>
  1031. <fillstroke/>
  1032. <path>
  1033. <move x="0" y="35"/>
  1034. <line x="40" y="0"/>
  1035. <line x="80" y="35"/>
  1036. </path>
  1037. <stroke/>
  1038. </foreground>
  1039. </shape>
  1040. <shape aspect="variable" h="100" name="Info" strokewidth="inherit" w="100">
  1041. <connections/>
  1042. <foreground>
  1043. <ellipse h="100" w="100" x="0" y="0"/>
  1044. <fillstroke/>
  1045. <path>
  1046. <move x="42" y="35"/>
  1047. <line x="55" y="35"/>
  1048. <line x="55" y="80"/>
  1049. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="58" x-axis-rotation="0" y="83"/>
  1050. <line x="42" y="83"/>
  1051. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="45" x-axis-rotation="0" y="80"/>
  1052. <line x="45" y="38"/>
  1053. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="42" x-axis-rotation="0" y="35"/>
  1054. </path>
  1055. <stroke/>
  1056. <ellipse h="10" w="10" x="45" y="20"/>
  1057. <stroke/>
  1058. </foreground>
  1059. </shape>
  1060. <shape aspect="variable" h="100" name="Keypad" strokewidth="inherit" w="100">
  1061. <connections/>
  1062. <foreground>
  1063. <ellipse h="28" w="28" x="0" y="0"/>
  1064. <fillstroke/>
  1065. <ellipse h="28" w="28" x="36" y="0"/>
  1066. <fillstroke/>
  1067. <ellipse h="28" w="28" x="72" y="0"/>
  1068. <fillstroke/>
  1069. <ellipse h="28" w="28" x="0" y="36"/>
  1070. <fillstroke/>
  1071. <ellipse h="28" w="28" x="36" y="36"/>
  1072. <fillstroke/>
  1073. <ellipse h="28" w="28" x="72" y="36"/>
  1074. <fillstroke/>
  1075. <ellipse h="28" w="28" x="0" y="72"/>
  1076. <fillstroke/>
  1077. <ellipse h="28" w="28" x="36" y="72"/>
  1078. <fillstroke/>
  1079. <ellipse h="28" w="28" x="72" y="72"/>
  1080. <fillstroke/>
  1081. </foreground>
  1082. </shape>
  1083. <shape aspect="variable" h="98.72" name="Lightbulb" strokewidth="inherit" w="75.95">
  1084. <connections/>
  1085. <foreground>
  1086. <path>
  1087. <move x="27.97" y="98.72"/>
  1088. <line x="27.97" y="83.72"/>
  1089. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="17.97" x-axis-rotation="0" y="63.72"/>
  1090. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="57.97" x-axis-rotation="0" y="63.72"/>
  1091. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="47.97" x-axis-rotation="0" y="83.72"/>
  1092. <line x="47.97" y="98.72"/>
  1093. <close/>
  1094. </path>
  1095. <fillstroke/>
  1096. <path>
  1097. <move x="37.97" y="41.72"/>
  1098. <line x="37.97" y="88.72"/>
  1099. <move x="27.97" y="88.72"/>
  1100. <line x="47.97" y="88.72"/>
  1101. </path>
  1102. <fillstroke/>
  1103. <ellipse h="6" w="6" x="34.97" y="35.72"/>
  1104. <stroke/>
  1105. </foreground>
  1106. </shape>
  1107. <shape aspect="variable" h="100.68" name="Link" strokewidth="inherit" w="100.42">
  1108. <connections/>
  1109. <foreground>
  1110. <path>
  1111. <move x="54.25" y="71.17"/>
  1112. <line x="28.25" y="97.17"/>
  1113. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="13.25" x-axis-rotation="0" y="97.17"/>
  1114. <line x="3.25" y="87.17"/>
  1115. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="3.25" x-axis-rotation="0" y="72.67"/>
  1116. <line x="38.25" y="37.57"/>
  1117. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="52.75" x-axis-rotation="0" y="37.67"/>
  1118. <line x="63.45" y="48.67"/>
  1119. <move x="50.25" y="64.67"/>
  1120. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="63.85" x-axis-rotation="0" y="61.37"/>
  1121. <line x="96.75" y="28.17"/>
  1122. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="95.25" x-axis-rotation="0" y="12.17"/>
  1123. <line x="86.25" y="3.17"/>
  1124. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="71.25" x-axis-rotation="0" y="4.37"/>
  1125. <line x="47.25" y="28.17"/>
  1126. </path>
  1127. <stroke/>
  1128. </foreground>
  1129. </shape>
  1130. <shape aspect="variable" h="100.87" name="Location" strokewidth="inherit" w="79.94">
  1131. <connections/>
  1132. <foreground>
  1133. <path>
  1134. <move x="39.97" y="100.87"/>
  1135. <line x="9.97" y="58.87"/>
  1136. <arc large-arc-flag="1" rx="36" ry="36" sweep-flag="1" x="69.97" x-axis-rotation="0" y="58.87"/>
  1137. <close/>
  1138. </path>
  1139. <fillstroke/>
  1140. <ellipse h="16" w="16" x="31.97" y="30.87"/>
  1141. <stroke/>
  1142. </foreground>
  1143. </shape>
  1144. <shape aspect="variable" h="100" name="Location 2" strokewidth="inherit" w="100">
  1145. <connections/>
  1146. <foreground>
  1147. <ellipse h="100" w="100" x="0" y="0"/>
  1148. <fillstroke/>
  1149. <fillcolor color="#0080F0"/>
  1150. <path>
  1151. <move x="15" y="55"/>
  1152. <line x="75" y="25"/>
  1153. <line x="45" y="85"/>
  1154. <line x="45" y="55"/>
  1155. <close/>
  1156. </path>
  1157. <fill/>
  1158. </foreground>
  1159. </shape>
  1160. <shape aspect="variable" h="100" name="Locked" strokewidth="inherit" w="80">
  1161. <connections/>
  1162. <foreground>
  1163. <rect h="50" w="80" x="0" y="50"/>
  1164. <fillstroke/>
  1165. <path>
  1166. <move x="10" y="50"/>
  1167. <line x="10" y="30"/>
  1168. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="30"/>
  1169. <line x="70" y="50"/>
  1170. </path>
  1171. <stroke/>
  1172. </foreground>
  1173. </shape>
  1174. <shape aspect="variable" h="100" name="Looking Glass" strokewidth="inherit" w="100">
  1175. <connections/>
  1176. <foreground>
  1177. <ellipse h="80" w="80" x="0" y="0"/>
  1178. <fillstroke/>
  1179. <path>
  1180. <move x="68" y="68"/>
  1181. <line x="100" y="100"/>
  1182. </path>
  1183. <fillstroke/>
  1184. </foreground>
  1185. </shape>
  1186. <shape aspect="variable" h="108.5" name="Loud" strokewidth="inherit" w="102.32">
  1187. <connections/>
  1188. <foreground>
  1189. <ellipse h="100" w="100" x="0" y="4.25"/>
  1190. <fill/>
  1191. <path>
  1192. <move x="37.5" y="44.25"/>
  1193. <line x="54" y="44.25"/>
  1194. <line x="62" y="34.25"/>
  1195. <line x="62" y="74.25"/>
  1196. <line x="54" y="64.25"/>
  1197. <line x="37.5" y="64.25"/>
  1198. <close/>
  1199. <move x="76" y="39.25"/>
  1200. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="76" x-axis-rotation="0" y="69.25"/>
  1201. <move x="84" y="33.25"/>
  1202. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="84" x-axis-rotation="0" y="75.25"/>
  1203. <move x="93" y="28.75"/>
  1204. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="93" x-axis-rotation="0" y="79.75"/>
  1205. <move x="91" y="25.25"/>
  1206. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="0" x="91" x-axis-rotation="0" y="83.25"/>
  1207. </path>
  1208. <stroke/>
  1209. </foreground>
  1210. </shape>
  1211. <shape aspect="variable" h="100" name="Magnet" strokewidth="inherit" w="80">
  1212. <connections/>
  1213. <foreground>
  1214. <path>
  1215. <move x="15" y="0"/>
  1216. <line x="15" y="60"/>
  1217. <arc large-arc-flag="1" rx="25" ry="25" sweep-flag="0" x="65" x-axis-rotation="0" y="60"/>
  1218. <line x="65" y="0"/>
  1219. <line x="80" y="0"/>
  1220. <line x="80" y="60"/>
  1221. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="0" x-axis-rotation="0" y="60"/>
  1222. <line x="0" y="0"/>
  1223. <close/>
  1224. <move x="0" y="10"/>
  1225. <line x="15" y="10"/>
  1226. <move x="65" y="10"/>
  1227. <line x="80" y="10"/>
  1228. </path>
  1229. <fillstroke/>
  1230. </foreground>
  1231. </shape>
  1232. <shape aspect="variable" h="55" name="Mail" strokewidth="inherit" w="100">
  1233. <connections/>
  1234. <foreground>
  1235. <rect h="55" w="100" x="0" y="0"/>
  1236. <fillstroke/>
  1237. <path>
  1238. <move x="0" y="0"/>
  1239. <line x="50" y="45"/>
  1240. <line x="100" y="0"/>
  1241. <move x="0" y="55"/>
  1242. <line x="31" y="27.5"/>
  1243. <move x="100" y="55"/>
  1244. <line x="69" y="27.5"/>
  1245. </path>
  1246. <stroke/>
  1247. </foreground>
  1248. </shape>
  1249. <shape aspect="variable" h="100" name="Map" strokewidth="inherit" w="100">
  1250. <connections/>
  1251. <foreground>
  1252. <path>
  1253. <move x="0" y="15"/>
  1254. <line x="25" y="0"/>
  1255. <line x="50" y="15"/>
  1256. <line x="75" y="0"/>
  1257. <line x="100" y="15"/>
  1258. <line x="100" y="100"/>
  1259. <line x="75" y="85"/>
  1260. <line x="50" y="100"/>
  1261. <line x="25" y="85"/>
  1262. <line x="0" y="100"/>
  1263. <close/>
  1264. </path>
  1265. <fillstroke/>
  1266. <path>
  1267. <move x="50" y="15"/>
  1268. <line x="50" y="100"/>
  1269. <move x="25" y="0"/>
  1270. <line x="25" y="85"/>
  1271. <move x="75" y="0"/>
  1272. <line x="75" y="85"/>
  1273. </path>
  1274. <stroke/>
  1275. </foreground>
  1276. </shape>
  1277. <shape aspect="variable" h="65" name="Message" strokewidth="inherit" w="100">
  1278. <connections/>
  1279. <foreground>
  1280. <path>
  1281. <move x="0" y="5"/>
  1282. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1283. <line x="95" y="0"/>
  1284. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  1285. <line x="100" y="50"/>
  1286. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="55"/>
  1287. <line x="90" y="55"/>
  1288. <line x="90" y="65"/>
  1289. <line x="80" y="55"/>
  1290. <line x="5" y="55"/>
  1291. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
  1292. <close/>
  1293. </path>
  1294. <fillstroke/>
  1295. </foreground>
  1296. </shape>
  1297. <shape aspect="variable" h="85" name="Messages" strokewidth="inherit" w="100">
  1298. <connections/>
  1299. <foreground>
  1300. <path>
  1301. <move x="0" y="0"/>
  1302. <line x="75" y="0"/>
  1303. <line x="75" y="20"/>
  1304. <line x="100" y="20"/>
  1305. <line x="100" y="75"/>
  1306. <line x="90" y="75"/>
  1307. <line x="90" y="85"/>
  1308. <line x="80" y="75"/>
  1309. <line x="25" y="75"/>
  1310. <line x="25" y="55"/>
  1311. <line x="0" y="55"/>
  1312. <close/>
  1313. </path>
  1314. <fillstroke/>
  1315. <path>
  1316. <move x="75" y="20"/>
  1317. <line x="25" y="20"/>
  1318. <line x="25" y="55"/>
  1319. </path>
  1320. <stroke/>
  1321. </foreground>
  1322. </shape>
  1323. <shape aspect="variable" h="100" name="Microphone" strokewidth="inherit" w="40">
  1324. <connections/>
  1325. <foreground>
  1326. <path>
  1327. <move x="0" y="50"/>
  1328. <line x="0" y="60"/>
  1329. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="0" x="40" x-axis-rotation="0" y="60"/>
  1330. <line x="40" y="50"/>
  1331. <move x="20" y="80"/>
  1332. <line x="20" y="100"/>
  1333. <move x="5" y="100"/>
  1334. <line x="35" y="100"/>
  1335. </path>
  1336. <stroke/>
  1337. <path>
  1338. <move x="5" y="15"/>
  1339. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="35" x-axis-rotation="0" y="15"/>
  1340. <line x="35" y="60"/>
  1341. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="5" x-axis-rotation="0" y="60"/>
  1342. <close/>
  1343. </path>
  1344. <fillstroke/>
  1345. </foreground>
  1346. </shape>
  1347. <shape aspect="variable" h="65" name="Monitor" strokewidth="inherit" w="100">
  1348. <connections/>
  1349. <foreground>
  1350. <rect h="55" w="100" x="0" y="0"/>
  1351. <fillstroke/>
  1352. <path>
  1353. <move x="50" y="55"/>
  1354. <line x="50" y="65"/>
  1355. <move x="40" y="65"/>
  1356. <line x="60" y="65"/>
  1357. </path>
  1358. <stroke/>
  1359. </foreground>
  1360. </shape>
  1361. <shape aspect="variable" h="97.67" name="Moon" strokewidth="inherit" w="97.67">
  1362. <connections/>
  1363. <foreground>
  1364. <path>
  1365. <move x="27.67" y="0"/>
  1366. <arc large-arc-flag="0" rx="51" ry="51" sweep-flag="0" x="97.67" x-axis-rotation="0" y="70"/>
  1367. <arc large-arc-flag="1" rx="51" ry="51" sweep-flag="1" x="27.67" x-axis-rotation="0" y="0"/>
  1368. <close/>
  1369. </path>
  1370. <fillstroke/>
  1371. </foreground>
  1372. </shape>
  1373. <shape aspect="variable" h="76" name="Most Viewed" strokewidth="inherit" w="94">
  1374. <connections/>
  1375. <foreground>
  1376. <path>
  1377. <move x="24" y="8"/>
  1378. <line x="94" y="8"/>
  1379. <move x="24" y="38"/>
  1380. <line x="94" y="38"/>
  1381. <move x="24" y="68"/>
  1382. <line x="94" y="68"/>
  1383. </path>
  1384. <stroke/>
  1385. <path>
  1386. <move x="9" y="30"/>
  1387. <line x="15" y="46"/>
  1388. <line x="0" y="36"/>
  1389. <line x="18" y="36"/>
  1390. <line x="3" y="46"/>
  1391. <close/>
  1392. <move x="9" y="0"/>
  1393. <line x="15" y="16"/>
  1394. <line x="0" y="6"/>
  1395. <line x="18" y="6"/>
  1396. <line x="3" y="16"/>
  1397. <close/>
  1398. <move x="9" y="60"/>
  1399. <line x="15" y="76"/>
  1400. <line x="0" y="66"/>
  1401. <line x="18" y="66"/>
  1402. <line x="3" y="76"/>
  1403. <close/>
  1404. </path>
  1405. <fill/>
  1406. </foreground>
  1407. </shape>
  1408. <shape aspect="variable" h="75" name="Move to Folder" strokewidth="inherit" w="100">
  1409. <connections/>
  1410. <foreground>
  1411. <path>
  1412. <move x="0" y="0"/>
  1413. <line x="100" y="0"/>
  1414. <line x="100" y="50"/>
  1415. <line x="57.3" y="50"/>
  1416. <line x="80" y="75"/>
  1417. <line x="20" y="75"/>
  1418. <line x="42.7" y="50"/>
  1419. <line x="0" y="50"/>
  1420. <close/>
  1421. </path>
  1422. <fillstroke/>
  1423. <path>
  1424. <move x="42.7" y="50"/>
  1425. <line x="50" y="42"/>
  1426. <line x="57.3" y="50"/>
  1427. </path>
  1428. <stroke/>
  1429. </foreground>
  1430. </shape>
  1431. <shape aspect="variable" h="99.25" name="Note" strokewidth="inherit" w="99.4">
  1432. <connections/>
  1433. <foreground>
  1434. <path>
  1435. <move x="74.4" y="15"/>
  1436. <line x="99.4" y="20"/>
  1437. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="74.4" x-axis-rotation="0" y="0"/>
  1438. <line x="74.4" y="90"/>
  1439. <arc large-arc-flag="1" rx="15" ry="10" sweep-flag="1" x="74.4" x-axis-rotation="0" y="88"/>
  1440. <close/>
  1441. </path>
  1442. <fillstroke/>
  1443. <path>
  1444. <move x="0" y="19.6"/>
  1445. <line x="50" y="19.6"/>
  1446. <move x="0" y="44.6"/>
  1447. <line x="50" y="44.6"/>
  1448. <move x="0" y="69.6"/>
  1449. <line x="50" y="69.6"/>
  1450. </path>
  1451. <stroke/>
  1452. </foreground>
  1453. </shape>
  1454. <shape aspect="variable" h="50" name="Options" strokewidth="inherit" w="100">
  1455. <connections/>
  1456. <foreground>
  1457. <path>
  1458. <move x="0" y="0"/>
  1459. <line x="100" y="0"/>
  1460. <line x="100" y="10"/>
  1461. <line x="0" y="10"/>
  1462. <close/>
  1463. <move x="0" y="20"/>
  1464. <line x="100" y="20"/>
  1465. <line x="100" y="30"/>
  1466. <line x="0" y="30"/>
  1467. <close/>
  1468. <move x="0" y="40"/>
  1469. <line x="100" y="40"/>
  1470. <line x="100" y="50"/>
  1471. <line x="0" y="50"/>
  1472. <close/>
  1473. </path>
  1474. <fillstroke/>
  1475. </foreground>
  1476. </shape>
  1477. <shape aspect="variable" h="70" name="Orientation Lock" strokewidth="inherit" w="77">
  1478. <connections/>
  1479. <foreground>
  1480. <path>
  1481. <move x="35" y="70"/>
  1482. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="70" x-axis-rotation="0" y="35"/>
  1483. <move x="25" y="30"/>
  1484. <line x="25" y="25"/>
  1485. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="45" x-axis-rotation="0" y="25"/>
  1486. <line x="45" y="30"/>
  1487. </path>
  1488. <stroke/>
  1489. <path>
  1490. <move x="63" y="35"/>
  1491. <line x="70" y="45"/>
  1492. <line x="77" y="35"/>
  1493. <close/>
  1494. </path>
  1495. <fill/>
  1496. <rect h="20" w="30" x="20" y="30"/>
  1497. <fill/>
  1498. </foreground>
  1499. </shape>
  1500. <shape aspect="variable" h="16" name="Page Navigation" strokewidth="inherit" w="100">
  1501. <connections/>
  1502. <foreground>
  1503. <ellipse h="16" w="16" x="0" y="0"/>
  1504. <fillstroke/>
  1505. <ellipse h="16" w="16" x="42" y="0"/>
  1506. <fillstroke/>
  1507. <ellipse h="16" w="16" x="84" y="0"/>
  1508. <fillstroke/>
  1509. </foreground>
  1510. </shape>
  1511. <shape aspect="variable" h="85" name="Paint" strokewidth="inherit" w="100">
  1512. <connections/>
  1513. <foreground>
  1514. <roundrect arcsize="16.67" h="30" w="90" x="5" y="0"/>
  1515. <fillstroke/>
  1516. <rect h="25" w="8" x="46" y="60"/>
  1517. <fillstroke/>
  1518. <path>
  1519. <move x="50" y="60"/>
  1520. <line x="50" y="40"/>
  1521. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="45" x-axis-rotation="0" y="35"/>
  1522. <line x="5" y="35"/>
  1523. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="30"/>
  1524. <line x="0" y="20"/>
  1525. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="15"/>
  1526. <move x="95" y="15"/>
  1527. <line x="100" y="15"/>
  1528. </path>
  1529. <stroke/>
  1530. </foreground>
  1531. </shape>
  1532. <shape aspect="variable" h="80" name="Pause" strokewidth="inherit" w="50">
  1533. <connections/>
  1534. <foreground>
  1535. <path>
  1536. <move x="0" y="0"/>
  1537. <line x="15" y="0"/>
  1538. <line x="15" y="80"/>
  1539. <line x="0" y="80"/>
  1540. <close/>
  1541. <move x="35" y="0"/>
  1542. <line x="50" y="0"/>
  1543. <line x="50" y="80"/>
  1544. <line x="35" y="80"/>
  1545. <close/>
  1546. </path>
  1547. <fillstroke/>
  1548. </foreground>
  1549. </shape>
  1550. <shape aspect="variable" h="99" name="Pen" strokewidth="inherit" w="98">
  1551. <connections/>
  1552. <foreground>
  1553. <path>
  1554. <move x="16" y="75"/>
  1555. <line x="90" y="1"/>
  1556. <line x="98" y="9"/>
  1557. <line x="24" y="83"/>
  1558. <close/>
  1559. <move x="7" y="81"/>
  1560. <arc large-arc-flag="1" rx="8" ry="8" sweep-flag="1" x="18" x-axis-rotation="0" y="92"/>
  1561. <line x="0" y="99"/>
  1562. <close/>
  1563. </path>
  1564. <fillstroke/>
  1565. <path>
  1566. <move x="88" y="3"/>
  1567. <line x="85" y="0"/>
  1568. <line x="64" y="21"/>
  1569. <move x="72" y="19"/>
  1570. <line x="80" y="27"/>
  1571. <move x="0" y="99"/>
  1572. <line x="10" y="89"/>
  1573. </path>
  1574. <stroke/>
  1575. </foreground>
  1576. </shape>
  1577. <shape aspect="variable" h="101.04" name="Phone" strokewidth="inherit" w="74.83">
  1578. <connections/>
  1579. <foreground>
  1580. <path>
  1581. <move x="21.83" y="0.56"/>
  1582. <curve x1="21.83" x2="0" x3="0.29" y1="0.56" y2="0.84" y3="20.26"/>
  1583. <curve x1="0.57" x2="4.54" x3="11.06" y1="39.68" y2="56.85" y3="66.42"/>
  1584. <curve x1="17.58" x2="34.3" x3="53.3" y1="75.99" y2="101.04" y3="98.51"/>
  1585. <curve x1="53.3" x2="62.66" x3="69.74" y1="98.51" y2="96.54" y3="92.03"/>
  1586. <line x="46.78" y="74.3"/>
  1587. <curve x1="46.78" x2="39.98" x3="35.72" y1="74.3" y2="78.52" y3="72.89"/>
  1588. <curve x1="31.47" x2="18.14" x3="18.14" y1="67.26" y2="41.09" y3="41.09"/>
  1589. <curve x1="18.14" x2="14.45" x3="22.68" y1="41.09" y2="32.65" y3="28.99"/>
  1590. <line x="21.83" y="0.56"/>
  1591. <close/>
  1592. <move x="24.39" y="0.56"/>
  1593. <curve x1="24.39" x2="26.09" x3="29.21" y1="0.56" y2="0" y3="1.69"/>
  1594. <curve x1="32.33" x2="32.33" x3="32.33" y1="3.38" y2="4.78" y3="4.78"/>
  1595. <line x="32.61" y="24.2"/>
  1596. <curve x1="32.61" x2="31.76" x3="30.63" y1="24.2" y2="25.33" y3="26.45"/>
  1597. <curve x1="29.5" x2="25.81" x3="25.24" y1="27.58" y2="29.27" y3="28.14"/>
  1598. <curve x1="24.67" x2="24.39" x3="24.39" y1="27.02" y2="0.56" y3="0.56"/>
  1599. <close/>
  1600. <move x="48.69" y="72.23"/>
  1601. <line x="55" y="68.96"/>
  1602. <curve x1="55" x2="56.42" x3="58.68" y1="68.96" y2="68.68" y3="70.09"/>
  1603. <curve x1="60.95" x2="72.85" x3="72.85" y1="71.5" y2="80.79" y3="80.79"/>
  1604. <curve x1="72.85" x2="74.83" x3="74.27" y1="80.79" y2="82.48" y3="84.45"/>
  1605. <curve x1="73.7" x2="72.29" x3="72.29" y1="86.42" y2="90.64" y3="90.64"/>
  1606. <line x="48.69" y="72.23"/>
  1607. <close/>
  1608. </path>
  1609. <fillstroke/>
  1610. </foreground>
  1611. </shape>
  1612. <shape aspect="variable" h="100" name="Pie Chart" strokewidth="inherit" w="100">
  1613. <connections/>
  1614. <foreground>
  1615. <ellipse h="100" w="100" x="0" y="0"/>
  1616. <fillstroke/>
  1617. <path>
  1618. <move x="50" y="0"/>
  1619. <line x="50" y="50"/>
  1620. <line x="70" y="96"/>
  1621. <move x="50" y="50"/>
  1622. <line x="97" y="33"/>
  1623. </path>
  1624. <stroke/>
  1625. </foreground>
  1626. </shape>
  1627. <shape aspect="variable" h="80" name="Play" strokewidth="inherit" w="70">
  1628. <connections/>
  1629. <foreground>
  1630. <path>
  1631. <move x="0" y="0"/>
  1632. <line x="70" y="40"/>
  1633. <line x="0" y="80"/>
  1634. <close/>
  1635. </path>
  1636. <fillstroke/>
  1637. </foreground>
  1638. </shape>
  1639. <shape aspect="variable" h="100" name="Pointer" strokewidth="inherit" w="100">
  1640. <connections/>
  1641. <foreground>
  1642. <path>
  1643. <move x="100" y="0"/>
  1644. <line x="45" y="100"/>
  1645. <line x="30" y="70"/>
  1646. <line x="0" y="55"/>
  1647. <close/>
  1648. </path>
  1649. <fillstroke/>
  1650. <path>
  1651. <move x="100" y="0"/>
  1652. <line x="30" y="70"/>
  1653. </path>
  1654. <fillstroke/>
  1655. </foreground>
  1656. </shape>
  1657. <shape aspect="variable" h="80" name="Preferences" strokewidth="inherit" w="100">
  1658. <connections/>
  1659. <foreground>
  1660. <path>
  1661. <move x="0" y="0"/>
  1662. <line x="15" y="0"/>
  1663. <line x="15" y="15"/>
  1664. <line x="0" y="15"/>
  1665. <close/>
  1666. <move x="0" y="32.5"/>
  1667. <line x="15" y="32.5"/>
  1668. <line x="15" y="47.5"/>
  1669. <line x="0" y="47.5"/>
  1670. <close/>
  1671. <move x="0" y="65"/>
  1672. <line x="15" y="65"/>
  1673. <line x="15" y="80"/>
  1674. <line x="0" y="80"/>
  1675. <close/>
  1676. <move x="30" y="0"/>
  1677. <line x="100" y="0"/>
  1678. <line x="100" y="15"/>
  1679. <line x="30" y="15"/>
  1680. <close/>
  1681. <move x="30" y="32.5"/>
  1682. <line x="100" y="32.5"/>
  1683. <line x="100" y="47.5"/>
  1684. <line x="30" y="47.5"/>
  1685. <close/>
  1686. <move x="30" y="65"/>
  1687. <line x="100" y="65"/>
  1688. <line x="100" y="80"/>
  1689. <line x="30" y="80"/>
  1690. <close/>
  1691. </path>
  1692. <fillstroke/>
  1693. </foreground>
  1694. </shape>
  1695. <shape aspect="variable" h="85" name="Printer" strokewidth="inherit" w="100">
  1696. <connections/>
  1697. <foreground>
  1698. <path>
  1699. <move x="0" y="65"/>
  1700. <line x="0" y="10"/>
  1701. <line x="25" y="10"/>
  1702. <line x="25" y="0"/>
  1703. <line x="75" y="0"/>
  1704. <line x="75" y="10"/>
  1705. <line x="100" y="10"/>
  1706. <line x="100" y="65"/>
  1707. <line x="75" y="65"/>
  1708. <line x="75" y="85"/>
  1709. <line x="25" y="85"/>
  1710. <line x="25" y="65"/>
  1711. <close/>
  1712. </path>
  1713. <fillstroke/>
  1714. <path>
  1715. <move x="25" y="65"/>
  1716. <line x="25" y="45"/>
  1717. <line x="75" y="45"/>
  1718. <line x="75" y="65"/>
  1719. <move x="25" y="10"/>
  1720. <line x="75" y="10"/>
  1721. </path>
  1722. <stroke/>
  1723. <ellipse h="6" w="6" x="12" y="27"/>
  1724. <stroke/>
  1725. <ellipse h="6" w="6" x="27" y="27"/>
  1726. <stroke/>
  1727. </foreground>
  1728. </shape>
  1729. <shape aspect="variable" h="94.56" name="Privacy" strokewidth="inherit" w="56">
  1730. <connections/>
  1731. <foreground>
  1732. <path>
  1733. <move x="46" y="90"/>
  1734. <arc large-arc-flag="0" rx="28" ry="15" sweep-flag="1" x="0" x-axis-rotation="0" y="79"/>
  1735. <line x="0" y="4"/>
  1736. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="8" x-axis-rotation="0" y="4"/>
  1737. <line x="8" y="49"/>
  1738. <line x="12" y="49"/>
  1739. <line x="12" y="4"/>
  1740. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="20" x-axis-rotation="0" y="4"/>
  1741. <line x="20" y="49"/>
  1742. <line x="24" y="49"/>
  1743. <line x="24" y="4"/>
  1744. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="32" x-axis-rotation="0" y="4"/>
  1745. <line x="32" y="49"/>
  1746. <line x="36" y="49"/>
  1747. <line x="36" y="4"/>
  1748. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="44" x-axis-rotation="0" y="4"/>
  1749. <line x="44" y="57"/>
  1750. <line x="44" y="64"/>
  1751. <line x="48" y="64"/>
  1752. <line x="48" y="47"/>
  1753. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="56" x-axis-rotation="0" y="47"/>
  1754. <line x="56" y="74"/>
  1755. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="46" x-axis-rotation="0" y="90"/>
  1756. <close/>
  1757. </path>
  1758. <fillstroke/>
  1759. </foreground>
  1760. </shape>
  1761. <shape aspect="variable" h="75" name="Radio" strokewidth="inherit" w="100">
  1762. <connections/>
  1763. <foreground>
  1764. <rect h="60" w="100" x="0" y="15"/>
  1765. <fillstroke/>
  1766. <ellipse h="6" w="6" x="87" y="22"/>
  1767. <stroke/>
  1768. <ellipse h="6" w="6" x="87" y="32"/>
  1769. <stroke/>
  1770. <path>
  1771. <move x="10" y="0"/>
  1772. <line x="100" y="15"/>
  1773. </path>
  1774. <stroke/>
  1775. <ellipse h="4" w="4" x="28" y="43"/>
  1776. <stroke/>
  1777. <ellipse h="4" w="4" x="28" y="18"/>
  1778. <stroke/>
  1779. <ellipse h="4" w="4" x="53" y="43"/>
  1780. <stroke/>
  1781. <ellipse h="4" w="4" x="28" y="68"/>
  1782. <stroke/>
  1783. <ellipse h="4" w="4" x="3" y="43"/>
  1784. <stroke/>
  1785. <ellipse h="4" w="4" x="28" y="30.5"/>
  1786. <stroke/>
  1787. <ellipse h="4" w="4" x="36.8" y="34.2"/>
  1788. <stroke/>
  1789. <ellipse h="4" w="4" x="36.8" y="51.8"/>
  1790. <stroke/>
  1791. <ellipse h="4" w="4" x="40.5" y="43"/>
  1792. <stroke/>
  1793. <ellipse h="4" w="4" x="28" y="55.5"/>
  1794. <stroke/>
  1795. <ellipse h="4" w="4" x="19.2" y="51.8"/>
  1796. <stroke/>
  1797. <ellipse h="4" w="4" x="19.2" y="34.2"/>
  1798. <stroke/>
  1799. <ellipse h="4" w="4" x="6" y="31.3"/>
  1800. <stroke/>
  1801. <ellipse h="4" w="4" x="16.3" y="21"/>
  1802. <stroke/>
  1803. <ellipse h="4" w="4" x="39.8" y="21"/>
  1804. <stroke/>
  1805. <ellipse h="4" w="4" x="50" y="31.3"/>
  1806. <stroke/>
  1807. <ellipse h="4" w="4" x="50" y="54.8"/>
  1808. <stroke/>
  1809. <ellipse h="4" w="4" x="39.8" y="65"/>
  1810. <stroke/>
  1811. <ellipse h="4" w="4" x="16.3" y="65"/>
  1812. <stroke/>
  1813. <ellipse h="4" w="4" x="6" y="54.8"/>
  1814. <stroke/>
  1815. <ellipse h="4" w="4" x="15.5" y="43"/>
  1816. <stroke/>
  1817. </foreground>
  1818. </shape>
  1819. <shape aspect="variable" h="90" name="Reload" strokewidth="inherit" w="80">
  1820. <connections/>
  1821. <foreground>
  1822. <path>
  1823. <move x="80" y="50"/>
  1824. <arc large-arc-flag="1" rx="40" ry="40" sweep-flag="1" x="40" x-axis-rotation="0" y="10"/>
  1825. </path>
  1826. <stroke/>
  1827. <path>
  1828. <move x="40" y="0"/>
  1829. <line x="55" y="10"/>
  1830. <line x="40" y="20"/>
  1831. <close/>
  1832. </path>
  1833. <fillstroke/>
  1834. </foreground>
  1835. </shape>
  1836. <shape aspect="variable" h="80" name="Repeat" strokewidth="inherit" w="100">
  1837. <connections/>
  1838. <foreground>
  1839. <path>
  1840. <move x="0" y="40"/>
  1841. <line x="0" y="20"/>
  1842. <line x="100" y="20"/>
  1843. <move x="100" y="40"/>
  1844. <line x="100" y="60"/>
  1845. <line x="0" y="60"/>
  1846. <move x="20" y="40"/>
  1847. <line x="0" y="60"/>
  1848. <line x="20" y="80"/>
  1849. <move x="80" y="0"/>
  1850. <line x="100" y="20"/>
  1851. <line x="80" y="40"/>
  1852. </path>
  1853. <stroke/>
  1854. </foreground>
  1855. </shape>
  1856. <shape aspect="variable" h="48.51" name="Retry" strokewidth="inherit" w="92.1">
  1857. <connections/>
  1858. <foreground>
  1859. <path>
  1860. <move x="80.28" y="48.51"/>
  1861. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="77.28" x-axis-rotation="0" y="23.51"/>
  1862. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="35.28" x-axis-rotation="0" y="14.51"/>
  1863. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="14.28" x-axis-rotation="0" y="21.51"/>
  1864. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="0" x="13.28" x-axis-rotation="0" y="48.51"/>
  1865. <close/>
  1866. </path>
  1867. <fillstroke/>
  1868. <path>
  1869. <move x="57.28" y="33.51"/>
  1870. <arc large-arc-flag="1" rx="13" ry="13" sweep-flag="1" x="47.28" x-axis-rotation="0" y="18.51"/>
  1871. <move x="44.28" y="17.01"/>
  1872. <line x="47.28" y="18.51"/>
  1873. <line x="44.28" y="19.51"/>
  1874. </path>
  1875. <stroke/>
  1876. </foreground>
  1877. </shape>
  1878. <shape aspect="variable" h="100" name="Select" strokewidth="inherit" w="100">
  1879. <connections/>
  1880. <foreground>
  1881. <ellipse h="100" w="100" x="0" y="0"/>
  1882. <fillstroke/>
  1883. <path>
  1884. <move x="20" y="55"/>
  1885. <line x="30" y="70"/>
  1886. <line x="85" y="25"/>
  1887. </path>
  1888. <stroke/>
  1889. </foreground>
  1890. </shape>
  1891. <shape aspect="variable" h="100" name="Settings" strokewidth="inherit" w="100">
  1892. <connections/>
  1893. <foreground>
  1894. <path>
  1895. <move x="44" y="0"/>
  1896. <line x="56" y="0"/>
  1897. <line x="56" y="9.5"/>
  1898. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="74.5" x-axis-rotation="0" y="17"/>
  1899. <line x="81" y="10.5"/>
  1900. <line x="89.5" y="18.9"/>
  1901. <line x="82.9" y="25.4"/>
  1902. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="90.5" x-axis-rotation="0" y="44"/>
  1903. <line x="100" y="44"/>
  1904. <line x="100" y="56"/>
  1905. <line x="90.5" y="56"/>
  1906. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="82.9" x-axis-rotation="0" y="74.4"/>
  1907. <line x="89.5" y="81"/>
  1908. <line x="81" y="89.5"/>
  1909. <line x="74.5" y="83"/>
  1910. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="56" x-axis-rotation="0" y="90.5"/>
  1911. <line x="56" y="100"/>
  1912. <line x="44" y="100"/>
  1913. <line x="44" y="90.5"/>
  1914. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="25.5" x-axis-rotation="0" y="83"/>
  1915. <line x="19" y="89.5"/>
  1916. <line x="10.5" y="81.2"/>
  1917. <line x="17" y="74.4"/>
  1918. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="9.5" x-axis-rotation="0" y="56"/>
  1919. <line x="0" y="56"/>
  1920. <line x="0" y="44"/>
  1921. <line x="9.5" y="44"/>
  1922. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="17" x-axis-rotation="0" y="25.4"/>
  1923. <line x="10.5" y="18.9"/>
  1924. <line x="19" y="10.5"/>
  1925. <line x="25.5" y="17"/>
  1926. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="44" x-axis-rotation="0" y="9.5"/>
  1927. <close/>
  1928. <move x="50" y="35"/>
  1929. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="65"/>
  1930. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="35"/>
  1931. <close/>
  1932. </path>
  1933. <fillstroke/>
  1934. </foreground>
  1935. </shape>
  1936. <shape aspect="variable" h="95" name="Share" strokewidth="inherit" w="70">
  1937. <connections/>
  1938. <foreground>
  1939. <path>
  1940. <move x="45" y="25"/>
  1941. <line x="70" y="25"/>
  1942. <line x="70" y="95"/>
  1943. <line x="0" y="95"/>
  1944. <line x="0" y="25"/>
  1945. <line x="25" y="25"/>
  1946. </path>
  1947. <fillstroke/>
  1948. <path>
  1949. <move x="15" y="20"/>
  1950. <line x="35" y="0"/>
  1951. <line x="55" y="20"/>
  1952. <move x="35" y="60"/>
  1953. <line x="35" y="0"/>
  1954. </path>
  1955. <stroke/>
  1956. </foreground>
  1957. </shape>
  1958. <shape aspect="variable" h="85" name="Shopping Cart" strokewidth="inherit" w="100">
  1959. <connections/>
  1960. <foreground>
  1961. <path>
  1962. <move x="14.2" y="20"/>
  1963. <line x="100" y="20"/>
  1964. <line x="75" y="65"/>
  1965. <line x="23" y="65"/>
  1966. <close/>
  1967. </path>
  1968. <fillstroke/>
  1969. <ellipse h="10" w="10" x="20" y="75"/>
  1970. <fillstroke/>
  1971. <ellipse h="10" w="10" x="65" y="75"/>
  1972. <fillstroke/>
  1973. <path>
  1974. <move x="0" y="0"/>
  1975. <line x="10.5" y="0"/>
  1976. <line x="25" y="75"/>
  1977. <line x="70" y="75"/>
  1978. </path>
  1979. <stroke/>
  1980. </foreground>
  1981. </shape>
  1982. <shape aspect="variable" h="70" name="Shuffle" strokewidth="inherit" w="100">
  1983. <connections/>
  1984. <foreground>
  1985. <fillcolor color="none"/>
  1986. <path>
  1987. <move x="85" y="0"/>
  1988. <line x="100" y="15"/>
  1989. <line x="85" y="30"/>
  1990. <move x="85" y="40"/>
  1991. <line x="100" y="55"/>
  1992. <line x="85" y="70"/>
  1993. <move x="0" y="15"/>
  1994. <line x="25" y="15"/>
  1995. <line x="75" y="55"/>
  1996. <line x="100" y="55"/>
  1997. <move x="0" y="55"/>
  1998. <line x="25" y="55"/>
  1999. <line x="48.5" y="36.2"/>
  2000. <move x="51.5" y="33.8"/>
  2001. <line x="75" y="15"/>
  2002. <line x="100" y="15"/>
  2003. </path>
  2004. <stroke/>
  2005. </foreground>
  2006. </shape>
  2007. <shape aspect="variable" h="100" name="Silent" strokewidth="inherit" w="100">
  2008. <connections/>
  2009. <foreground>
  2010. <ellipse h="100" w="100" x="0" y="0"/>
  2011. <fillstroke/>
  2012. <path>
  2013. <move x="37.5" y="40"/>
  2014. <line x="54" y="40"/>
  2015. <line x="62" y="30"/>
  2016. <line x="62" y="70"/>
  2017. <line x="54" y="60"/>
  2018. <line x="37.5" y="60"/>
  2019. <close/>
  2020. </path>
  2021. <stroke/>
  2022. </foreground>
  2023. </shape>
  2024. <shape aspect="variable" h="100" name="Smartphone" strokewidth="inherit" w="60">
  2025. <connections/>
  2026. <foreground>
  2027. <rect h="100" w="60" x="0" y="0"/>
  2028. <fillstroke/>
  2029. <path>
  2030. <move x="0" y="8"/>
  2031. <line x="60" y="8"/>
  2032. <move x="0" y="85"/>
  2033. <line x="60" y="85"/>
  2034. <move x="27" y="92.5"/>
  2035. <line x="33" y="92.5"/>
  2036. </path>
  2037. <stroke/>
  2038. </foreground>
  2039. </shape>
  2040. <shape aspect="variable" h="90" name="Star" strokewidth="inherit" w="100">
  2041. <connections/>
  2042. <foreground>
  2043. <path>
  2044. <move x="50" y="0"/>
  2045. <line x="63.7" y="35"/>
  2046. <line x="100" y="35"/>
  2047. <line x="71.1" y="53.9"/>
  2048. <line x="85" y="90"/>
  2049. <line x="50" y="67.4"/>
  2050. <line x="15" y="90"/>
  2051. <line x="28.9" y="53.9"/>
  2052. <line x="0" y="35"/>
  2053. <line x="36.4" y="35"/>
  2054. <close/>
  2055. </path>
  2056. <fillstroke/>
  2057. </foreground>
  2058. </shape>
  2059. <shape aspect="variable" h="94" name="Stopwatch" strokewidth="inherit" w="90">
  2060. <connections/>
  2061. <foreground>
  2062. <ellipse h="90" w="90" x="0" y="4"/>
  2063. <fillstroke/>
  2064. <path>
  2065. <move x="45" y="14"/>
  2066. <line x="45" y="49"/>
  2067. <move x="45" y="0"/>
  2068. <line x="45" y="4"/>
  2069. <move x="77" y="12"/>
  2070. <line x="74" y="15"/>
  2071. <move x="75" y="10"/>
  2072. <line x="79" y="14"/>
  2073. </path>
  2074. <fillstroke/>
  2075. <ellipse h="2" w="2" x="44" y="40"/>
  2076. <fillstroke/>
  2077. </foreground>
  2078. </shape>
  2079. <shape aspect="variable" h="35" name="Storage" strokewidth="inherit" w="100">
  2080. <connections/>
  2081. <foreground>
  2082. <path>
  2083. <move x="15" y="0"/>
  2084. <line x="85" y="0"/>
  2085. <line x="100" y="15"/>
  2086. <line x="100" y="35"/>
  2087. <line x="0" y="35"/>
  2088. <line x="0" y="15"/>
  2089. <close/>
  2090. </path>
  2091. <fillstroke/>
  2092. <path>
  2093. <move x="0" y="15"/>
  2094. <line x="40" y="15"/>
  2095. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="60" x-axis-rotation="0" y="15"/>
  2096. <line x="100" y="15"/>
  2097. </path>
  2098. <stroke/>
  2099. </foreground>
  2100. </shape>
  2101. <shape aspect="variable" h="100" name="Sun" strokewidth="inherit" w="100">
  2102. <connections/>
  2103. <foreground>
  2104. <ellipse h="40" w="40" x="30" y="30"/>
  2105. <fillstroke/>
  2106. <path>
  2107. <move x="50" y="0"/>
  2108. <line x="50" y="25"/>
  2109. <move x="50" y="75"/>
  2110. <line x="50" y="100"/>
  2111. <move x="75" y="50"/>
  2112. <line x="100" y="50"/>
  2113. <move x="25" y="50"/>
  2114. <line x="0" y="50"/>
  2115. <move x="14.5" y="14.5"/>
  2116. <line x="32.5" y="32.5"/>
  2117. <move x="32.5" y="67.5"/>
  2118. <line x="14.5" y="85.5"/>
  2119. <move x="85.5" y="14.5"/>
  2120. <line x="67.5" y="32.5"/>
  2121. <move x="67.5" y="67.5"/>
  2122. <line x="85.5" y="85.5"/>
  2123. </path>
  2124. <stroke/>
  2125. </foreground>
  2126. </shape>
  2127. <shape aspect="variable" h="40" name="Tape" strokewidth="inherit" w="100">
  2128. <connections/>
  2129. <foreground>
  2130. <path>
  2131. <move x="20" y="40"/>
  2132. <line x="80" y="40"/>
  2133. </path>
  2134. <fillstroke/>
  2135. <ellipse h="40" w="40" x="0" y="0"/>
  2136. <fillstroke/>
  2137. <ellipse h="40" w="40" x="60" y="0"/>
  2138. <fillstroke/>
  2139. </foreground>
  2140. </shape>
  2141. <shape aspect="variable" h="98.75" name="Tools" strokewidth="inherit" w="98.75">
  2142. <connections/>
  2143. <foreground>
  2144. <path>
  2145. <move x="82" y="70"/>
  2146. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="85" x-axis-rotation="0" y="78"/>
  2147. <line x="95" y="88"/>
  2148. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="88" x-axis-rotation="0" y="95"/>
  2149. <line x="77" y="84"/>
  2150. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="70" x-axis-rotation="0" y="82"/>
  2151. <close/>
  2152. <move x="10" y="85"/>
  2153. <line x="3" y="92"/>
  2154. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="19" x-axis-rotation="0" y="75"/>
  2155. <line x="75" y="19"/>
  2156. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="92" x-axis-rotation="0" y="3"/>
  2157. <line x="85" y="10"/>
  2158. <line x="90" y="15"/>
  2159. <line x="97" y="8"/>
  2160. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="81" x-axis-rotation="0" y="25"/>
  2161. <line x="25" y="81"/>
  2162. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="8" x-axis-rotation="0" y="97"/>
  2163. <line x="15" y="90"/>
  2164. <close/>
  2165. <move x="5" y="0"/>
  2166. <line x="15" y="10"/>
  2167. <line x="15" y="15"/>
  2168. <line x="10" y="15"/>
  2169. <line x="0" y="5"/>
  2170. <close/>
  2171. </path>
  2172. <fillstroke/>
  2173. <path>
  2174. <move x="15" y="15"/>
  2175. <line x="76" y="76"/>
  2176. </path>
  2177. <stroke/>
  2178. </foreground>
  2179. </shape>
  2180. <shape aspect="variable" h="100" name="Trashcan" strokewidth="inherit" w="80">
  2181. <connections/>
  2182. <foreground>
  2183. <path>
  2184. <move x="0" y="5"/>
  2185. <line x="80" y="5"/>
  2186. <line x="75" y="5"/>
  2187. <line x="70" y="95"/>
  2188. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="100"/>
  2189. <line x="15" y="100"/>
  2190. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="10" x-axis-rotation="0" y="95"/>
  2191. <line x="5" y="5"/>
  2192. <line x="0" y="5"/>
  2193. <close/>
  2194. </path>
  2195. <fillstroke/>
  2196. <path>
  2197. <move x="30" y="5"/>
  2198. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="35" x-axis-rotation="0" y="0"/>
  2199. <line x="45" y="0"/>
  2200. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="50" x-axis-rotation="0" y="5"/>
  2201. <move x="40" y="10"/>
  2202. <line x="40" y="95"/>
  2203. <move x="57.5" y="10"/>
  2204. <line x="55" y="95"/>
  2205. <move x="22.5" y="10"/>
  2206. <line x="25" y="95"/>
  2207. </path>
  2208. <stroke/>
  2209. </foreground>
  2210. </shape>
  2211. <shape aspect="variable" h="100" name="Trophy" strokewidth="inherit" w="94.69">
  2212. <connections/>
  2213. <foreground>
  2214. <path>
  2215. <move x="82.34" y="0"/>
  2216. <line x="82.34" y="30"/>
  2217. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="12.34" x-axis-rotation="0" y="30"/>
  2218. <line x="12.34" y="0"/>
  2219. <close/>
  2220. </path>
  2221. <fillstroke/>
  2222. <path>
  2223. <move x="82.34" y="0"/>
  2224. <line x="88.84" y="0"/>
  2225. <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="1" x="92.84" x-axis-rotation="0" y="10.5"/>
  2226. <line x="82.34" y="25"/>
  2227. <move x="12.34" y="0"/>
  2228. <line x="5.84" y="0"/>
  2229. <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="0" x="1.84" x-axis-rotation="0" y="10.5"/>
  2230. <line x="12.34" y="25"/>
  2231. <move x="47.34" y="65"/>
  2232. <line x="47.34" y="100"/>
  2233. <move x="27.34" y="100"/>
  2234. <line x="67.34" y="100"/>
  2235. </path>
  2236. <stroke/>
  2237. </foreground>
  2238. </shape>
  2239. <shape aspect="variable" h="70" name="Typing" strokewidth="inherit" w="100">
  2240. <connections/>
  2241. <foreground>
  2242. <path>
  2243. <move x="90" y="0"/>
  2244. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
  2245. <line x="100" y="45"/>
  2246. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="90" x-axis-rotation="0" y="55"/>
  2247. <line x="70" y="55"/>
  2248. <line x="70" y="70"/>
  2249. <line x="60" y="55"/>
  2250. <line x="10" y="55"/>
  2251. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="45"/>
  2252. <line x="0" y="10"/>
  2253. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2254. <close/>
  2255. </path>
  2256. <fillstroke/>
  2257. <fillcolor color="#0080F0"/>
  2258. <ellipse h="10" w="10" x="20" y="22.5"/>
  2259. <fill/>
  2260. <ellipse h="10" w="10" x="45" y="22.5"/>
  2261. <fill/>
  2262. <ellipse h="10" w="10" x="70" y="22.5"/>
  2263. <fill/>
  2264. </foreground>
  2265. </shape>
  2266. <shape aspect="variable" h="100" name="Umbrella" strokewidth="inherit" w="100">
  2267. <connections/>
  2268. <foreground>
  2269. <path>
  2270. <move x="0" y="55"/>
  2271. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="55"/>
  2272. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="75" x-axis-rotation="0" y="55"/>
  2273. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="55"/>
  2274. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="25" x-axis-rotation="0" y="55"/>
  2275. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="0" x-axis-rotation="0" y="55"/>
  2276. <close/>
  2277. </path>
  2278. <fillstroke/>
  2279. <path>
  2280. <move x="50" y="55"/>
  2281. <line x="50" y="90"/>
  2282. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="70" x-axis-rotation="0" y="90"/>
  2283. <move x="50" y="0"/>
  2284. <line x="50" y="5"/>
  2285. </path>
  2286. <stroke/>
  2287. </foreground>
  2288. </shape>
  2289. <shape aspect="variable" h="100" name="Unlocked" strokewidth="inherit" w="80">
  2290. <connections/>
  2291. <foreground>
  2292. <rect h="50" w="80" x="0" y="50"/>
  2293. <fillstroke/>
  2294. <path>
  2295. <move x="10" y="50"/>
  2296. <line x="10" y="30"/>
  2297. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="30"/>
  2298. <line x="70" y="35"/>
  2299. </path>
  2300. <stroke/>
  2301. </foreground>
  2302. </shape>
  2303. <shape aspect="variable" h="85" name="Up" strokewidth="inherit" w="70">
  2304. <connections/>
  2305. <foreground>
  2306. <path>
  2307. <move x="45" y="70"/>
  2308. <line x="70" y="70"/>
  2309. <line x="70" y="0"/>
  2310. <line x="0" y="0"/>
  2311. <line x="0" y="70"/>
  2312. <line x="25" y="70"/>
  2313. </path>
  2314. <fillstroke/>
  2315. <path>
  2316. <move x="15" y="45"/>
  2317. <line x="35" y="25"/>
  2318. <line x="55" y="45"/>
  2319. <move x="35" y="85"/>
  2320. <line x="35" y="25"/>
  2321. </path>
  2322. <stroke/>
  2323. </foreground>
  2324. </shape>
  2325. <shape aspect="variable" h="100" name="User" strokewidth="inherit" w="100">
  2326. <connections/>
  2327. <foreground>
  2328. <ellipse h="100" w="100" x="0" y="0"/>
  2329. <fillstroke/>
  2330. <path>
  2331. <move x="10" y="80"/>
  2332. <arc large-arc-flag="0" rx="30" ry="15" sweep-flag="1" x="38" x-axis-rotation="0" y="68"/>
  2333. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="41.5" x-axis-rotation="0" y="65"/>
  2334. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="35" x-axis-rotation="0" y="48"/>
  2335. <arc large-arc-flag="0" rx="2" ry="5" sweep-flag="1" x="35" x-axis-rotation="0" y="37"/>
  2336. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="50" x-axis-rotation="0" y="19"/>
  2337. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="65" x-axis-rotation="0" y="37"/>
  2338. <arc large-arc-flag="0" rx="2" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="48"/>
  2339. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="58.5" x-axis-rotation="0" y="65"/>
  2340. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="62" x-axis-rotation="0" y="68"/>
  2341. <arc large-arc-flag="0" rx="30" ry="15" sweep-flag="1" x="90" x-axis-rotation="0" y="80"/>
  2342. </path>
  2343. <stroke/>
  2344. </foreground>
  2345. </shape>
  2346. <shape aspect="variable" h="50" name="Video Conversation" strokewidth="inherit" w="100.26">
  2347. <connections/>
  2348. <foreground>
  2349. <path>
  2350. <move x="0" y="5"/>
  2351. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  2352. <line x="65" y="0"/>
  2353. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="70" x-axis-rotation="0" y="5"/>
  2354. <line x="70" y="20"/>
  2355. <line x="96" y="6.5"/>
  2356. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
  2357. <line x="100" y="40"/>
  2358. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96" x-axis-rotation="0" y="43.5"/>
  2359. <line x="70" y="30"/>
  2360. <line x="70" y="45"/>
  2361. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="50"/>
  2362. <line x="5" y="50"/>
  2363. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="45"/>
  2364. <close/>
  2365. <move x="70" y="15"/>
  2366. <line x="70" y="35"/>
  2367. </path>
  2368. <fillstroke/>
  2369. </foreground>
  2370. </shape>
  2371. <shape aspect="variable" h="100" name="Volume" strokewidth="inherit" w="100">
  2372. <connections/>
  2373. <foreground>
  2374. <path>
  2375. <move x="7" y="0"/>
  2376. <line x="7" y="100"/>
  2377. <move x="93" y="0"/>
  2378. <line x="93" y="100"/>
  2379. <move x="50" y="0"/>
  2380. <line x="50" y="100"/>
  2381. </path>
  2382. <fillstroke/>
  2383. <ellipse h="14" w="14" x="0" y="86"/>
  2384. <fillstroke/>
  2385. <ellipse h="14" w="14" x="86" y="0"/>
  2386. <fillstroke/>
  2387. <ellipse h="14" w="14" x="43" y="43"/>
  2388. <fillstroke/>
  2389. </foreground>
  2390. </shape>
  2391. <shape aspect="variable" h="94.4" name="Volume 2" strokewidth="inherit" w="101.21">
  2392. <connections/>
  2393. <foreground>
  2394. <path>
  2395. <move x="40" y="17.2"/>
  2396. <line x="40" y="77.2"/>
  2397. <line x="20" y="62.2"/>
  2398. <line x="0" y="62.2"/>
  2399. <line x="0" y="32.2"/>
  2400. <line x="20" y="32.2"/>
  2401. <close/>
  2402. </path>
  2403. <fillstroke/>
  2404. <path>
  2405. <move x="76.8" y="0"/>
  2406. <arc large-arc-flag="0" rx="70" ry="70" sweep-flag="1" x="76.8" x-axis-rotation="0" y="94.4"/>
  2407. <move x="61.8" y="13.2"/>
  2408. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="61.8" x-axis-rotation="0" y="81.2"/>
  2409. <move x="47.2" y="27"/>
  2410. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="47.2" x-axis-rotation="0" y="67.4"/>
  2411. </path>
  2412. <stroke/>
  2413. </foreground>
  2414. </shape>
  2415. <shape aspect="variable" h="80" name="Wallet" strokewidth="inherit" w="100">
  2416. <connections/>
  2417. <foreground>
  2418. <path>
  2419. <move x="0" y="80"/>
  2420. <line x="0" y="5"/>
  2421. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  2422. <line x="60" y="0"/>
  2423. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="5"/>
  2424. <line x="65" y="10"/>
  2425. <line x="100" y="10"/>
  2426. <line x="100" y="80"/>
  2427. <close/>
  2428. <move x="0" y="10"/>
  2429. <line x="65" y="10"/>
  2430. </path>
  2431. <fillstroke/>
  2432. <ellipse h="10" w="10" x="80" y="40"/>
  2433. <stroke/>
  2434. </foreground>
  2435. </shape>
  2436. <shape aspect="variable" h="70.01" name="WiFi" strokewidth="inherit" w="99">
  2437. <connections/>
  2438. <foreground>
  2439. <path>
  2440. <move x="49.5" y="70.01"/>
  2441. <line x="42.5" y="63.01"/>
  2442. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="56.5" x-axis-rotation="0" y="63.01"/>
  2443. <close/>
  2444. <move x="63.7" y="56.01"/>
  2445. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="35.3" x-axis-rotation="0" y="56.01"/>
  2446. <line x="28.3" y="48.81"/>
  2447. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="70.7" x-axis-rotation="0" y="48.81"/>
  2448. <close/>
  2449. <move x="77.9" y="41.81"/>
  2450. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="21.1" x-axis-rotation="0" y="41.81"/>
  2451. <line x="14.3" y="34.51"/>
  2452. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="84.7" x-axis-rotation="0" y="34.51"/>
  2453. <close/>
  2454. <move x="91.9" y="27.51"/>
  2455. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="7.1" x-axis-rotation="0" y="27.51"/>
  2456. <line x="0" y="20.51"/>
  2457. <arc large-arc-flag="0" rx="70" ry="70" sweep-flag="1" x="99" x-axis-rotation="0" y="20.51"/>
  2458. <close/>
  2459. </path>
  2460. <fillstroke/>
  2461. </foreground>
  2462. </shape>
  2463. <shape aspect="variable" h="100" name="Window" strokewidth="inherit" w="100">
  2464. <connections/>
  2465. <foreground>
  2466. <rect h="100" w="100" x="0" y="0"/>
  2467. <fillstroke/>
  2468. <path>
  2469. <move x="0" y="12"/>
  2470. <line x="100" y="12"/>
  2471. <move x="4" y="6"/>
  2472. <line x="6" y="6"/>
  2473. <move x="9" y="6"/>
  2474. <line x="11" y="6"/>
  2475. <move x="14" y="6"/>
  2476. <line x="96" y="6"/>
  2477. </path>
  2478. <stroke/>
  2479. </foreground>
  2480. </shape>
  2481. </shapes>