misc.xml 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184
  1. <shapes name="mxGraph.ios7.misc">
  2. <shape aspect="variable" h="100" name="Add" strokewidth="inherit" w="100">
  3. <connections>
  4. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  5. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  6. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  7. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  8. </connections>
  9. <background>
  10. <ellipse h="100" w="100" x="0" y="0"/>
  11. </background>
  12. <foreground>
  13. <fill/>
  14. <strokewidth width="2"/>
  15. <path>
  16. <move x="50" y="20"/>
  17. <line x="50" y="80"/>
  18. <move x="20" y="50"/>
  19. <line x="80" y="50"/>
  20. </path>
  21. <stroke/>
  22. </foreground>
  23. </shape>
  24. <shape aspect="variable" h="15" name="Adjust" strokewidth="inherit" w="50">
  25. <connections>
  26. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  27. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  28. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  29. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  30. </connections>
  31. <background>
  32. <roundrect arcsize="33.33" h="15" w="50" x="0" y="0"/>
  33. </background>
  34. <foreground>
  35. <fillstroke/>
  36. <path>
  37. <move x="25" y="0"/>
  38. <line x="25" y="15"/>
  39. </path>
  40. <stroke/>
  41. <fillcolor color="#0080f0"/>
  42. <rect h="2" w="9" x="8" y="6.5"/>
  43. <fill/>
  44. <rect h="9" w="2" x="36.5" y="3"/>
  45. <fill/>
  46. <rect h="2" w="9" x="33" y="6.5"/>
  47. <fill/>
  48. </foreground>
  49. </shape>
  50. <shape aspect="variable" h="100" name="Bluetooth" strokewidth="inherit" w="100">
  51. <connections/>
  52. <background>
  53. <path>
  54. <move x="0" y="20"/>
  55. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  56. <line x="80" y="0"/>
  57. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  58. <line x="100" y="80"/>
  59. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  60. <line x="20" y="100"/>
  61. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  62. <close/>
  63. </path>
  64. </background>
  65. <foreground>
  66. <fillstroke/>
  67. <strokecolor color="none"/>
  68. <fillcolor color="#ffffff"/>
  69. <path>
  70. <move x="28.5" y="36.3"/>
  71. <line x="32.5" y="31.8"/>
  72. <line x="46.2" y="44"/>
  73. <line x="46.2" y="15.7"/>
  74. <line x="69" y="37.2"/>
  75. <line x="53.6" y="50.8"/>
  76. <line x="69" y="64.5"/>
  77. <line x="46.2" y="85.8"/>
  78. <line x="46.2" y="57.5"/>
  79. <line x="32.5" y="69.7"/>
  80. <line x="28.5" y="65.3"/>
  81. <line x="44.8" y="50.8"/>
  82. <close/>
  83. <move x="51.9" y="72.5"/>
  84. <line x="60.2" y="64.5"/>
  85. <line x="51.9" y="57.3"/>
  86. <close/>
  87. <move x="51.9" y="44.5"/>
  88. <line x="60.2" y="36.9"/>
  89. <line x="51.9" y="29.3"/>
  90. <close/>
  91. </path>
  92. <fill/>
  93. </foreground>
  94. </shape>
  95. <shape aspect="variable" h="100" name="Broadcast" strokewidth="inherit" w="100">
  96. <connections/>
  97. <background>
  98. <path>
  99. <move x="0" y="20"/>
  100. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  101. <line x="80" y="0"/>
  102. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  103. <line x="100" y="80"/>
  104. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  105. <line x="20" y="100"/>
  106. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  107. <close/>
  108. </path>
  109. </background>
  110. <foreground>
  111. <fillstroke/>
  112. <strokecolor color="none"/>
  113. <fillcolor color="#ffffff"/>
  114. <path>
  115. <move x="48.5" y="72.5"/>
  116. <line x="27.5" y="86"/>
  117. <line x="48.2" y="41.8"/>
  118. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="52" x-axis-rotation="0" y="41.8"/>
  119. <line x="72" y="86"/>
  120. <line x="52" y="72.5"/>
  121. <line x="52" y="84"/>
  122. <line x="48.5" y="84"/>
  123. <close/>
  124. <move x="46.5" y="69.5"/>
  125. <line x="41" y="66"/>
  126. <line x="35.5" y="77"/>
  127. <close/>
  128. <move x="48.5" y="66.5"/>
  129. <line x="48.5" y="49"/>
  130. <line x="42.5" y="62.5"/>
  131. <close/>
  132. <move x="51.8" y="66.5"/>
  133. <line x="58" y="63"/>
  134. <line x="51.8" y="49"/>
  135. <close/>
  136. <move x="54" y="69.5"/>
  137. <line x="64.2" y="77"/>
  138. <line x="59.25" y="66.5"/>
  139. <close/>
  140. </path>
  141. <fill/>
  142. <path>
  143. <move x="25.7" y="56.2"/>
  144. <line x="22.5" y="59"/>
  145. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="22.5" x-axis-rotation="0" y="16.25"/>
  146. <line x="25.7" y="19.1"/>
  147. <arc large-arc-flag="0" rx="26" ry="26" sweep-flag="0" x="25.7" x-axis-rotation="0" y="56.2"/>
  148. <close/>
  149. </path>
  150. <fill/>
  151. <path>
  152. <move x="32.5" y="50.5"/>
  153. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="32.5" x-axis-rotation="0" y="23.8"/>
  154. <line x="35.6" y="26"/>
  155. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="35.6" x-axis-rotation="0" y="48"/>
  156. <close/>
  157. <close/>
  158. </path>
  159. <fill/>
  160. <path>
  161. <move x="67" y="24"/>
  162. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="67" x-axis-rotation="0" y="51"/>
  163. <line x="64.3" y="48.5"/>
  164. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="64.3" x-axis-rotation="0" y="26.5"/>
  165. <close/>
  166. <close/>
  167. </path>
  168. <fill/>
  169. <path>
  170. <move x="78" y="16.8"/>
  171. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="78" x-axis-rotation="0" y="59.2"/>
  172. <line x="75" y="56.5"/>
  173. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="75" x-axis-rotation="0" y="19.5"/>
  174. <close/>
  175. <close/>
  176. </path>
  177. <fill/>
  178. </foreground>
  179. </shape>
  180. <shape aspect="variable" h="157" name="Call Pad" strokewidth="inherit" w="146">
  181. <connections>
  182. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  183. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  184. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  185. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  186. </connections>
  187. <background>
  188. <fillcolor color="#48d070"/>
  189. <roundrect arcsize="13.64" h="22" w="146" x="0" y="135"/>
  190. </background>
  191. <foreground>
  192. <fill/>
  193. <fontcolor color="#222222"/>
  194. <fontsize size="12"/>
  195. <text str="1" align="center" valign="middle" x="15" y="14"/>
  196. <text str="2" align="center" valign="middle" x="73" y="14"/>
  197. <text str="3" align="center" valign="middle" x="131" y="14"/>
  198. <text str="4" align="center" valign="middle" x="15" y="47"/>
  199. <text str="5" align="center" valign="middle" x="73" y="47"/>
  200. <text str="6" align="center" valign="middle" x="131" y="47"/>
  201. <text str="7" align="center" valign="middle" x="15" y="80"/>
  202. <text str="8" align="center" valign="middle" x="73" y="80"/>
  203. <text str="9" align="center" valign="middle" x="131" y="80"/>
  204. <text str="0" align="center" valign="middle" x="73" y="112.5"/>
  205. <text str="*" align="center" valign="middle" x="15" y="112.5"/>
  206. <text str="#" align="center" valign="middle" x="131" y="112.5"/>
  207. <fontsize size="7"/>
  208. <fontcolor color="#c0c0c0"/>
  209. <text str="ABC" align="center" valign="middle" x="73" y="23"/>
  210. <text str="DEF" align="center" valign="middle" x="131" y="23"/>
  211. <text str="GHI" align="center" valign="middle" x="15" y="56"/>
  212. <text str="JKL" align="center" valign="middle" x="73" y="56"/>
  213. <text str="MNO" align="center" valign="middle" x="131" y="56"/>
  214. <text str="PQRS" align="center" valign="middle" x="15" y="89"/>
  215. <text str="TUV" align="center" valign="middle" x="73" y="89"/>
  216. <text str="WXYZ" align="center" valign="middle" x="131" y="89"/>
  217. <text str="+" align="center" valign="middle" x="73" y="121.5"/>
  218. <strokecolor color="#c0c0c0"/>
  219. <ellipse h="30" w="30" x="0" y="0"/>
  220. <stroke/>
  221. <ellipse h="30" w="30" x="0" y="33"/>
  222. <stroke/>
  223. <ellipse h="30" w="30" x="0" y="66"/>
  224. <stroke/>
  225. <ellipse h="30" w="30" x="0" y="99"/>
  226. <stroke/>
  227. <ellipse h="30" w="30" x="58" y="0"/>
  228. <stroke/>
  229. <ellipse h="30" w="30" x="58" y="33"/>
  230. <stroke/>
  231. <ellipse h="30" w="30" x="58" y="66"/>
  232. <stroke/>
  233. <ellipse h="30" w="30" x="58" y="99"/>
  234. <stroke/>
  235. <ellipse h="30" w="30" x="116" y="0"/>
  236. <stroke/>
  237. <ellipse h="30" w="30" x="116" y="33"/>
  238. <stroke/>
  239. <ellipse h="30" w="30" x="116" y="66"/>
  240. <stroke/>
  241. <ellipse h="30" w="30" x="116" y="99"/>
  242. <stroke/>
  243. <fontcolor color="#ffffff"/>
  244. <text str="Call" valign="bottom" x="70" y="150"/>
  245. </foreground>
  246. </shape>
  247. <shape aspect="variable" h="60" name="Check" strokewidth="inherit" w="70">
  248. <connections>
  249. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  250. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  251. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  252. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  253. </connections>
  254. <background>
  255. <path>
  256. <move x="0" y="30"/>
  257. <line x="15" y="60"/>
  258. <line x="70" y="0"/>
  259. </path>
  260. </background>
  261. <foreground>
  262. <stroke/>
  263. </foreground>
  264. </shape>
  265. <shape aspect="variable" h="100" name="Circle" strokewidth="inherit" w="100">
  266. <connections>
  267. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  268. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  269. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  270. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  271. </connections>
  272. <foreground>
  273. <ellipse h="100" w="100" x="0" y="0"/>
  274. <stroke/>
  275. </foreground>
  276. </shape>
  277. <shape aspect="variable" h="30" name="Contacts Bar" strokewidth="inherit" w="174">
  278. <connections>
  279. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  280. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  281. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  282. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  283. </connections>
  284. <background>
  285. <rect h="30" w="174" x="0" y="0"/>
  286. </background>
  287. <foreground>
  288. <fill/>
  289. <strokewidth width="2"/>
  290. <path>
  291. <move x="23" y="5.33"/>
  292. <line x="11" y="15.33"/>
  293. <line x="23" y="25.33"/>
  294. <move x="47" y="5.33"/>
  295. <line x="59.33" y="15.33"/>
  296. <line x="47" y="25.33"/>
  297. <move x="88.6" y="8.8"/>
  298. <line x="94.67" y="8.8"/>
  299. <line x="94.67" y="25"/>
  300. <line x="77.67" y="25"/>
  301. <line x="77.67" y="8.8"/>
  302. <line x="83.74" y="8.8"/>
  303. <move x="81.31" y="8.28"/>
  304. <line x="86.17" y="5.33"/>
  305. <line x="91.02" y="8.28"/>
  306. <move x="86.17" y="5.33"/>
  307. <line x="86.17" y="19.22"/>
  308. <move x="110.83" y="24"/>
  309. <arc large-arc-flag="0" rx="11.21" ry="11.21" sweep-flag="1" x="109.67" x-axis-rotation="0" y="22.83"/>
  310. <line x="109.67" y="6.5"/>
  311. <arc large-arc-flag="0" rx="8.36" ry="8.36" sweep-flag="1" x="110.83" x-axis-rotation="0" y="5.33"/>
  312. <line x="120.17" y="5.33"/>
  313. <arc large-arc-flag="0" rx="4.38" ry="4.38" sweep-flag="1" x="121.33" x-axis-rotation="0" y="6.5"/>
  314. <arc large-arc-flag="0" rx="3.89" ry="3.89" sweep-flag="1" x="122.5" x-axis-rotation="0" y="5.33"/>
  315. <line x="131.83" y="5.33"/>
  316. <arc large-arc-flag="0" rx="1.17" ry="1.17" sweep-flag="1" x="133" x-axis-rotation="0" y="6.5"/>
  317. <line x="133" y="22.83"/>
  318. <arc large-arc-flag="0" rx="7.32" ry="7.32" sweep-flag="1" x="131.83" x-axis-rotation="0" y="24"/>
  319. <close/>
  320. <move x="121.33" y="6.5"/>
  321. <line x="121.33" y="25.17"/>
  322. <move x="144.67" y="5.33"/>
  323. <line x="165.97" y="5.33"/>
  324. <line x="165.97" y="7.7"/>
  325. <line x="168.33" y="7.7"/>
  326. <line x="168.33" y="23.08"/>
  327. <line x="147.03" y="23.08"/>
  328. <line x="147.03" y="20.72"/>
  329. <line x="144.67" y="20.72"/>
  330. <close/>
  331. <move x="147.03" y="20.72"/>
  332. <line x="147.03" y="7.7"/>
  333. <line x="165.97" y="7.7"/>
  334. </path>
  335. <stroke/>
  336. </foreground>
  337. </shape>
  338. <shape aspect="variable" h="100" name="Current Location" strokewidth="inherit" w="100">
  339. <connections>
  340. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  341. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  342. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  343. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  344. </connections>
  345. <background>
  346. <save/>
  347. <ellipse h="100" w="100" x="0" y="0"/>
  348. </background>
  349. <foreground>
  350. <fillcolor color="#c6e2ff"/>
  351. <alpha alpha="0.5"/>
  352. <fill/>
  353. <restore/>
  354. <rect/>
  355. <stroke/>
  356. <strokewidth width="2"/>
  357. <ellipse h="20" w="20" x="40" y="40"/>
  358. <fillstroke/>
  359. </foreground>
  360. </shape>
  361. <shape aspect="variable" h="100" name="Delete" strokewidth="inherit" w="100">
  362. <connections>
  363. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  364. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  365. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  366. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  367. </connections>
  368. <background>
  369. <ellipse h="100" w="100" x="0" y="0"/>
  370. </background>
  371. <foreground>
  372. <fill/>
  373. <strokewidth width="2"/>
  374. <path>
  375. <move x="20" y="50"/>
  376. <line x="80" y="50"/>
  377. </path>
  378. <stroke/>
  379. </foreground>
  380. </shape>
  381. <shape aspect="variable" h="60" name="Down" strokewidth="inherit" w="100">
  382. <connections>
  383. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  384. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  385. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  386. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  387. </connections>
  388. <background>
  389. <path>
  390. <move x="0" y="0"/>
  391. <line x="50" y="60"/>
  392. <line x="100" y="0"/>
  393. </path>
  394. </background>
  395. <foreground>
  396. <stroke/>
  397. </foreground>
  398. </shape>
  399. <shape aspect="variable" h="100" name="Dunno5" strokewidth="inherit" w="100">
  400. <connections>
  401. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  402. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  403. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  404. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  405. </connections>
  406. <background>
  407. <ellipse h="100" w="100" x="0" y="0"/>
  408. </background>
  409. <foreground>
  410. <fill/>
  411. <strokewidth width="2"/>
  412. <ellipse h="80" w="80" x="10" y="10"/>
  413. <stroke/>
  414. </foreground>
  415. </shape>
  416. <shape aspect="variable" h="95" name="Dunno6" strokewidth="inherit" w="100">
  417. <connections>
  418. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  419. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  420. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  421. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  422. </connections>
  423. <background>
  424. <ellipse h="60" w="60" x="0" y="35"/>
  425. </background>
  426. <foreground>
  427. <fillcolor color="#999999"/>
  428. <alpha alpha="0.7"/>
  429. <fill/>
  430. <fillcolor color="#555555"/>
  431. <ellipse h="60" w="60" x="20" y="0"/>
  432. <fill/>
  433. <fillcolor color="#000000"/>
  434. <ellipse h="60" w="60" x="40" y="35"/>
  435. <fill/>
  436. </foreground>
  437. </shape>
  438. <shape aspect="variable" h="30" name="Edit Bar" strokewidth="inherit" w="174">
  439. <connections>
  440. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  441. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  442. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  443. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  444. </connections>
  445. <background>
  446. <rect h="30" w="174" x="0" y="0"/>
  447. </background>
  448. <foreground>
  449. <fill/>
  450. <rect h="17.33" w="16.98" x="9" y="7.01"/>
  451. <stroke/>
  452. <path>
  453. <move x="26.36" y="5.66"/>
  454. <arc large-arc-flag="0" rx="6.64" ry="6.78" sweep-flag="1" x="27.3" x-axis-rotation="0" y="6.62"/>
  455. <line x="15.6" y="18.56"/>
  456. <arc large-arc-flag="0" rx="4.66" ry="4.76" sweep-flag="1" x="14.66" x-axis-rotation="0" y="17.6"/>
  457. <close/>
  458. <move x="42.33" y="12.16"/>
  459. <line x="49.43" y="5.33"/>
  460. <line x="49.43" y="9.88"/>
  461. <arc large-arc-flag="0" rx="11.54" ry="14.78" sweep-flag="1" x="60.08" x-axis-rotation="0" y="24.67"/>
  462. <arc large-arc-flag="0" rx="10.65" ry="13.65" sweep-flag="0" x="49.43" x-axis-rotation="0" y="15.57"/>
  463. <line x="49.43" y="20.12"/>
  464. <close/>
  465. <move x="88.6" y="8.8"/>
  466. <line x="94.67" y="8.8"/>
  467. <line x="94.67" y="25"/>
  468. <line x="77.67" y="25"/>
  469. <line x="77.67" y="8.8"/>
  470. <line x="83.74" y="8.8"/>
  471. <move x="81.31" y="8.28"/>
  472. <line x="86.17" y="5.33"/>
  473. <line x="91.02" y="8.28"/>
  474. <move x="86.17" y="5.33"/>
  475. <line x="86.17" y="19.22"/>
  476. <move x="110" y="8.61"/>
  477. <arc large-arc-flag="0" rx="7.98" ry="7.98" sweep-flag="1" x="111.11" x-axis-rotation="0" y="7.5"/>
  478. <line x="113.34" y="7.5"/>
  479. <arc large-arc-flag="0" rx="6.72" ry="6.72" sweep-flag="1" x="114.45" x-axis-rotation="0" y="8.61"/>
  480. <line x="131.14" y="8.61"/>
  481. <arc large-arc-flag="0" rx="1.11" ry="1.11" sweep-flag="1" x="132.25" x-axis-rotation="0" y="9.72"/>
  482. <line x="132.25" y="20.85"/>
  483. <arc large-arc-flag="0" rx="5.71" ry="5.71" sweep-flag="1" x="131.14" x-axis-rotation="0" y="21.96"/>
  484. <line x="111.11" y="21.96"/>
  485. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="110" x-axis-rotation="0" y="20.85"/>
  486. <close/>
  487. <move x="110" y="9.72"/>
  488. <line x="132.25" y="9.72"/>
  489. <move x="148.5" y="6.23"/>
  490. <line x="164.25" y="6.23"/>
  491. <line x="163.27" y="6.23"/>
  492. <line x="162.28" y="23.95"/>
  493. <arc large-arc-flag="0" rx="8.1" ry="8.1" sweep-flag="1" x="161.3" x-axis-rotation="0" y="24.94"/>
  494. <line x="151.45" y="24.94"/>
  495. <arc large-arc-flag="0" rx="9.31" ry="9.31" sweep-flag="1" x="150.47" x-axis-rotation="0" y="23.95"/>
  496. <line x="149.48" y="6.23"/>
  497. <line x="148.5" y="6.23"/>
  498. <close/>
  499. <move x="154.41" y="6.23"/>
  500. <arc large-arc-flag="0" rx="3.46" ry="3.46" sweep-flag="1" x="155.39" x-axis-rotation="0" y="5.25"/>
  501. <line x="157.36" y="5.25"/>
  502. <arc large-arc-flag="0" rx="2.33" ry="2.33" sweep-flag="1" x="158.34" x-axis-rotation="0" y="6.23"/>
  503. <move x="156.38" y="7.22"/>
  504. <line x="156.38" y="23.95"/>
  505. <move x="159.82" y="7.22"/>
  506. <line x="159.33" y="23.95"/>
  507. <move x="152.93" y="7.22"/>
  508. <line x="153.42" y="23.95"/>
  509. </path>
  510. <stroke/>
  511. </foreground>
  512. </shape>
  513. <shape aspect="variable" h="18" name="Expand" strokewidth="inherit" w="98.54">
  514. <connections>
  515. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  516. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  517. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  518. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  519. </connections>
  520. <background>
  521. <path>
  522. <move x="2.77" y="10.3"/>
  523. <line x="49.27" y="0"/>
  524. <line x="95.77" y="10.3"/>
  525. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="94.27" x-axis-rotation="0" y="18"/>
  526. <line x="49.27" y="8"/>
  527. <line x="4.27" y="18"/>
  528. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="2.77" x-axis-rotation="0" y="10.3"/>
  529. <close/>
  530. </path>
  531. </background>
  532. <foreground>
  533. <fill/>
  534. </foreground>
  535. </shape>
  536. <shape aspect="variable" h="100" name="Flagged" strokewidth="inherit" w="100">
  537. <connections>
  538. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  539. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  540. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  541. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  542. </connections>
  543. <background>
  544. <path>
  545. <move x="50" y="0"/>
  546. <line x="50" y="100"/>
  547. <move x="0" y="50"/>
  548. <line x="100" y="50"/>
  549. </path>
  550. </background>
  551. <foreground>
  552. <stroke/>
  553. </foreground>
  554. </shape>
  555. <shape aspect="variable" h="100" name="Increase" strokewidth="inherit" w="100">
  556. <connections>
  557. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  558. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  559. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  560. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  561. </connections>
  562. <background>
  563. <ellipse h="100" w="100" x="0" y="0"/>
  564. </background>
  565. <foreground>
  566. <strokewidth width="2"/>
  567. <fillstroke/>
  568. <path>
  569. <move x="50" y="20"/>
  570. <line x="50" y="80"/>
  571. <move x="20" y="50"/>
  572. <line x="80" y="50"/>
  573. </path>
  574. <stroke/>
  575. </foreground>
  576. </shape>
  577. <shape aspect="variable" h="100" name="Info" strokewidth="inherit" w="100">
  578. <connections>
  579. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  580. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  581. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  582. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  583. </connections>
  584. <background>
  585. <ellipse h="100" w="100" x="0" y="0"/>
  586. </background>
  587. <foreground>
  588. <strokewidth width="2"/>
  589. <fillstroke/>
  590. <fillcolor color="#0080f0"/>
  591. <path>
  592. <move x="42" y="35"/>
  593. <line x="55" y="35"/>
  594. <line x="55" y="80"/>
  595. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="58" x-axis-rotation="0" y="83"/>
  596. <line x="42" y="83"/>
  597. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="45" x-axis-rotation="0" y="80"/>
  598. <line x="45" y="38"/>
  599. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="42" x-axis-rotation="0" y="35"/>
  600. </path>
  601. <fill/>
  602. <ellipse h="10" w="10" x="45" y="20"/>
  603. <fill/>
  604. </foreground>
  605. </shape>
  606. <shape aspect="variable" h="693" name="Ipad10Inch" strokewidth="inherit" w="488">
  607. <connections/>
  608. <background/>
  609. <foreground>
  610. <path>
  611. <move x="0" y="25"/>
  612. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="25" x-axis-rotation="0" y="0"/>
  613. <line x="463" y="0"/>
  614. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="488" x-axis-rotation="0" y="25"/>
  615. <line x="488" y="668"/>
  616. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="463" x-axis-rotation="0" y="693"/>
  617. <line x="25" y="693"/>
  618. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="0" x-axis-rotation="0" y="668"/>
  619. <close/>
  620. </path>
  621. <fillstroke/>
  622. <ellipse h="5" w="5" x="241.5" y="26.5"/>
  623. <stroke/>
  624. <rect h="586" w="442" x="23" y="53"/>
  625. <stroke/>
  626. <ellipse h="30" w="30" x="229" y="651"/>
  627. <stroke/>
  628. <path>
  629. <move x="239" y="663"/>
  630. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="241.5" x-axis-rotation="0" y="660.5"/>
  631. <line x="247" y="660.5"/>
  632. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="249" x-axis-rotation="0" y="663"/>
  633. <line x="249" y="669"/>
  634. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="246.5" x-axis-rotation="0" y="671.5"/>
  635. <line x="241.5" y="671.5"/>
  636. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="239" x-axis-rotation="0" y="669"/>
  637. <close/>
  638. </path>
  639. <stroke/>
  640. </foreground>
  641. </shape>
  642. <shape aspect="variable" h="813" name="Ipad13Inch" strokewidth="inherit" w="572">
  643. <connections/>
  644. <background>
  645. <path>
  646. <move x="0" y="30"/>
  647. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="30" x-axis-rotation="0" y="0"/>
  648. <line x="542" y="0"/>
  649. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="572" x-axis-rotation="0" y="30"/>
  650. <line x="572" y="783"/>
  651. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="542" x-axis-rotation="0" y="813"/>
  652. <line x="30" y="813"/>
  653. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="0" x-axis-rotation="0" y="783"/>
  654. <close/>
  655. </path>
  656. </background>
  657. <foreground>
  658. <fillstroke/>
  659. <fillcolor color="none"/>
  660. <ellipse h="8" w="8" x="282" y="32"/>
  661. <stroke/>
  662. <rect h="672" w="506" x="33" y="69"/>
  663. <stroke/>
  664. <ellipse h="30" w="30" x="271" y="766"/>
  665. <stroke/>
  666. <path>
  667. <move x="281.17" y="778.22"/>
  668. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="283.67" x-axis-rotation="0" y="775.72"/>
  669. <line x="289.17" y="775.72"/>
  670. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="291.17" x-axis-rotation="0" y="778.22"/>
  671. <line x="291.17" y="784.22"/>
  672. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="288.67" x-axis-rotation="0" y="786.72"/>
  673. <line x="283.67" y="786.72"/>
  674. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="281.17" x-axis-rotation="0" y="784.22"/>
  675. <close/>
  676. </path>
  677. <stroke/>
  678. </foreground>
  679. </shape>
  680. <shape aspect="variable" h="549" name="Ipad7Inch" strokewidth="inherit" w="366">
  681. <connections/>
  682. <background/>
  683. <foreground>
  684. <path>
  685. <move x="0" y="25"/>
  686. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="25" x-axis-rotation="0" y="0"/>
  687. <line x="341" y="0"/>
  688. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="366" x-axis-rotation="0" y="25"/>
  689. <line x="366" y="524"/>
  690. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="341" x-axis-rotation="0" y="549"/>
  691. <line x="25" y="549"/>
  692. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="0" x-axis-rotation="0" y="524"/>
  693. <close/>
  694. </path>
  695. <fillstroke/>
  696. <ellipse h="5" w="5" x="180.5" y="26.5"/>
  697. <stroke/>
  698. <rect h="440" w="332" x="17" y="55"/>
  699. <stroke/>
  700. <ellipse h="30" w="30" x="168" y="509"/>
  701. <stroke/>
  702. <path>
  703. <move x="178" y="521"/>
  704. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="180.5" x-axis-rotation="0" y="518.5"/>
  705. <line x="185.5" y="518.5"/>
  706. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="188" x-axis-rotation="0" y="521"/>
  707. <line x="188" y="527"/>
  708. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="185.5" x-axis-rotation="0" y="529.5"/>
  709. <line x="180.5" y="529.5"/>
  710. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="178" x-axis-rotation="0" y="527"/>
  711. <close/>
  712. </path>
  713. <stroke/>
  714. </foreground>
  715. </shape>
  716. <shape aspect="variable" h="400" name="Iphone" strokewidth="inherit" w="200">
  717. <connections/>
  718. <background>
  719. <path>
  720. <move x="0" y="25"/>
  721. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="25" x-axis-rotation="0" y="0"/>
  722. <line x="175" y="0"/>
  723. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="200" x-axis-rotation="0" y="25"/>
  724. <line x="200" y="375"/>
  725. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="175" x-axis-rotation="0" y="400"/>
  726. <line x="25" y="400"/>
  727. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="0" x-axis-rotation="0" y="375"/>
  728. <close/>
  729. </path>
  730. </background>
  731. <foreground>
  732. <fillstroke/>
  733. <fillcolor color="none"/>
  734. <ellipse h="5" w="5" x="97.5" y="15.5"/>
  735. <stroke/>
  736. <rect h="280" w="175" x="12.5" y="60"/>
  737. <stroke/>
  738. <path>
  739. <move x="75" y="34"/>
  740. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="79" x-axis-rotation="0" y="30"/>
  741. <line x="121" y="30"/>
  742. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="125" x-axis-rotation="0" y="34"/>
  743. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="121" x-axis-rotation="0" y="38"/>
  744. <line x="79" y="38"/>
  745. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="75" x-axis-rotation="0" y="34"/>
  746. <close/>
  747. </path>
  748. <stroke/>
  749. <ellipse h="40" w="40" x="80" y="350"/>
  750. <stroke/>
  751. <path>
  752. <move x="91.5" y="364.5"/>
  753. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="94" x-axis-rotation="0" y="362"/>
  754. <line x="106" y="362"/>
  755. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="108.5" x-axis-rotation="0" y="364.5"/>
  756. <line x="108.5" y="376.5"/>
  757. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="106" x-axis-rotation="0" y="379"/>
  758. <line x="94" y="379"/>
  759. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="91.5" x-axis-rotation="0" y="376.5"/>
  760. <close/>
  761. </path>
  762. <stroke/>
  763. </foreground>
  764. </shape>
  765. <shape aspect="variable" h="100" name="Keyboard (Letters)" strokewidth="inherit" w="174">
  766. <connections>
  767. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  768. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  769. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  770. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  771. </connections>
  772. <background>
  773. <rect h="100" w="174" x="0" y="0"/>
  774. </background>
  775. <foreground>
  776. <fillcolor color="#e0e0e0"/>
  777. <fill/>
  778. <fillcolor color="#ffffff"/>
  779. <roundrect arcsize="18.52" h="19" w="13.5" x="46" y="78"/>
  780. <fill/>
  781. <fillcolor color="#c0c0c0"/>
  782. <roundrect arcsize="13.68" h="19" w="18.27" x="23.5" y="78"/>
  783. <fill/>
  784. <strokecolor color="#222222"/>
  785. <ellipse h="12" w="12" x="26.5" y="81.5"/>
  786. <stroke/>
  787. <path>
  788. <move x="26.5" y="87.5"/>
  789. <line x="38.5" y="87.5"/>
  790. <move x="32.5" y="81.5"/>
  791. <line x="32.5" y="93.5"/>
  792. <move x="32.5" y="93.5"/>
  793. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="32.5" x-axis-rotation="0" y="81.5"/>
  794. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="32.5" x-axis-rotation="0" y="93.5"/>
  795. <close/>
  796. <move x="28" y="83.5"/>
  797. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="37" x-axis-rotation="0" y="83.5"/>
  798. <move x="28" y="91.5"/>
  799. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="37" x-axis-rotation="0" y="91.5"/>
  800. <move x="50.5" y="83.5"/>
  801. <arc large-arc-flag="0" rx="2.25" ry="2.25" sweep-flag="1" x="55" x-axis-rotation="0" y="83.5"/>
  802. <line x="55" y="88"/>
  803. <arc large-arc-flag="0" rx="2.25" ry="2.25" sweep-flag="1" x="50.5" x-axis-rotation="0" y="88"/>
  804. <close/>
  805. <move x="49" y="87.5"/>
  806. <line x="49" y="88"/>
  807. <arc large-arc-flag="0" rx="3.75" ry="3.75" sweep-flag="0" x="56.5" x-axis-rotation="0" y="88"/>
  808. <line x="56.5" y="87.5"/>
  809. <move x="52.75" y="91.75"/>
  810. <line x="52.75" y="95"/>
  811. <move x="50.5" y="95"/>
  812. <line x="55" y="95"/>
  813. </path>
  814. <stroke/>
  815. <fillcolor color="#ffffff"/>
  816. <roundrect arcsize="18.52" h="19" w="13.5" x="2" y="3"/>
  817. <fill/>
  818. <roundrect arcsize="18.52" h="19" w="13.5" x="20" y="3"/>
  819. <fill/>
  820. <roundrect arcsize="18.52" h="19" w="13.5" x="38" y="3"/>
  821. <fill/>
  822. <roundrect arcsize="18.52" h="19" w="13.5" x="56" y="3"/>
  823. <fill/>
  824. <roundrect arcsize="13.16" h="19" w="72" x="63" y="78"/>
  825. <fill/>
  826. <roundrect arcsize="18.52" h="19" w="13.5" x="73" y="3"/>
  827. <fill/>
  828. <roundrect arcsize="18.52" h="19" w="13.5" x="90" y="3"/>
  829. <fill/>
  830. <roundrect arcsize="18.52" h="19" w="13.5" x="107" y="3"/>
  831. <fill/>
  832. <roundrect arcsize="18.52" h="19" w="13.5" x="124" y="3"/>
  833. <fill/>
  834. <roundrect arcsize="18.52" h="19" w="13.5" x="141" y="3"/>
  835. <fill/>
  836. <roundrect arcsize="18.52" h="19" w="13.5" x="158" y="3"/>
  837. <fill/>
  838. <roundrect arcsize="18.52" h="19" w="13.5" x="11" y="29"/>
  839. <fill/>
  840. <roundrect arcsize="18.52" h="19" w="13.5" x="29" y="29"/>
  841. <fill/>
  842. <roundrect arcsize="18.52" h="19" w="13.5" x="47" y="29"/>
  843. <fill/>
  844. <roundrect arcsize="18.52" h="19" w="13.5" x="65" y="29"/>
  845. <fill/>
  846. <roundrect arcsize="18.52" h="19" w="13.5" x="82" y="29"/>
  847. <fill/>
  848. <roundrect arcsize="18.52" h="19" w="13.5" x="99" y="29"/>
  849. <fill/>
  850. <roundrect arcsize="18.52" h="19" w="13.5" x="116" y="29"/>
  851. <fill/>
  852. <roundrect arcsize="18.52" h="19" w="13.5" x="133" y="29"/>
  853. <fill/>
  854. <roundrect arcsize="18.52" h="19" w="13.5" x="150" y="29"/>
  855. <fill/>
  856. <roundrect arcsize="18.52" h="19" w="13.5" x="133" y="53.5"/>
  857. <fill/>
  858. <roundrect arcsize="18.52" h="19" w="13.5" x="116" y="53.5"/>
  859. <fill/>
  860. <roundrect arcsize="18.52" h="19" w="13.5" x="99" y="53.5"/>
  861. <fill/>
  862. <roundrect arcsize="18.52" h="19" w="13.5" x="82" y="53.5"/>
  863. <fill/>
  864. <roundrect arcsize="18.52" h="19" w="13.5" x="65" y="53.5"/>
  865. <fill/>
  866. <roundrect arcsize="18.52" h="19" w="13.5" x="47" y="53.5"/>
  867. <fill/>
  868. <roundrect arcsize="18.52" h="19" w="13.5" x="29" y="53.5"/>
  869. <fill/>
  870. <fillcolor color="#c0c0c0"/>
  871. <roundrect arcsize="13.16" h="19" w="21.9" x="150" y="53.5"/>
  872. <fill/>
  873. <roundrect arcsize="13.16" h="19" w="22" x="2" y="53.5"/>
  874. <fill/>
  875. <roundrect arcsize="13.68" h="19" w="18.27" x="2" y="78"/>
  876. <fill/>
  877. <roundrect arcsize="13.16" h="19" w="34" x="138" y="78"/>
  878. <fill/>
  879. <strokecolor color="#222222"/>
  880. <linejoin join="round"/>
  881. <linecap cap="round"/>
  882. <path>
  883. <move x="11" y="63"/>
  884. <line x="9" y="63"/>
  885. <line x="13" y="58"/>
  886. <line x="17" y="63"/>
  887. <line x="15" y="63"/>
  888. <line x="15" y="67"/>
  889. <line x="11" y="67"/>
  890. <close/>
  891. <move x="159" y="59"/>
  892. <line x="167" y="59"/>
  893. <line x="167" y="67"/>
  894. <line x="159" y="67"/>
  895. <line x="155" y="63"/>
  896. <close/>
  897. <move x="161" y="61"/>
  898. <line x="165" y="65"/>
  899. <move x="165" y="61"/>
  900. <line x="161" y="65"/>
  901. </path>
  902. <stroke/>
  903. <fontsize size="10"/>
  904. <text str="Q" align="center" valign="middle" x="9" y="12.5"/>
  905. <text str="W" align="center" valign="middle" x="27" y="12.5"/>
  906. <text str="E" align="center" valign="middle" x="44.5" y="12.5"/>
  907. <text str="R" align="center" valign="middle" x="62.5" y="12.5"/>
  908. <text str="T" align="center" valign="middle" x="80" y="12.5"/>
  909. <text str="Y" align="center" valign="middle" x="97" y="12.5"/>
  910. <text str="U" align="center" valign="middle" x="113.5" y="12.5"/>
  911. <text str="I" align="center" valign="middle" x="131" y="12.5"/>
  912. <text str="O" align="center" valign="middle" x="147.5" y="12.5"/>
  913. <text str="P" align="center" valign="middle" x="164.5" y="12.5"/>
  914. <text str="A" align="center" valign="middle" x="17.5" y="38"/>
  915. <text str="S" align="center" valign="middle" x="35.5" y="38"/>
  916. <text str="D" align="center" valign="middle" x="53.5" y="38"/>
  917. <text str="F" align="center" valign="middle" x="72" y="38"/>
  918. <text str="G" align="center" valign="middle" x="88.5" y="38"/>
  919. <text str="H" align="center" valign="middle" x="106" y="38"/>
  920. <text str="J" align="center" valign="middle" x="123" y="38"/>
  921. <text str="K" align="center" valign="middle" x="139.5" y="38"/>
  922. <text str="L" align="center" valign="middle" x="156.5" y="38"/>
  923. <text str="Z" align="center" valign="middle" x="35.5" y="63"/>
  924. <text str="X" align="center" valign="middle" x="53.5" y="63"/>
  925. <text str="C" align="center" valign="middle" x="71.5" y="63"/>
  926. <text str="V" align="center" valign="middle" x="88.5" y="63"/>
  927. <text str="B" align="center" valign="middle" x="105.5" y="63"/>
  928. <text str="N" align="center" valign="middle" x="122.5" y="63"/>
  929. <text str="M" align="center" valign="middle" x="139" y="63"/>
  930. <text str="123" align="center" valign="middle" x="11" y="86.5"/>
  931. <text str="space" align="center" valign="middle" x="97.5" y="86.5"/>
  932. <text str="return" align="center" valign="middle" x="154.5" y="86.78"/>
  933. </foreground>
  934. </shape>
  935. <shape aspect="variable" h="100" name="Left" strokewidth="inherit" w="60">
  936. <connections>
  937. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  938. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  939. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  940. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  941. </connections>
  942. <background>
  943. <path>
  944. <move x="60" y="0"/>
  945. <line x="0" y="50"/>
  946. <line x="60" y="100"/>
  947. </path>
  948. </background>
  949. <foreground>
  950. <stroke/>
  951. </foreground>
  952. </shape>
  953. <shape aspect="variable" h="100" name="Link" strokewidth="inherit" w="100">
  954. <connections/>
  955. <background>
  956. <path>
  957. <move x="0" y="20"/>
  958. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  959. <line x="80" y="0"/>
  960. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  961. <line x="100" y="80"/>
  962. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  963. <line x="20" y="100"/>
  964. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  965. <close/>
  966. </path>
  967. </background>
  968. <foreground>
  969. <fillstroke/>
  970. <strokecolor color="none"/>
  971. <fillcolor color="#ffffff"/>
  972. <path>
  973. <move x="29" y="58"/>
  974. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="20.4" x-axis-rotation="0" y="45.8"/>
  975. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="32.8" x-axis-rotation="0" y="29.2"/>
  976. <line x="57" y="29.2"/>
  977. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="69" x-axis-rotation="0" y="45.8"/>
  978. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="56" x-axis-rotation="0" y="60"/>
  979. <line x="43" y="60"/>
  980. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="43" x-axis-rotation="0" y="55.2"/>
  981. <line x="53" y="55.2"/>
  982. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="63.5" x-axis-rotation="0" y="45.8"/>
  983. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="53" x-axis-rotation="0" y="34.4"/>
  984. <line x="36" y="34.4"/>
  985. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="25.8" x-axis-rotation="0" y="45.8"/>
  986. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="30" x-axis-rotation="0" y="53"/>
  987. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="29" x-axis-rotation="0" y="58"/>
  988. <close/>
  989. </path>
  990. <fill/>
  991. <path>
  992. <move x="58.2" y="47"/>
  993. <line x="45.2" y="47"/>
  994. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="38" x-axis-rotation="0" y="57.4"/>
  995. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="45.2" x-axis-rotation="0" y="67.2"/>
  996. <line x="65.6" y="67.2"/>
  997. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="76" x-axis-rotation="0" y="57.4"/>
  998. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="71.5" x-axis-rotation="0" y="48.4"/>
  999. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="72" x-axis-rotation="0" y="43.2"/>
  1000. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="81" x-axis-rotation="0" y="57.4"/>
  1001. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="69" x-axis-rotation="0" y="72"/>
  1002. <line x="45.2" y="72"/>
  1003. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="32.6" x-axis-rotation="0" y="57.4"/>
  1004. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="45.2" x-axis-rotation="0" y="42"/>
  1005. <line x="58.2" y="42"/>
  1006. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="58.2" x-axis-rotation="0" y="47"/>
  1007. <close/>
  1008. </path>
  1009. <fill/>
  1010. </foreground>
  1011. </shape>
  1012. <shape aspect="variable" h="100" name="Loading Circle" strokewidth="inherit" w="100">
  1013. <connections>
  1014. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1015. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1016. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1017. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1018. </connections>
  1019. <background>
  1020. <roundrect arcsize="50" h="25" w="8" x="46" y="0"/>
  1021. </background>
  1022. <foreground>
  1023. <fillcolor color="#cccccc"/>
  1024. <fill/>
  1025. <roundrect arcsize="50" h="8" w="25" x="75" y="46"/>
  1026. <fill/>
  1027. <path>
  1028. <move x="68.33" y="9"/>
  1029. <line x="61.22" y="22.21"/>
  1030. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="63.26" x-axis-rotation="28.28" y="28.98"/>
  1031. <line x="61.5" y="28.03"/>
  1032. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="68.27" x-axis-rotation="28.28" y="26"/>
  1033. <line x="75.38" y="12.79"/>
  1034. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="73.34" x-axis-rotation="28.28" y="6.02"/>
  1035. <line x="75.1" y="6.97"/>
  1036. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="68.33" x-axis-rotation="28.28" y="9"/>
  1037. <close/>
  1038. <move x="87.57" y="24.77"/>
  1039. <line x="74.3" y="31.75"/>
  1040. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="72.2" x-axis-rotation="62.24" y="38.51"/>
  1041. <line x="71.27" y="36.74"/>
  1042. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="78.03" x-axis-rotation="62.24" y="38.83"/>
  1043. <line x="91.3" y="31.85"/>
  1044. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="93.4" x-axis-rotation="62.24" y="25.09"/>
  1045. <line x="94.33" y="26.86"/>
  1046. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="87.57" x-axis-rotation="62.24" y="24.77"/>
  1047. <close/>
  1048. <move x="24.43" y="12.73"/>
  1049. <line x="31.8" y="25.8"/>
  1050. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="38.61" x-axis-rotation="-29.44" y="27.69"/>
  1051. <line x="36.87" y="28.68"/>
  1052. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="38.77" x-axis-rotation="-29.44" y="21.87"/>
  1053. <line x="31.4" y="8.8"/>
  1054. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="24.59" x-axis-rotation="-29.44" y="6.91"/>
  1055. <line x="26.33" y="5.92"/>
  1056. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="24.43" x-axis-rotation="-29.44" y="12.73"/>
  1057. <close/>
  1058. <move x="25.8" y="31.94"/>
  1059. <line x="12.68" y="24.66"/>
  1060. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="5.88" x-axis-rotation="119.02" y="26.61"/>
  1061. <line x="6.85" y="24.86"/>
  1062. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="8.8" x-axis-rotation="119.02" y="31.66"/>
  1063. <line x="21.92" y="38.94"/>
  1064. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="28.72" x-axis-rotation="119.02" y="36.99"/>
  1065. <line x="27.75" y="38.74"/>
  1066. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="25.8" x-axis-rotation="119.02" y="31.94"/>
  1067. <close/>
  1068. </path>
  1069. <fill/>
  1070. <fillcolor color="#000000"/>
  1071. <roundrect arcsize="50" h="8" w="25" x="0" y="46"/>
  1072. <fill/>
  1073. <fillcolor color="#999999"/>
  1074. <path>
  1075. <move x="74" y="68.54"/>
  1076. <line x="87.27" y="75.53"/>
  1077. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="94.03" x-axis-rotation="-62.22" y="73.44"/>
  1078. <line x="93.09" y="75.21"/>
  1079. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="91" x-axis-rotation="-62.22" y="68.46"/>
  1080. <line x="77.73" y="61.47"/>
  1081. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="70.97" x-axis-rotation="-62.22" y="63.56"/>
  1082. <line x="71.91" y="61.79"/>
  1083. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="74" x-axis-rotation="-62.22" y="68.54"/>
  1084. <close/>
  1085. <move x="61.14" y="78.22"/>
  1086. <line x="68.49" y="91.3"/>
  1087. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="75.3" x-axis-rotation="-29.33" y="93.21"/>
  1088. <line x="73.55" y="94.19"/>
  1089. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="75.46" x-axis-rotation="-29.33" y="87.38"/>
  1090. <line x="68.11" y="74.3"/>
  1091. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="61.3" x-axis-rotation="-29.33" y="72.39"/>
  1092. <line x="63.05" y="71.41"/>
  1093. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="61.14" x-axis-rotation="-29.33" y="78.22"/>
  1094. <close/>
  1095. </path>
  1096. <fill/>
  1097. <fillcolor color="#666666"/>
  1098. <roundrect arcsize="50" h="25" w="8" x="46" y="75"/>
  1099. <fill/>
  1100. <path>
  1101. <move x="31.77" y="74.3"/>
  1102. <line x="24.45" y="87.39"/>
  1103. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="26.37" x-axis-rotation="29.24" y="94.2"/>
  1104. <line x="24.62" y="93.22"/>
  1105. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="31.43" x-axis-rotation="29.24" y="91.3"/>
  1106. <line x="38.75" y="78.21"/>
  1107. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="36.83" x-axis-rotation="29.24" y="71.4"/>
  1108. <line x="38.58" y="72.38"/>
  1109. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="31.77" x-axis-rotation="29.24" y="74.3"/>
  1110. <close/>
  1111. </path>
  1112. <fill/>
  1113. <fillcolor color="#333333"/>
  1114. <path>
  1115. <move x="21.82" y="61.2"/>
  1116. <line x="8.8" y="68.65"/>
  1117. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="6.95" x-axis-rotation="60.23" y="75.47"/>
  1118. <line x="5.95" y="73.74"/>
  1119. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="12.78" x-axis-rotation="60.23" y="75.6"/>
  1120. <line x="25.8" y="68.15"/>
  1121. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="27.65" x-axis-rotation="60.23" y="61.33"/>
  1122. <line x="28.65" y="63.06"/>
  1123. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="21.82" x-axis-rotation="60.23" y="61.2"/>
  1124. <close/>
  1125. </path>
  1126. <fill/>
  1127. </foreground>
  1128. </shape>
  1129. <shape aspect="variable" h="30" name="Message Bar" strokewidth="inherit" w="174">
  1130. <connections>
  1131. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1132. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1133. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1134. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1135. </connections>
  1136. <background>
  1137. <rect h="30" w="174" x="0" y="0"/>
  1138. </background>
  1139. <foreground>
  1140. <fill/>
  1141. <path>
  1142. <move x="6.5" y="6.44"/>
  1143. <arc large-arc-flag="0" rx="15.19" ry="15.19" sweep-flag="1" x="16.62" x-axis-rotation="0" y="6.44"/>
  1144. <arc large-arc-flag="0" rx="15.19" ry="15.19" sweep-flag="0" x="26.75" x-axis-rotation="0" y="6.44"/>
  1145. <line x="26.75" y="15.55"/>
  1146. <arc large-arc-flag="0" rx="15.19" ry="15.19" sweep-flag="1" x="16.62" x-axis-rotation="0" y="15.55"/>
  1147. <arc large-arc-flag="0" rx="15.19" ry="15.19" sweep-flag="0" x="6.5" x-axis-rotation="0" y="15.55"/>
  1148. <line x="6.5" y="25.68"/>
  1149. <close/>
  1150. <move x="39.75" y="7.95"/>
  1151. <arc large-arc-flag="0" rx="1.2" ry="1.2" sweep-flag="1" x="40.95" x-axis-rotation="0" y="6.75"/>
  1152. <line x="43.35" y="6.75"/>
  1153. <arc large-arc-flag="0" rx="2.06" ry="2.06" sweep-flag="1" x="44.55" x-axis-rotation="0" y="7.95"/>
  1154. <line x="62.55" y="7.95"/>
  1155. <arc large-arc-flag="0" rx="9.32" ry="9.32" sweep-flag="1" x="63.75" x-axis-rotation="0" y="9.15"/>
  1156. <line x="63.75" y="21.15"/>
  1157. <arc large-arc-flag="0" rx="10.46" ry="10.46" sweep-flag="1" x="62.55" x-axis-rotation="0" y="22.35"/>
  1158. <line x="40.95" y="22.35"/>
  1159. <arc large-arc-flag="0" rx="5.33" ry="5.33" sweep-flag="1" x="39.75" x-axis-rotation="0" y="21.15"/>
  1160. <close/>
  1161. <move x="39.75" y="9.15"/>
  1162. <line x="63.75" y="9.15"/>
  1163. <move x="75.75" y="5"/>
  1164. <line x="98" y="5"/>
  1165. <line x="98" y="8.34"/>
  1166. <line x="96.89" y="8.34"/>
  1167. <line x="96.89" y="25.02"/>
  1168. <line x="76.86" y="25.02"/>
  1169. <line x="76.86" y="8.34"/>
  1170. <line x="75.75" y="8.34"/>
  1171. <close/>
  1172. <move x="76.86" y="8.34"/>
  1173. <line x="96.89" y="8.34"/>
  1174. <move x="92.44" y="10.56"/>
  1175. <arc large-arc-flag="0" rx="7.27" ry="7.27" sweep-flag="1" x="92.44" x-axis-rotation="0" y="12.79"/>
  1176. <line x="81.31" y="12.79"/>
  1177. <arc large-arc-flag="0" rx="2.89" ry="2.89" sweep-flag="1" x="81.31" x-axis-rotation="0" y="10.56"/>
  1178. <close/>
  1179. <move x="109.25" y="12.15"/>
  1180. <line x="118.78" y="5"/>
  1181. <line x="118.78" y="9.77"/>
  1182. <arc large-arc-flag="0" rx="15.49" ry="15.49" sweep-flag="1" x="133.08" x-axis-rotation="0" y="25.25"/>
  1183. <arc large-arc-flag="0" rx="14.3" ry="14.3" sweep-flag="0" x="118.78" x-axis-rotation="0" y="15.72"/>
  1184. <line x="118.78" y="20.49"/>
  1185. <close/>
  1186. </path>
  1187. <stroke/>
  1188. <rect h="18.64" w="18.64" x="146.25" y="6.36"/>
  1189. <stroke/>
  1190. <path>
  1191. <move x="165.3" y="4.91"/>
  1192. <arc large-arc-flag="0" rx="0.63" ry="0.63" sweep-flag="1" x="166.34" x-axis-rotation="0" y="5.95"/>
  1193. <line x="153.5" y="18.79"/>
  1194. <arc large-arc-flag="0" rx="7.66" ry="7.66" sweep-flag="1" x="152.46" x-axis-rotation="0" y="17.75"/>
  1195. <close/>
  1196. </path>
  1197. <fillstroke/>
  1198. </foreground>
  1199. </shape>
  1200. <shape aspect="variable" h="30" name="Misc Bar" strokewidth="inherit" w="174">
  1201. <connections>
  1202. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1203. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1204. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1205. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1206. </connections>
  1207. <background>
  1208. <rect h="30" w="174" x="0" y="0"/>
  1209. </background>
  1210. <foreground>
  1211. <fill/>
  1212. <path>
  1213. <move x="17.25" y="6.75"/>
  1214. <line x="19.72" y="13.05"/>
  1215. <line x="26.25" y="13.05"/>
  1216. <line x="21.05" y="16.45"/>
  1217. <line x="23.55" y="22.95"/>
  1218. <line x="17.25" y="18.88"/>
  1219. <line x="10.95" y="22.95"/>
  1220. <line x="13.45" y="16.45"/>
  1221. <line x="8.25" y="13.05"/>
  1222. <line x="14.8" y="13.05"/>
  1223. <close/>
  1224. <move x="52" y="6.25"/>
  1225. <line x="52" y="15.25"/>
  1226. <line x="47" y="15.25"/>
  1227. <move x="78.8" y="21.15"/>
  1228. <arc large-arc-flag="0" rx="11.2" ry="5.6" sweep-flag="1" x="84.54" x-axis-rotation="0" y="18.69"/>
  1229. <arc large-arc-flag="0" rx="6.27" ry="6.27" sweep-flag="0" x="85.26" x-axis-rotation="0" y="18.08"/>
  1230. <arc large-arc-flag="0" rx="4.47" ry="4.47" sweep-flag="0" x="83.92" x-axis-rotation="0" y="14.59"/>
  1231. <arc large-arc-flag="0" rx="3.06" ry="7.65" sweep-flag="1" x="83.92" x-axis-rotation="0" y="12.34"/>
  1232. <arc large-arc-flag="0" rx="4.54" ry="4.54" sweep-flag="1" x="87" x-axis-rotation="0" y="8.64"/>
  1233. <arc large-arc-flag="0" rx="6.56" ry="6.56" sweep-flag="1" x="90.08" x-axis-rotation="0" y="12.34"/>
  1234. <arc large-arc-flag="0" rx="5.55" ry="13.87" sweep-flag="1" x="90.08" x-axis-rotation="0" y="14.59"/>
  1235. <arc large-arc-flag="0" rx="7.31" ry="7.31" sweep-flag="0" x="88.74" x-axis-rotation="0" y="18.08"/>
  1236. <arc large-arc-flag="0" rx="7.59" ry="7.59" sweep-flag="0" x="89.46" x-axis-rotation="0" y="18.69"/>
  1237. <arc large-arc-flag="0" rx="15.69" ry="7.84" sweep-flag="1" x="95.2" x-axis-rotation="0" y="21.15"/>
  1238. <move x="149" y="19.5"/>
  1239. <line x="163.25" y="19.5"/>
  1240. </path>
  1241. <stroke/>
  1242. <ellipse h="20" w="20" x="42" y="5.25"/>
  1243. <stroke/>
  1244. <ellipse h="20.5" w="20.5" x="76.75" y="4.75"/>
  1245. <stroke/>
  1246. <ellipse h="5.67" w="5.67" x="111.25" y="4.75"/>
  1247. <stroke/>
  1248. <ellipse h="5.67" w="5.67" x="118.54" y="4.75"/>
  1249. <stroke/>
  1250. <ellipse h="5.67" w="5.67" x="125.83" y="4.75"/>
  1251. <stroke/>
  1252. <ellipse h="5.67" w="5.67" x="111.25" y="12.04"/>
  1253. <stroke/>
  1254. <ellipse h="5.67" w="5.67" x="118.54" y="12.04"/>
  1255. <stroke/>
  1256. <ellipse h="5.67" w="5.67" x="125.83" y="12.04"/>
  1257. <stroke/>
  1258. <ellipse h="5.67" w="5.67" x="111.25" y="19.33"/>
  1259. <stroke/>
  1260. <ellipse h="5.67" w="5.67" x="118.54" y="19.33"/>
  1261. <stroke/>
  1262. <ellipse h="5.67" w="5.67" x="125.83" y="19.33"/>
  1263. <stroke/>
  1264. <ellipse h="9.5" w="9.5" x="144.25" y="10"/>
  1265. <stroke/>
  1266. <ellipse h="9.5" w="9.5" x="158.5" y="10"/>
  1267. <stroke/>
  1268. </foreground>
  1269. </shape>
  1270. <shape aspect="variable" h="50" name="More" strokewidth="inherit" w="30">
  1271. <connections>
  1272. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1273. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1274. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1275. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1276. </connections>
  1277. <background>
  1278. <path>
  1279. <move x="0" y="0"/>
  1280. <line x="30" y="25"/>
  1281. <line x="0" y="50"/>
  1282. </path>
  1283. </background>
  1284. <foreground>
  1285. <stroke/>
  1286. </foreground>
  1287. </shape>
  1288. <shape aspect="variable" h="50" name="More 2" strokewidth="inherit" w="40">
  1289. <connections>
  1290. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1291. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1292. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1293. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1294. </connections>
  1295. <background>
  1296. <path>
  1297. <move x="10" y="0"/>
  1298. <line x="40" y="25"/>
  1299. <line x="10" y="50"/>
  1300. <move x="0" y="0"/>
  1301. <line x="30" y="25"/>
  1302. <line x="0" y="50"/>
  1303. </path>
  1304. </background>
  1305. <foreground>
  1306. <stroke/>
  1307. </foreground>
  1308. </shape>
  1309. <shape aspect="variable" h="100" name="Night" strokewidth="inherit" w="100">
  1310. <connections/>
  1311. <background>
  1312. <path>
  1313. <move x="0" y="20"/>
  1314. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1315. <line x="80" y="0"/>
  1316. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1317. <line x="100" y="80"/>
  1318. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1319. <line x="20" y="100"/>
  1320. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1321. <close/>
  1322. </path>
  1323. </background>
  1324. <foreground>
  1325. <fillstroke/>
  1326. <strokecolor color="none"/>
  1327. <fillcolor color="#ffffff"/>
  1328. <path>
  1329. <move x="45" y="22"/>
  1330. <arc large-arc-flag="0" rx="23.7" ry="23.7" sweep-flag="0" x="78" x-axis-rotation="0" y="55.5"/>
  1331. <arc large-arc-flag="1" rx="27" ry="27" sweep-flag="1" x="45" x-axis-rotation="0" y="22"/>
  1332. <close/>
  1333. </path>
  1334. <fill/>
  1335. </foreground>
  1336. </shape>
  1337. <shape aspect="variable" h="100" name="Notification" strokewidth="inherit" w="100">
  1338. <connections/>
  1339. <background>
  1340. <path>
  1341. <move x="0" y="20"/>
  1342. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1343. <line x="80" y="0"/>
  1344. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1345. <line x="100" y="80"/>
  1346. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1347. <line x="20" y="100"/>
  1348. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1349. <close/>
  1350. </path>
  1351. </background>
  1352. <foreground>
  1353. <fillstroke/>
  1354. <strokecolor color="none"/>
  1355. <fillcolor color="#ffffff"/>
  1356. <path>
  1357. <move x="72" y="46.5"/>
  1358. <line x="76" y="46.5"/>
  1359. <line x="76" y="68.5"/>
  1360. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="65" x-axis-rotation="0" y="79.5"/>
  1361. <line x="31.5" y="79.5"/>
  1362. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="20.5" x-axis-rotation="0" y="68.5"/>
  1363. <line x="20.5" y="35"/>
  1364. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="31.5" x-axis-rotation="0" y="24"/>
  1365. <line x="54" y="24"/>
  1366. <line x="54" y="28"/>
  1367. <line x="31.5" y="28"/>
  1368. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="24.5" x-axis-rotation="0" y="35"/>
  1369. <line x="24.5" y="68.5"/>
  1370. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="31.5" x-axis-rotation="0" y="75.5"/>
  1371. <line x="65" y="75.5"/>
  1372. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="72" x-axis-rotation="0" y="68.5"/>
  1373. <close/>
  1374. <close/>
  1375. </path>
  1376. <fill/>
  1377. <ellipse h="26" w="26" x="58.5" y="15.5"/>
  1378. <fill/>
  1379. </foreground>
  1380. </shape>
  1381. <shape aspect="variable" h="132" name="Number Pad" strokewidth="inherit" w="174">
  1382. <connections>
  1383. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1384. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1385. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1386. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1387. </connections>
  1388. <background>
  1389. <rect h="132" w="174" x="0" y="0"/>
  1390. </background>
  1391. <foreground>
  1392. <strokecolor color="#c0c0c0"/>
  1393. <fillcolor color="#e0e0e0"/>
  1394. <fillstroke/>
  1395. <fillcolor color="#c0c0c0"/>
  1396. <rect h="33" w="58" x="0" y="99"/>
  1397. <fill/>
  1398. <strokecolor color="#c0c0c0"/>
  1399. <path>
  1400. <move x="0" y="66"/>
  1401. <line x="174" y="66"/>
  1402. <move x="0" y="33"/>
  1403. <line x="174" y="33"/>
  1404. <move x="0" y="99"/>
  1405. <line x="174" y="99"/>
  1406. <move x="116" y="0"/>
  1407. <line x="116" y="132"/>
  1408. <move x="58" y="0"/>
  1409. <line x="58" y="132"/>
  1410. </path>
  1411. <stroke/>
  1412. <rect h="33" w="58" x="116" y="99"/>
  1413. <fill/>
  1414. <fontsize size="18"/>
  1415. <fontcolor color="#222222"/>
  1416. <text str="1" valign="middle" align="center" x="29" y="13"/>
  1417. <text str="2" valign="middle" align="center" x="87" y="13"/>
  1418. <text str="3" valign="middle" align="center" x="145" y="13"/>
  1419. <text str="4" valign="middle" align="center" x="29" y="47"/>
  1420. <text str="5" valign="middle" align="center" x="87" y="47"/>
  1421. <text str="6" valign="middle" align="center" x="145" y="47"/>
  1422. <text str="7" valign="middle" align="center" x="29" y="80"/>
  1423. <text str="8" valign="middle" align="center" x="87" y="80"/>
  1424. <text str="9" valign="middle" align="center" x="145" y="80"/>
  1425. <text str="0" valign="middle" align="center" x="87" y="112.5"/>
  1426. <fontsize size="10"/>
  1427. <fontcolor color="#c0c0c0"/>
  1428. <text str="ABC" valign="middle" align="center" x="87" y="26"/>
  1429. <text str="DEF" valign="middle" align="center" x="145" y="26"/>
  1430. <text str="GHI" valign="middle" align="center" x="29" y="59"/>
  1431. <text str="JKL" valign="middle" align="center" x="87" y="59"/>
  1432. <text str="MNO" valign="middle" align="center" x="145" y="59"/>
  1433. <text str="PQRS" valign="middle" align="center" x="29" y="92"/>
  1434. <text str="TUV" valign="middle" align="center" x="87" y="92"/>
  1435. <text str="WXYZ" valign="middle" align="center" x="145" y="92"/>
  1436. <strokecolor color="#222222"/>
  1437. <linejoin join="round"/>
  1438. <linecap cap="round"/>
  1439. <path>
  1440. <move x="143" y="111.5"/>
  1441. <line x="151" y="111.5"/>
  1442. <line x="151" y="119.5"/>
  1443. <line x="143" y="119.5"/>
  1444. <line x="139" y="115.5"/>
  1445. <close/>
  1446. <move x="145" y="113.5"/>
  1447. <line x="149" y="117.5"/>
  1448. <move x="149" y="113.5"/>
  1449. <line x="145" y="117.5"/>
  1450. </path>
  1451. <stroke/>
  1452. </foreground>
  1453. </shape>
  1454. <shape aspect="variable" h="50" name="Options" strokewidth="inherit" w="100">
  1455. <connections>
  1456. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1457. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1458. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1459. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1460. </connections>
  1461. <background>
  1462. <path>
  1463. <move x="0" y="0"/>
  1464. <line x="100" y="0"/>
  1465. <line x="100" y="10"/>
  1466. <line x="0" y="10"/>
  1467. <close/>
  1468. <move x="0" y="20"/>
  1469. <line x="100" y="20"/>
  1470. <line x="100" y="30"/>
  1471. <line x="0" y="30"/>
  1472. <close/>
  1473. <move x="0" y="40"/>
  1474. <line x="100" y="40"/>
  1475. <line x="100" y="50"/>
  1476. <line x="0" y="50"/>
  1477. <close/>
  1478. </path>
  1479. </background>
  1480. <foreground>
  1481. <fill/>
  1482. </foreground>
  1483. </shape>
  1484. <shape aspect="variable" h="100" name="Pause" strokewidth="inherit" w="100">
  1485. <connections>
  1486. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1487. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1488. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1489. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1490. </connections>
  1491. <background>
  1492. <ellipse h="100" w="100" x="0" y="0"/>
  1493. </background>
  1494. <foreground>
  1495. <fillstroke/>
  1496. <fillcolor color="#0080f0"/>
  1497. <rect h="50" w="10" x="35" y="25"/>
  1498. <fill/>
  1499. <rect h="50" w="10" x="55" y="25"/>
  1500. <fill/>
  1501. </foreground>
  1502. </shape>
  1503. <shape aspect="variable" h="71" name="Picker" strokewidth="inherit" w="174">
  1504. <connections>
  1505. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1506. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1507. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1508. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1509. </connections>
  1510. <background>
  1511. <path>
  1512. <move x="0" y="29"/>
  1513. <line x="174" y="29"/>
  1514. <move x="0" y="43"/>
  1515. <line x="174" y="43"/>
  1516. </path>
  1517. </background>
  1518. <foreground>
  1519. <stroke/>
  1520. <rect h="71" w="174" x="0" y="0"/>
  1521. </foreground>
  1522. </shape>
  1523. <shape aspect="variable" h="100.08" name="Remove" strokewidth="inherit" w="121">
  1524. <connections>
  1525. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1526. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1527. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1528. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1529. </connections>
  1530. <background>
  1531. <path>
  1532. <move x="0" y="50.04"/>
  1533. <line x="37" y="13.24"/>
  1534. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="71" x-axis-rotation="0" y="0.04"/>
  1535. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="1" x="71" x-axis-rotation="0" y="100.04"/>
  1536. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="37" x-axis-rotation="0" y="86.84"/>
  1537. <close/>
  1538. </path>
  1539. </background>
  1540. <foreground>
  1541. <fill/>
  1542. <strokewidth width="2"/>
  1543. <path>
  1544. <move x="51" y="30.04"/>
  1545. <line x="91" y="70.04"/>
  1546. <move x="91" y="30.04"/>
  1547. <line x="51" y="70.04"/>
  1548. </path>
  1549. <stroke/>
  1550. </foreground>
  1551. </shape>
  1552. <shape aspect="variable" h="100" name="Right" strokewidth="inherit" w="60">
  1553. <connections>
  1554. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1555. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1556. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1557. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1558. </connections>
  1559. <background>
  1560. <path>
  1561. <move x="0" y="0"/>
  1562. <line x="60" y="50"/>
  1563. <line x="0" y="100"/>
  1564. </path>
  1565. </background>
  1566. <foreground>
  1567. <stroke/>
  1568. </foreground>
  1569. </shape>
  1570. <shape aspect="variable" h="10" name="Scroll (Horizontal)" strokewidth="inherit" w="100">
  1571. <connections>
  1572. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1573. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1574. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1575. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1576. </connections>
  1577. <background>
  1578. <path>
  1579. <move x="95" y="0"/>
  1580. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="10"/>
  1581. <line x="5" y="10"/>
  1582. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1583. <close/>
  1584. </path>
  1585. </background>
  1586. <foreground>
  1587. <fill/>
  1588. </foreground>
  1589. </shape>
  1590. <shape aspect="variable" h="100" name="Scroll (Vertical)" strokewidth="inherit" w="10">
  1591. <connections>
  1592. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1593. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1594. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1595. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1596. </connections>
  1597. <background>
  1598. <path>
  1599. <move x="0" y="95"/>
  1600. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="95"/>
  1601. <line x="10" y="5"/>
  1602. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="0" x-axis-rotation="0" y="5"/>
  1603. <close/>
  1604. </path>
  1605. </background>
  1606. <foreground>
  1607. <fill/>
  1608. </foreground>
  1609. </shape>
  1610. <shape aspect="variable" h="100" name="Select" strokewidth="inherit" w="100">
  1611. <connections>
  1612. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1613. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1614. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1615. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1616. </connections>
  1617. <background>
  1618. <ellipse h="100" w="100" x="0" y="0"/>
  1619. </background>
  1620. <foreground>
  1621. <fill/>
  1622. <strokewidth width="2"/>
  1623. <path>
  1624. <move x="20" y="55"/>
  1625. <line x="30" y="70"/>
  1626. <line x="85" y="25"/>
  1627. </path>
  1628. <stroke/>
  1629. </foreground>
  1630. </shape>
  1631. <shape aspect="variable" h="30" name="Select Bar 1" strokewidth="inherit" w="165">
  1632. <connections>
  1633. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1634. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1635. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1636. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1637. </connections>
  1638. <background>
  1639. <path>
  1640. <move x="0" y="5"/>
  1641. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1642. <line x="160" y="0"/>
  1643. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="165" x-axis-rotation="0" y="5"/>
  1644. <line x="165" y="20"/>
  1645. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="160" x-axis-rotation="0" y="25"/>
  1646. <line x="125" y="25"/>
  1647. <line x="120" y="30"/>
  1648. <line x="115" y="25"/>
  1649. <line x="5" y="25"/>
  1650. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="20"/>
  1651. <close/>
  1652. <move x="65" y="0"/>
  1653. <line x="65" y="25"/>
  1654. <move x="145" y="0"/>
  1655. <line x="145" y="25"/>
  1656. </path>
  1657. </background>
  1658. <foreground>
  1659. <fillstroke/>
  1660. <fillcolor color="#ffffff"/>
  1661. <path>
  1662. <move x="152" y="8"/>
  1663. <line x="160" y="12.5"/>
  1664. <line x="152" y="17"/>
  1665. <close/>
  1666. </path>
  1667. <fill/>
  1668. </foreground>
  1669. </shape>
  1670. <shape aspect="variable" h="30" name="Select Bar 2" strokewidth="inherit" w="165">
  1671. <connections>
  1672. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1673. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1674. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1675. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1676. </connections>
  1677. <background>
  1678. <path>
  1679. <move x="0" y="5"/>
  1680. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1681. <line x="160" y="0"/>
  1682. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="165" x-axis-rotation="0" y="5"/>
  1683. <line x="165" y="20"/>
  1684. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="160" x-axis-rotation="0" y="25"/>
  1685. <line x="125" y="25"/>
  1686. <line x="120" y="30"/>
  1687. <line x="115" y="25"/>
  1688. <line x="5" y="25"/>
  1689. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="20"/>
  1690. <close/>
  1691. <move x="42" y="0"/>
  1692. <line x="42" y="25"/>
  1693. <move x="145" y="0"/>
  1694. <line x="145" y="25"/>
  1695. <move x="100" y="0"/>
  1696. <line x="100" y="25"/>
  1697. </path>
  1698. </background>
  1699. <foreground>
  1700. <fillstroke/>
  1701. <fillcolor color="#ffffff"/>
  1702. <path>
  1703. <move x="152" y="8"/>
  1704. <line x="160" y="12.5"/>
  1705. <line x="152" y="17"/>
  1706. <close/>
  1707. </path>
  1708. <fill/>
  1709. </foreground>
  1710. </shape>
  1711. <shape aspect="variable" h="100" name="Settings" strokewidth="inherit" w="100">
  1712. <connections/>
  1713. <background>
  1714. <path>
  1715. <move x="0" y="20"/>
  1716. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1717. <line x="80" y="0"/>
  1718. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1719. <line x="100" y="80"/>
  1720. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1721. <line x="20" y="100"/>
  1722. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1723. <close/>
  1724. </path>
  1725. </background>
  1726. <foreground>
  1727. <fillstroke/>
  1728. <strokecolor color="none"/>
  1729. <fillcolor color="#ffffff"/>
  1730. <path>
  1731. <move x="36" y="30.4"/>
  1732. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="36" x-axis-rotation="0" y="69.6"/>
  1733. <line x="46.6" y="50"/>
  1734. <close/>
  1735. <move x="40" y="71.8"/>
  1736. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="74" x-axis-rotation="0" y="52"/>
  1737. <line x="50.7" y="52"/>
  1738. <close/>
  1739. <move x="74" y="48"/>
  1740. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="40" x-axis-rotation="0" y="28.2"/>
  1741. <line x="50.7" y="48"/>
  1742. <close/>
  1743. <move x="22.1" y="75.7"/>
  1744. <line x="19.2" y="72.4"/>
  1745. <line x="25.8" y="65.8"/>
  1746. <line x="24.4" y="63.7"/>
  1747. <line x="15" y="65"/>
  1748. <line x="13.5" y="60.5"/>
  1749. <line x="21.8" y="57"/>
  1750. <line x="21.3" y="53.7"/>
  1751. <line x="12" y="52.5"/>
  1752. <line x="12.1" y="48"/>
  1753. <line x="21.2" y="47.1"/>
  1754. <line x="21.7" y="44"/>
  1755. <line x="13.6" y="39.3"/>
  1756. <line x="15" y="35.3"/>
  1757. <line x="24.2" y="36.8"/>
  1758. <line x="25.7" y="34.3"/>
  1759. <line x="19" y="28"/>
  1760. <line x="22" y="24.4"/>
  1761. <line x="29.8" y="29.2"/>
  1762. <line x="32.3" y="27"/>
  1763. <line x="29" y="18.4"/>
  1764. <line x="32.5" y="16.3"/>
  1765. <line x="38" y="23.5"/>
  1766. <line x="41.6" y="22.3"/>
  1767. <line x="41.2" y="13"/>
  1768. <line x="45.7" y="12.3"/>
  1769. <line x="48.7" y="20.9"/>
  1770. <line x="51.8" y="21"/>
  1771. <line x="54.5" y="12.3"/>
  1772. <line x="58.7" y="13"/>
  1773. <line x="58.7" y="22.3"/>
  1774. <line x="62" y="23.6"/>
  1775. <line x="66.9" y="15.8"/>
  1776. <line x="70.5" y="18"/>
  1777. <line x="67.2" y="26.7"/>
  1778. <line x="70.2" y="29.2"/>
  1779. <line x="77.8" y="24"/>
  1780. <line x="80.3" y="27"/>
  1781. <line x="74.3" y="33.8"/>
  1782. <line x="75.9" y="36.8"/>
  1783. <line x="85.3" y="35.5"/>
  1784. <line x="86.6" y="39.4"/>
  1785. <line x="78.3" y="43"/>
  1786. <line x="78.7" y="45.8"/>
  1787. <line x="88" y="47"/>
  1788. <line x="88" y="51.6"/>
  1789. <line x="79" y="52.8"/>
  1790. <line x="78.4" y="56.5"/>
  1791. <line x="86.5" y="60.8"/>
  1792. <line x="85.1" y="65"/>
  1793. <line x="75.9" y="63.3"/>
  1794. <line x="74.6" y="65.5"/>
  1795. <line x="80.8" y="72.5"/>
  1796. <line x="77.8" y="76"/>
  1797. <line x="70.4" y="70.8"/>
  1798. <line x="67.5" y="73.3"/>
  1799. <line x="70.5" y="82"/>
  1800. <line x="67" y="84"/>
  1801. <line x="61.5" y="76.7"/>
  1802. <line x="58.2" y="77.9"/>
  1803. <line x="58.8" y="87"/>
  1804. <line x="55.2" y="87.7"/>
  1805. <line x="52" y="79.2"/>
  1806. <line x="48.3" y="79"/>
  1807. <line x="46.2" y="87.7"/>
  1808. <line x="41.2" y="87.2"/>
  1809. <line x="41.8" y="78"/>
  1810. <line x="38.6" y="76.8"/>
  1811. <line x="33.5" y="84.5"/>
  1812. <line x="29.6" y="82"/>
  1813. <line x="33" y="73.6"/>
  1814. <line x="29.5" y="70.6"/>
  1815. <close/>
  1816. </path>
  1817. <fill/>
  1818. </foreground>
  1819. </shape>
  1820. <shape aspect="variable" h="90" name="Star" strokewidth="inherit" w="100">
  1821. <connections>
  1822. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1823. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1824. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1825. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1826. </connections>
  1827. <background>
  1828. <path>
  1829. <move x="50" y="0"/>
  1830. <line x="63.7" y="35"/>
  1831. <line x="100" y="35"/>
  1832. <line x="71.1" y="53.9"/>
  1833. <line x="85" y="90"/>
  1834. <line x="50" y="67.4"/>
  1835. <line x="15" y="90"/>
  1836. <line x="28.9" y="53.9"/>
  1837. <line x="0" y="35"/>
  1838. <line x="36.4" y="35"/>
  1839. <close/>
  1840. </path>
  1841. </background>
  1842. <foreground>
  1843. <strokecolor color="none"/>
  1844. <fill/>
  1845. </foreground>
  1846. </shape>
  1847. <shape aspect="variable" h="100" name="Switch" strokewidth="inherit" w="100">
  1848. <connections/>
  1849. <background>
  1850. <path>
  1851. <move x="0" y="20"/>
  1852. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1853. <line x="80" y="0"/>
  1854. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1855. <line x="100" y="80"/>
  1856. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1857. <line x="20" y="100"/>
  1858. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1859. <close/>
  1860. </path>
  1861. </background>
  1862. <foreground>
  1863. <fillstroke/>
  1864. <strokecolor color="none"/>
  1865. <fillcolor color="#ffffff"/>
  1866. <path>
  1867. <move x="22" y="30"/>
  1868. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="38" x-axis-rotation="0" y="14"/>
  1869. <line x="62" y="14"/>
  1870. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="78" x-axis-rotation="0" y="30"/>
  1871. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="62" x-axis-rotation="0" y="46"/>
  1872. <line x="38" y="46"/>
  1873. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="22" x-axis-rotation="0" y="30"/>
  1874. <close/>
  1875. <move x="25.5" y="30"/>
  1876. <arc large-arc-flag="0" rx="12.5" ry="12.5" sweep-flag="0" x="38" x-axis-rotation="0" y="42.5"/>
  1877. <line x="62" y="42.5"/>
  1878. <arc large-arc-flag="0" rx="12.5" ry="12.5" sweep-flag="0" x="74.5" x-axis-rotation="0" y="30"/>
  1879. <arc large-arc-flag="0" rx="12.5" ry="12.5" sweep-flag="0" x="62" x-axis-rotation="0" y="17.5"/>
  1880. <line x="38" y="17.5"/>
  1881. <arc large-arc-flag="0" rx="12.5" ry="12.5" sweep-flag="0" x="25.5" x-axis-rotation="0" y="30"/>
  1882. <close/>
  1883. </path>
  1884. <fill/>
  1885. <path>
  1886. <move x="22" y="70"/>
  1887. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="38" x-axis-rotation="0" y="54"/>
  1888. <line x="62" y="54"/>
  1889. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="78" x-axis-rotation="0" y="70"/>
  1890. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="62" x-axis-rotation="0" y="86"/>
  1891. <line x="38" y="86"/>
  1892. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="22" x-axis-rotation="0" y="70"/>
  1893. <close/>
  1894. <move x="72" y="70"/>
  1895. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="62" x-axis-rotation="0" y="80"/>
  1896. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="52" x-axis-rotation="0" y="70"/>
  1897. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="62" x-axis-rotation="0" y="60"/>
  1898. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="72" x-axis-rotation="0" y="70"/>
  1899. <close/>
  1900. </path>
  1901. <fill/>
  1902. <ellipse h="20" w="20" x="28.5" y="20"/>
  1903. <fill/>
  1904. </foreground>
  1905. </shape>
  1906. <shape aspect="variable" h="100" name="Text Size" strokewidth="inherit" w="100">
  1907. <connections/>
  1908. <background>
  1909. <path>
  1910. <move x="0" y="20"/>
  1911. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1912. <line x="80" y="0"/>
  1913. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1914. <line x="100" y="80"/>
  1915. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1916. <line x="20" y="100"/>
  1917. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1918. <close/>
  1919. </path>
  1920. </background>
  1921. <foreground>
  1922. <fillstroke/>
  1923. <strokecolor color="none"/>
  1924. <fillcolor color="#ffffff"/>
  1925. <path>
  1926. <move x="16.5" y="64"/>
  1927. <line x="27" y="37.5"/>
  1928. <line x="32" y="37.5"/>
  1929. <line x="42.5" y="64"/>
  1930. <line x="37" y="64"/>
  1931. <line x="34" y="57"/>
  1932. <line x="25" y="57"/>
  1933. <line x="22.5" y="64"/>
  1934. <close/>
  1935. <move x="26" y="53"/>
  1936. <line x="33" y="53"/>
  1937. <line x="29.5" y="44"/>
  1938. <close/>
  1939. </path>
  1940. <fill/>
  1941. <path>
  1942. <move x="45.5" y="69"/>
  1943. <line x="61" y="29"/>
  1944. <line x="68" y="29"/>
  1945. <line x="83" y="69"/>
  1946. <line x="76" y="69"/>
  1947. <line x="71.5" y="57.5"/>
  1948. <line x="56.5" y="57.5"/>
  1949. <line x="52" y="69"/>
  1950. <close/>
  1951. <move x="58.5" y="52"/>
  1952. <line x="70" y="52"/>
  1953. <line x="64.5" y="37"/>
  1954. <close/>
  1955. </path>
  1956. <fill/>
  1957. </foreground>
  1958. </shape>
  1959. <shape aspect="variable" h="100" name="Travel" strokewidth="inherit" w="100">
  1960. <connections/>
  1961. <background>
  1962. <path>
  1963. <move x="0" y="20"/>
  1964. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1965. <line x="80" y="0"/>
  1966. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1967. <line x="100" y="80"/>
  1968. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1969. <line x="20" y="100"/>
  1970. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1971. <close/>
  1972. <close/>
  1973. </path>
  1974. </background>
  1975. <foreground>
  1976. <fillstroke/>
  1977. <strokecolor color="none"/>
  1978. <fillcolor color="#ffffff"/>
  1979. <path>
  1980. <move x="20" y="33"/>
  1981. <line x="26" y="43.5"/>
  1982. <line x="44.5" y="43.5"/>
  1983. <line x="32.5" y="21"/>
  1984. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="37.5" x-axis-rotation="0" y="18.5"/>
  1985. <line x="59" y="43.5"/>
  1986. <line x="80" y="43.5"/>
  1987. <arc large-arc-flag="0" rx="4.5" ry="5.5" sweep-flag="1" x="80" x-axis-rotation="0" y="54.5"/>
  1988. <line x="59" y="54.5"/>
  1989. <line x="37.5" y="79"/>
  1990. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="32.5" x-axis-rotation="0" y="76"/>
  1991. <line x="44.5" y="54.5"/>
  1992. <line x="26" y="54.5"/>
  1993. <line x="20" y="66"/>
  1994. <close/>
  1995. <close/>
  1996. </path>
  1997. <fill/>
  1998. </foreground>
  1999. </shape>
  2000. <shape aspect="variable" h="60" name="Up" strokewidth="inherit" w="100">
  2001. <connections>
  2002. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2003. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2004. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2005. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2006. </connections>
  2007. <background>
  2008. <path>
  2009. <move x="0" y="60"/>
  2010. <line x="50" y="0"/>
  2011. <line x="100" y="60"/>
  2012. </path>
  2013. </background>
  2014. <foreground>
  2015. <stroke/>
  2016. </foreground>
  2017. </shape>
  2018. <shape aspect="variable" h="100" name="Volume Down" strokewidth="inherit" w="64">
  2019. <connections/>
  2020. <background>
  2021. <path>
  2022. <move x="0" y="32"/>
  2023. <line x="35" y="32"/>
  2024. <line x="64" y="0"/>
  2025. <line x="64" y="100"/>
  2026. <line x="35" y="68"/>
  2027. <line x="0" y="68"/>
  2028. <close/>
  2029. </path>
  2030. </background>
  2031. <foreground>
  2032. <fillstroke/>
  2033. </foreground>
  2034. </shape>
  2035. <shape aspect="variable" h="100" name="Volume Up" strokewidth="inherit" w="96.83">
  2036. <connections/>
  2037. <background>
  2038. <path>
  2039. <move x="0" y="39"/>
  2040. <line x="22" y="39"/>
  2041. <line x="41" y="18"/>
  2042. <line x="41" y="82"/>
  2043. <line x="22" y="61"/>
  2044. <line x="0" y="61"/>
  2045. <close/>
  2046. </path>
  2047. </background>
  2048. <foreground>
  2049. <fillstroke/>
  2050. <path>
  2051. <move x="47" y="38"/>
  2052. <line x="50" y="33"/>
  2053. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="1" x="50" x-axis-rotation="0" y="70"/>
  2054. <line x="47" y="65"/>
  2055. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="47" x-axis-rotation="0" y="38"/>
  2056. <close/>
  2057. </path>
  2058. <fillstroke/>
  2059. <path>
  2060. <move x="56.5" y="20"/>
  2061. <line x="60" y="14"/>
  2062. <arc large-arc-flag="0" rx="42" ry="42" sweep-flag="1" x="60" x-axis-rotation="0" y="86"/>
  2063. <line x="56.5" y="81"/>
  2064. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="0" x="56.5" x-axis-rotation="0" y="20"/>
  2065. <close/>
  2066. </path>
  2067. <fillstroke/>
  2068. <path>
  2069. <move x="66" y="5"/>
  2070. <line x="70" y="0"/>
  2071. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="70" x-axis-rotation="0" y="100"/>
  2072. <line x="66" y="95"/>
  2073. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="66" x-axis-rotation="0" y="5"/>
  2074. <close/>
  2075. </path>
  2076. <fillstroke/>
  2077. </foreground>
  2078. </shape>
  2079. <shape aspect="variable" h="100" name="VPN" strokewidth="inherit" w="100">
  2080. <connections/>
  2081. <background>
  2082. <path>
  2083. <move x="0" y="20"/>
  2084. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  2085. <line x="80" y="0"/>
  2086. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  2087. <line x="100" y="80"/>
  2088. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  2089. <line x="20" y="100"/>
  2090. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  2091. <close/>
  2092. </path>
  2093. </background>
  2094. <foreground>
  2095. <fillstroke/>
  2096. <strokecolor color="none"/>
  2097. <fillcolor color="#ffffff"/>
  2098. <path>
  2099. <move x="8" y="33.5"/>
  2100. <line x="12.5" y="33.5"/>
  2101. <line x="21.5" y="59"/>
  2102. <line x="30.5" y="33.5"/>
  2103. <line x="35" y="33.5"/>
  2104. <line x="24" y="65.5"/>
  2105. <line x="19" y="65.5"/>
  2106. <close/>
  2107. </path>
  2108. <fill/>
  2109. <path>
  2110. <move x="38" y="65.5"/>
  2111. <line x="38" y="33.5"/>
  2112. <line x="51" y="33.5"/>
  2113. <arc large-arc-flag="0" rx="9" ry="10" sweep-flag="1" x="51" x-axis-rotation="0" y="54"/>
  2114. <line x="42.5" y="54"/>
  2115. <line x="42.5" y="65.5"/>
  2116. <close/>
  2117. <move x="42.5" y="50"/>
  2118. <line x="51" y="50"/>
  2119. <arc large-arc-flag="0" rx="4" ry="5" sweep-flag="0" x="51" x-axis-rotation="0" y="38"/>
  2120. <line x="42.5" y="38"/>
  2121. <close/>
  2122. </path>
  2123. <fill/>
  2124. <path>
  2125. <move x="65" y="65.5"/>
  2126. <line x="65" y="33.5"/>
  2127. <line x="69" y="33.5"/>
  2128. <line x="86.5" y="58.5"/>
  2129. <line x="86.5" y="33.5"/>
  2130. <line x="91" y="33.5"/>
  2131. <line x="91" y="65.5"/>
  2132. <line x="86" y="65.5"/>
  2133. <line x="69.5" y="42"/>
  2134. <line x="69.5" y="65.5"/>
  2135. <close/>
  2136. </path>
  2137. <fill/>
  2138. </foreground>
  2139. </shape>
  2140. <shape aspect="variable" h="100" name="WiFi" strokewidth="inherit" w="100">
  2141. <connections/>
  2142. <background>
  2143. <path>
  2144. <move x="0" y="20"/>
  2145. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  2146. <line x="80" y="0"/>
  2147. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  2148. <line x="100" y="80"/>
  2149. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  2150. <line x="20" y="100"/>
  2151. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  2152. <close/>
  2153. </path>
  2154. </background>
  2155. <foreground>
  2156. <fillstroke/>
  2157. <strokecolor color="none"/>
  2158. <fillcolor color="#ffffff"/>
  2159. <path>
  2160. <move x="19" y="42.5"/>
  2161. <arc large-arc-flag="0" rx="42" ry="42" sweep-flag="1" x="81" x-axis-rotation="0" y="42.5"/>
  2162. <line x="75.5" y="47"/>
  2163. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="0" x="24.5" x-axis-rotation="0" y="47"/>
  2164. <close/>
  2165. </path>
  2166. <fill/>
  2167. <path>
  2168. <move x="30.5" y="52"/>
  2169. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="69.5" x-axis-rotation="0" y="52"/>
  2170. <line x="64" y="57"/>
  2171. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="36" x-axis-rotation="0" y="57"/>
  2172. <close/>
  2173. </path>
  2174. <fill/>
  2175. <path>
  2176. <move x="42" y="63.5"/>
  2177. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="58" x-axis-rotation="0" y="63.5"/>
  2178. <line x="50" y="71.5"/>
  2179. <close/>
  2180. </path>
  2181. <fill/>
  2182. </foreground>
  2183. </shape>
  2184. </shapes>