android.xml 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. <shapes name="mxgraph.android">
  2. <shape aspect="variable" h="30" name="Action Bar" strokewidth="inherit" w="174">
  3. <connections/>
  4. <foreground>
  5. <rect h="30" w="174" x="0" y="0"/>
  6. <fill/>
  7. <strokecolor color="#999999"/>
  8. <path>
  9. <move x="10" y="8"/>
  10. <line x="5" y="15"/>
  11. <line x="10" y="22"/>
  12. </path>
  13. <stroke/>
  14. <fillcolor color="#999999"/>
  15. <rect h="5" w="5" x="155" y="6"/>
  16. <fill/>
  17. <rect h="5" w="5" x="155" y="12.5"/>
  18. <fill/>
  19. <rect h="5" w="5" x="155" y="19"/>
  20. <fill/>
  21. </foreground>
  22. </shape>
  23. <shape aspect="variable" h="30" name="Action Bar Landscape" strokewidth="inherit" w="280">
  24. <connections/>
  25. <foreground>
  26. <rect h="30" w="280" x="0" y="0"/>
  27. <fill/>
  28. <strokecolor color="#999999"/>
  29. <path>
  30. <move x="10" y="8"/>
  31. <line x="5" y="15"/>
  32. <line x="10" y="22"/>
  33. </path>
  34. <stroke/>
  35. <fillcolor color="#999999"/>
  36. <rect h="5" w="5" x="260" y="6"/>
  37. <fill/>
  38. <rect h="5" w="5" x="260" y="12.5"/>
  39. <fill/>
  40. <rect h="5" w="5" x="260" y="19"/>
  41. <fill/>
  42. </foreground>
  43. </shape>
  44. <shape aspect="variable" h="100" name="Contact Badge Focused" strokewidth="inherit" w="100">
  45. <connections/>
  46. <foreground>
  47. <strokecolor color="#2f7d9a"/>
  48. <fillcolor color="#2d5462"/>
  49. <rect h="100" w="100" x="0" y="0"/>
  50. <fillstroke/>
  51. <fillcolor color="#3c6373"/>
  52. <path>
  53. <move x="10" y="100"/>
  54. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="35" x-axis-rotation="0" y="70"/>
  55. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="0" x="65" x-axis-rotation="0" y="70"/>
  56. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="90" x-axis-rotation="0" y="100"/>
  57. <close/>
  58. </path>
  59. <fill/>
  60. <ellipse h="58" w="58" x="21" y="11"/>
  61. <fill/>
  62. <fillcolor color="#2d5462"/>
  63. <path>
  64. <move x="30" y="50"/>
  65. <line x="70" y="50"/>
  66. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="1" x="30" x-axis-rotation="0" y="50"/>
  67. <close/>
  68. </path>
  69. <fill/>
  70. <fillcolor color="#33b5e5"/>
  71. <path>
  72. <move x="80" y="100"/>
  73. <line x="100" y="80"/>
  74. <line x="100" y="100"/>
  75. <close/>
  76. </path>
  77. <fill/>
  78. </foreground>
  79. </shape>
  80. <shape aspect="variable" h="100" name="Contact Badge Normal" strokewidth="inherit" w="100">
  81. <connections/>
  82. <foreground>
  83. <fillcolor color="#444444"/>
  84. <rect h="100" w="100" x="0" y="0"/>
  85. <fill/>
  86. <fillcolor color="#666666"/>
  87. <path>
  88. <move x="10" y="100"/>
  89. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="35" x-axis-rotation="0" y="70"/>
  90. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="0" x="65" x-axis-rotation="0" y="70"/>
  91. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="90" x-axis-rotation="0" y="100"/>
  92. <close/>
  93. </path>
  94. <fill/>
  95. <ellipse h="58" w="58" x="21" y="11"/>
  96. <fill/>
  97. <fillcolor color="#444444"/>
  98. <path>
  99. <move x="30" y="50"/>
  100. <line x="70" y="50"/>
  101. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="1" x="30" x-axis-rotation="0" y="50"/>
  102. <close/>
  103. </path>
  104. <fill/>
  105. <fillcolor color="#cccccc"/>
  106. <path>
  107. <move x="80" y="100"/>
  108. <line x="100" y="80"/>
  109. <line x="100" y="100"/>
  110. <close/>
  111. </path>
  112. <fill/>
  113. </foreground>
  114. </shape>
  115. <shape aspect="variable" h="100" name="Contact Badge Pressed" strokewidth="inherit" w="100">
  116. <connections/>
  117. <foreground>
  118. <fillcolor color="#2f7d9a"/>
  119. <rect h="100" w="100" x="0" y="0"/>
  120. <fill/>
  121. <fillcolor color="#3886a3"/>
  122. <path>
  123. <move x="10" y="100"/>
  124. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="35" x-axis-rotation="0" y="70"/>
  125. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="0" x="65" x-axis-rotation="0" y="70"/>
  126. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="90" x-axis-rotation="0" y="100"/>
  127. <close/>
  128. </path>
  129. <fill/>
  130. <ellipse h="58" w="58" x="21" y="11"/>
  131. <fill/>
  132. <fillcolor color="#2f7d9a"/>
  133. <path>
  134. <move x="30" y="50"/>
  135. <line x="70" y="50"/>
  136. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="1" x="30" x-axis-rotation="0" y="50"/>
  137. <close/>
  138. </path>
  139. <fill/>
  140. <fillcolor color="#33b5e5"/>
  141. <path>
  142. <move x="80" y="100"/>
  143. <line x="100" y="80"/>
  144. <line x="100" y="100"/>
  145. <close/>
  146. </path>
  147. <fill/>
  148. </foreground>
  149. </shape>
  150. <shape aspect="variable" h="30" name="Contextual Action Bar" strokewidth="inherit" w="174">
  151. <connections/>
  152. <foreground>
  153. <save/>
  154. <save/>
  155. <rect h="30" w="174" x="0" y="0"/>
  156. <fill/>
  157. <strokecolor color="#ffffff"/>
  158. <strokewidth width="1"/>
  159. <dashpattern pattern="1 1"/>
  160. <dashed dashed="1"/>
  161. <rect h="18" w="18" x="100" y="6"/>
  162. <stroke/>
  163. <path>
  164. <move x="6" y="13"/>
  165. <line x="12" y="20"/>
  166. <line x="24" y="6"/>
  167. </path>
  168. <stroke/>
  169. <strokewidth width="1"/>
  170. <path>
  171. <move x="35" y="6"/>
  172. <line x="35" y="24"/>
  173. </path>
  174. <stroke/>
  175. <restore/>
  176. <rect/>
  177. <stroke/>
  178. <fillcolor color="#ffffff"/>
  179. <rect h="6" w="6" x="102" y="8"/>
  180. <fill/>
  181. <rect h="6" w="6" x="110" y="8"/>
  182. <fill/>
  183. <rect h="6" w="6" x="102" y="16"/>
  184. <fill/>
  185. <rect h="6" w="6" x="110" y="16"/>
  186. <fill/>
  187. <strokecolor color="#ffffff"/>
  188. <strokewidth width="1"/>
  189. <path>
  190. <move x="129" y="18"/>
  191. <line x="141" y="13"/>
  192. <arc large-arc-flag="1" rx="1.5" ry="1.5" sweep-flag="0" x="139" x-axis-rotation="0" y="14"/>
  193. <move x="129" y="13"/>
  194. <line x="141" y="17"/>
  195. <arc large-arc-flag="1" rx="1.5" ry="1.5" sweep-flag="1" x="139" x-axis-rotation="0" y="16"/>
  196. <move x="136" y="18"/>
  197. <line x="136" y="24"/>
  198. <line x="125" y="24"/>
  199. <line x="125" y="6"/>
  200. <line x="136" y="6"/>
  201. <line x="136" y="12"/>
  202. </path>
  203. <stroke/>
  204. <rect h="15" w="10" x="155" y="9"/>
  205. <stroke/>
  206. <restore/>
  207. <rect/>
  208. <stroke/>
  209. <strokecolor color="#ffffff"/>
  210. <strokewidth width="1"/>
  211. <path>
  212. <move x="157" y="13.5"/>
  213. <line x="163" y="13.5"/>
  214. <move x="157" y="11"/>
  215. <line x="160" y="11"/>
  216. <move x="157" y="16.5"/>
  217. <line x="160" y="16.5"/>
  218. <move x="157" y="19"/>
  219. <line x="161" y="19"/>
  220. <move x="155" y="21"/>
  221. <line x="153" y="21"/>
  222. <line x="153" y="6"/>
  223. <line x="163" y="6"/>
  224. <line x="163" y="9"/>
  225. </path>
  226. <stroke/>
  227. </foreground>
  228. </shape>
  229. <shape aspect="variable" h="30" name="Contextual Action Bar Landscape" strokewidth="inherit" w="280">
  230. <connections/>
  231. <foreground>
  232. <save/>
  233. <save/>
  234. <rect h="30" w="280" x="0" y="0"/>
  235. <fill/>
  236. <strokecolor color="#ffffff"/>
  237. <strokewidth width="1"/>
  238. <dashpattern pattern="1 1"/>
  239. <dashed dashed="1"/>
  240. <rect h="18" w="18" x="205" y="6"/>
  241. <stroke/>
  242. <restore/>
  243. <rect/>
  244. <stroke/>
  245. <strokecolor color="#ffffff"/>
  246. <path>
  247. <move x="6" y="13"/>
  248. <line x="12" y="20"/>
  249. <line x="24" y="6"/>
  250. </path>
  251. <stroke/>
  252. <strokewidth width="1"/>
  253. <path>
  254. <move x="35" y="6"/>
  255. <line x="35" y="24"/>
  256. </path>
  257. <stroke/>
  258. <fillcolor color="#ffffff"/>
  259. <rect h="6" w="6" x="207" y="8"/>
  260. <fill/>
  261. <rect h="6" w="6" x="215" y="8"/>
  262. <fill/>
  263. <rect h="6" w="6" x="207" y="16"/>
  264. <fill/>
  265. <rect h="6" w="6" x="215" y="16"/>
  266. <fill/>
  267. <strokewidth width="1"/>
  268. <path>
  269. <move x="234" y="18"/>
  270. <line x="246" y="13"/>
  271. <arc large-arc-flag="1" rx="1.5" ry="1.5" sweep-flag="0" x="244" x-axis-rotation="0" y="14"/>
  272. <move x="234" y="13"/>
  273. <line x="246" y="17"/>
  274. <arc large-arc-flag="1" rx="1.5" ry="1.5" sweep-flag="1" x="244" x-axis-rotation="0" y="16"/>
  275. <move x="241" y="18"/>
  276. <line x="241" y="24"/>
  277. <line x="230" y="24"/>
  278. <line x="230" y="6"/>
  279. <line x="241" y="6"/>
  280. <line x="241" y="12"/>
  281. </path>
  282. <stroke/>
  283. <rect h="15" w="10" x="260" y="9"/>
  284. <stroke/>
  285. <restore/>
  286. <rect/>
  287. <stroke/>
  288. <strokecolor color="#ffffff"/>
  289. <strokewidth width="1"/>
  290. <path>
  291. <move x="262" y="13.5"/>
  292. <line x="268" y="13.5"/>
  293. <move x="262" y="11"/>
  294. <line x="265" y="11"/>
  295. <move x="262" y="16.5"/>
  296. <line x="265" y="16.5"/>
  297. <move x="262" y="19"/>
  298. <line x="266" y="19"/>
  299. <move x="260" y="21"/>
  300. <line x="258" y="21"/>
  301. <line x="258" y="6"/>
  302. <line x="268" y="6"/>
  303. <line x="268" y="9"/>
  304. </path>
  305. <stroke/>
  306. </foreground>
  307. </shape>
  308. <shape aspect="variable" h="30" name="Contextual Action Bar Landscape White" strokewidth="inherit" w="280">
  309. <connections/>
  310. <foreground>
  311. <save/>
  312. <save/>
  313. <save/>
  314. <rect h="30" w="280" x="0" y="0"/>
  315. <fill/>
  316. <strokecolor color="#999999"/>
  317. <strokewidth width="1"/>
  318. <dashpattern pattern="1 1"/>
  319. <dashed dashed="1"/>
  320. <rect h="18" w="18" x="205" y="6"/>
  321. <stroke/>
  322. <restore/>
  323. <rect/>
  324. <stroke/>
  325. <strokecolor color="#999999"/>
  326. <path>
  327. <move x="6" y="13"/>
  328. <line x="12" y="20"/>
  329. <line x="24" y="6"/>
  330. </path>
  331. <stroke/>
  332. <strokewidth width="1"/>
  333. <path>
  334. <move x="35" y="6"/>
  335. <line x="35" y="24"/>
  336. </path>
  337. <stroke/>
  338. <restore/>
  339. <rect/>
  340. <stroke/>
  341. <fillcolor color="#999999"/>
  342. <rect h="6" w="6" x="207" y="8"/>
  343. <fill/>
  344. <rect h="6" w="6" x="215" y="8"/>
  345. <fill/>
  346. <rect h="6" w="6" x="207" y="16"/>
  347. <fill/>
  348. <rect h="6" w="6" x="215" y="16"/>
  349. <fill/>
  350. <strokecolor color="#999999"/>
  351. <strokewidth width="1"/>
  352. <path>
  353. <move x="234" y="18"/>
  354. <line x="246" y="13"/>
  355. <arc large-arc-flag="1" rx="1.5" ry="1.5" sweep-flag="0" x="244" x-axis-rotation="0" y="14"/>
  356. <move x="234" y="13"/>
  357. <line x="246" y="17"/>
  358. <arc large-arc-flag="1" rx="1.5" ry="1.5" sweep-flag="1" x="244" x-axis-rotation="0" y="16"/>
  359. <move x="241" y="18"/>
  360. <line x="241" y="24"/>
  361. <line x="230" y="24"/>
  362. <line x="230" y="6"/>
  363. <line x="241" y="6"/>
  364. <line x="241" y="12"/>
  365. </path>
  366. <stroke/>
  367. <rect h="15" w="10" x="260" y="9"/>
  368. <stroke/>
  369. <restore/>
  370. <rect/>
  371. <stroke/>
  372. <strokecolor color="#999999"/>
  373. <strokewidth width="1"/>
  374. <path>
  375. <move x="262" y="13.5"/>
  376. <line x="268" y="13.5"/>
  377. <move x="262" y="11"/>
  378. <line x="265" y="11"/>
  379. <move x="262" y="16.5"/>
  380. <line x="265" y="16.5"/>
  381. <move x="262" y="19"/>
  382. <line x="266" y="19"/>
  383. <move x="260" y="21"/>
  384. <line x="258" y="21"/>
  385. <line x="258" y="6"/>
  386. <line x="268" y="6"/>
  387. <line x="268" y="9"/>
  388. </path>
  389. <stroke/>
  390. </foreground>
  391. </shape>
  392. <shape aspect="variable" h="30" name="Contextual Action Bar White" strokewidth="inherit" w="174">
  393. <connections/>
  394. <foreground>
  395. <save/>
  396. <save/>
  397. <save/>
  398. <rect h="30" w="174" x="0" y="0"/>
  399. <fill/>
  400. <strokecolor color="#999999"/>
  401. <strokewidth width="1"/>
  402. <dashpattern pattern="1 1"/>
  403. <dashed dashed="1"/>
  404. <rect h="18" w="18" x="100" y="6"/>
  405. <stroke/>
  406. <restore/>
  407. <rect/>
  408. <stroke/>
  409. <strokecolor color="#999999"/>
  410. <path>
  411. <move x="6" y="13"/>
  412. <line x="12" y="20"/>
  413. <line x="24" y="6"/>
  414. </path>
  415. <stroke/>
  416. <strokewidth width="1"/>
  417. <path>
  418. <move x="35" y="6"/>
  419. <line x="35" y="24"/>
  420. </path>
  421. <stroke/>
  422. <restore/>
  423. <rect/>
  424. <stroke/>
  425. <fillcolor color="#999999"/>
  426. <rect h="6" w="6" x="102" y="8"/>
  427. <fill/>
  428. <rect h="6" w="6" x="110" y="8"/>
  429. <fill/>
  430. <rect h="6" w="6" x="102" y="16"/>
  431. <fill/>
  432. <rect h="6" w="6" x="110" y="16"/>
  433. <fill/>
  434. <strokecolor color="#999999"/>
  435. <strokewidth width="1"/>
  436. <path>
  437. <move x="129" y="18"/>
  438. <line x="141" y="13"/>
  439. <arc large-arc-flag="1" rx="1.5" ry="1.5" sweep-flag="0" x="139" x-axis-rotation="0" y="14"/>
  440. <move x="129" y="13"/>
  441. <line x="141" y="17"/>
  442. <arc large-arc-flag="1" rx="1.5" ry="1.5" sweep-flag="1" x="139" x-axis-rotation="0" y="16"/>
  443. <move x="136" y="18"/>
  444. <line x="136" y="24"/>
  445. <line x="125" y="24"/>
  446. <line x="125" y="6"/>
  447. <line x="136" y="6"/>
  448. <line x="136" y="12"/>
  449. </path>
  450. <stroke/>
  451. <rect h="15" w="10" x="155" y="9"/>
  452. <stroke/>
  453. <restore/>
  454. <rect/>
  455. <stroke/>
  456. <strokecolor color="#999999"/>
  457. <strokewidth width="1"/>
  458. <path>
  459. <move x="157" y="13.5"/>
  460. <line x="163" y="13.5"/>
  461. <move x="157" y="11"/>
  462. <line x="160" y="11"/>
  463. <move x="157" y="16.5"/>
  464. <line x="160" y="16.5"/>
  465. <move x="157" y="19"/>
  466. <line x="161" y="19"/>
  467. <move x="155" y="21"/>
  468. <line x="153" y="21"/>
  469. <line x="153" y="6"/>
  470. <line x="163" y="6"/>
  471. <line x="163" y="9"/>
  472. </path>
  473. <stroke/>
  474. </foreground>
  475. </shape>
  476. <shape aspect="variable" h="70" name="Contextual Split Action Bar" strokewidth="inherit" w="174">
  477. <connections/>
  478. <foreground>
  479. <rect h="30" w="174" x="0" y="40"/>
  480. <fill/>
  481. <rect h="30" w="174" x="0" y="0"/>
  482. <fill/>
  483. <fillcolor color="#ffffff"/>
  484. <rect h="5" w="5" x="155" y="46"/>
  485. <fill/>
  486. <rect h="5" w="5" x="155" y="52.5"/>
  487. <fill/>
  488. <rect h="5" w="5" x="155" y="59"/>
  489. <fill/>
  490. <strokecolor color="#ffffff"/>
  491. <path>
  492. <move x="35" y="6"/>
  493. <line x="35" y="24"/>
  494. <move x="6" y="13"/>
  495. <line x="12" y="20"/>
  496. <line x="24" y="6"/>
  497. </path>
  498. <stroke/>
  499. </foreground>
  500. </shape>
  501. <shape aspect="variable" h="70" name="Contextual Split Action Bar Landscape" strokewidth="inherit" w="280">
  502. <connections/>
  503. <foreground>
  504. <save/>
  505. <rect h="30" w="280" x="0" y="40"/>
  506. <fill/>
  507. <rect h="30" w="280" x="0" y="0"/>
  508. <fill/>
  509. <fillcolor color="#ffffff"/>
  510. <rect h="5" w="5" x="260" y="46"/>
  511. <fill/>
  512. <rect h="5" w="5" x="260" y="52.5"/>
  513. <fill/>
  514. <rect h="5" w="5" x="260" y="59"/>
  515. <fill/>
  516. <strokecolor color="#ffffff"/>
  517. <strokewidth width="1"/>
  518. <path>
  519. <move x="35" y="6"/>
  520. <line x="35" y="24"/>
  521. </path>
  522. <stroke/>
  523. <restore/>
  524. <rect/>
  525. <stroke/>
  526. <strokecolor color="#ffffff"/>
  527. <path>
  528. <move x="6" y="13"/>
  529. <line x="12" y="20"/>
  530. <line x="24" y="6"/>
  531. </path>
  532. <stroke/>
  533. </foreground>
  534. </shape>
  535. <shape aspect="variable" h="70" name="Contextual Split Action Bar Landscape White" strokewidth="inherit" w="280">
  536. <connections/>
  537. <foreground>
  538. <save/>
  539. <rect h="30" w="280" x="0" y="40"/>
  540. <fill/>
  541. <rect h="30" w="280" x="0" y="0"/>
  542. <fill/>
  543. <fillcolor color="#999999"/>
  544. <rect h="5" w="5" x="260" y="46"/>
  545. <fill/>
  546. <rect h="5" w="5" x="260" y="52.5"/>
  547. <fill/>
  548. <rect h="5" w="5" x="260" y="59"/>
  549. <fill/>
  550. <strokecolor color="#999999"/>
  551. <strokewidth width="1"/>
  552. <path>
  553. <move x="35" y="6"/>
  554. <line x="35" y="24"/>
  555. </path>
  556. <stroke/>
  557. <restore/>
  558. <rect/>
  559. <stroke/>
  560. <strokecolor color="#999999"/>
  561. <path>
  562. <move x="6" y="13"/>
  563. <line x="12" y="20"/>
  564. <line x="24" y="6"/>
  565. </path>
  566. <stroke/>
  567. </foreground>
  568. </shape>
  569. <shape aspect="variable" h="70" name="Contextual Split Action Bar White" strokewidth="inherit" w="174">
  570. <connections/>
  571. <foreground>
  572. <save/>
  573. <rect h="30" w="174" x="0" y="40"/>
  574. <fill/>
  575. <rect h="30" w="174" x="0" y="0"/>
  576. <fill/>
  577. <fillcolor color="#999999"/>
  578. <rect h="5" w="5" x="155" y="46"/>
  579. <fill/>
  580. <rect h="5" w="5" x="155" y="52.5"/>
  581. <fill/>
  582. <rect h="5" w="5" x="155" y="59"/>
  583. <fill/>
  584. <strokecolor color="#999999"/>
  585. <strokewidth width="1"/>
  586. <path>
  587. <move x="35" y="6"/>
  588. <line x="35" y="24"/>
  589. </path>
  590. <stroke/>
  591. <restore/>
  592. <rect/>
  593. <stroke/>
  594. <strokecolor color="#999999"/>
  595. <path>
  596. <move x="6" y="13"/>
  597. <line x="12" y="20"/>
  598. <line x="24" y="6"/>
  599. </path>
  600. <stroke/>
  601. </foreground>
  602. </shape>
  603. <shape aspect="variable" h="5" name="Indeterminate Progress Bar" strokewidth="inherit" w="149">
  604. <connections/>
  605. <foreground>
  606. <path>
  607. <move x="0" y="2.5"/>
  608. <line x="25" y="2.5"/>
  609. <move x="30" y="2.5"/>
  610. <line x="95" y="2.5"/>
  611. <move x="100" y="2.5"/>
  612. <line x="149" y="2.5"/>
  613. </path>
  614. <stroke/>
  615. </foreground>
  616. </shape>
  617. <shape aspect="variable" h="100" name="Keyboard" strokewidth="inherit" w="174">
  618. <connections/>
  619. <foreground>
  620. <save/>
  621. <save/>
  622. <fillcolor color="#000000"/>
  623. <rect h="100" w="174" x="0" y="0"/>
  624. <fill/>
  625. <fillcolor color="#333333"/>
  626. <roundrect arcsize="18.52" h="19" w="13.5" x="29" y="78"/>
  627. <fill/>
  628. <strokecolor color="#ffffff"/>
  629. <fillcolor color="#ffffff"/>
  630. <path>
  631. <move x="33.17" y="83.5"/>
  632. <arc large-arc-flag="0" rx="2.25" ry="2.25" sweep-flag="1" x="37.67" x-axis-rotation="0" y="83.5"/>
  633. <line x="37.67" y="88"/>
  634. <arc large-arc-flag="0" rx="2.25" ry="2.25" sweep-flag="1" x="33.17" x-axis-rotation="0" y="88"/>
  635. <close/>
  636. </path>
  637. <fillstroke/>
  638. <path>
  639. <move x="31.67" y="87.28"/>
  640. <line x="31.67" y="87.78"/>
  641. <arc large-arc-flag="0" rx="3.75" ry="3.75" sweep-flag="0" x="39.17" x-axis-rotation="0" y="87.78"/>
  642. <line x="39.17" y="87.28"/>
  643. <move x="35.42" y="91.53"/>
  644. <line x="35.42" y="94.78"/>
  645. <move x="33.17" y="94.78"/>
  646. <line x="37.67" y="94.78"/>
  647. </path>
  648. <stroke/>
  649. <fillcolor color="#999999"/>
  650. <roundrect arcsize="18.52" h="19" w="13.5" x="2" y="3"/>
  651. <fill/>
  652. <roundrect arcsize="18.52" h="19" w="13.5" x="20" y="3"/>
  653. <fill/>
  654. <roundrect arcsize="18.52" h="19" w="13.5" x="38" y="3"/>
  655. <fill/>
  656. <roundrect arcsize="18.52" h="19" w="13.5" x="56" y="3"/>
  657. <fill/>
  658. <fillcolor color="#333333"/>
  659. <roundrect arcsize="13.16" h="19" w="22" x="2" y="78"/>
  660. <fill/>
  661. <roundrect arcsize="13.16" h="19" w="22" x="150" y="78"/>
  662. <fill/>
  663. <fillcolor color="#999999"/>
  664. <roundrect arcsize="13.16" h="19" w="82.56" x="46.44" y="78"/>
  665. <fill/>
  666. <roundrect arcsize="18.52" h="19" w="13.5" x="73" y="3"/>
  667. <fill/>
  668. <roundrect arcsize="18.52" h="19" w="13.5" x="90" y="3"/>
  669. <fill/>
  670. <roundrect arcsize="18.52" h="19" w="13.5" x="107" y="3"/>
  671. <fill/>
  672. <roundrect arcsize="18.52" h="19" w="13.5" x="124" y="3"/>
  673. <fill/>
  674. <roundrect arcsize="18.52" h="19" w="13.5" x="141" y="3"/>
  675. <fill/>
  676. <roundrect arcsize="18.52" h="19" w="13.5" x="158" y="3"/>
  677. <fill/>
  678. <roundrect arcsize="18.52" h="19" w="13.5" x="11" y="29"/>
  679. <fill/>
  680. <roundrect arcsize="18.52" h="19" w="13.5" x="29" y="29"/>
  681. <fill/>
  682. <roundrect arcsize="18.52" h="19" w="13.5" x="47" y="29"/>
  683. <fill/>
  684. <roundrect arcsize="18.52" h="19" w="13.5" x="65" y="29"/>
  685. <fill/>
  686. <roundrect arcsize="18.52" h="19" w="13.5" x="82" y="29"/>
  687. <fill/>
  688. <roundrect arcsize="18.52" h="19" w="13.5" x="99" y="29"/>
  689. <fill/>
  690. <roundrect arcsize="18.52" h="19" w="13.5" x="116" y="29"/>
  691. <fill/>
  692. <roundrect arcsize="18.52" h="19" w="13.5" x="133" y="29"/>
  693. <fill/>
  694. <roundrect arcsize="18.52" h="19" w="13.5" x="150" y="29"/>
  695. <fill/>
  696. <fillcolor color="#333333"/>
  697. <roundrect arcsize="13.16" h="19" w="22" x="150" y="53.5"/>
  698. <fill/>
  699. <fillcolor color="#999999"/>
  700. <roundrect arcsize="18.52" h="19" w="13.5" x="133" y="53.5"/>
  701. <fill/>
  702. <roundrect arcsize="18.52" h="19" w="13.5" x="116" y="53.5"/>
  703. <fill/>
  704. <roundrect arcsize="18.52" h="19" w="13.5" x="99" y="53.5"/>
  705. <fill/>
  706. <roundrect arcsize="18.52" h="19" w="13.5" x="82" y="53.5"/>
  707. <fill/>
  708. <roundrect arcsize="18.52" h="19" w="13.5" x="65" y="53.5"/>
  709. <fill/>
  710. <roundrect arcsize="18.52" h="19" w="13.5" x="47" y="53.5"/>
  711. <fill/>
  712. <roundrect arcsize="18.52" h="19" w="13.5" x="29" y="53.5"/>
  713. <fill/>
  714. <fillcolor color="#333333"/>
  715. <roundrect arcsize="13.16" h="19" w="22" x="2" y="53.5"/>
  716. <fill/>
  717. <strokecolor color="#ffffff"/>
  718. <fillcolor color="#ffffff"/>
  719. <path>
  720. <move x="11" y="63"/>
  721. <line x="9" y="63"/>
  722. <line x="13" y="58"/>
  723. <line x="17" y="63"/>
  724. <line x="15" y="63"/>
  725. <line x="15" y="67"/>
  726. <line x="11" y="67"/>
  727. <close/>
  728. <move x="159" y="59"/>
  729. <line x="167" y="59"/>
  730. <line x="167" y="67"/>
  731. <line x="159" y="67"/>
  732. <line x="155" y="63"/>
  733. <close/>
  734. </path>
  735. <fillstroke/>
  736. <strokecolor color="#333333"/>
  737. <path>
  738. <move x="161" y="61"/>
  739. <line x="165" y="65"/>
  740. <move x="165" y="61"/>
  741. <line x="161" y="65"/>
  742. </path>
  743. <stroke/>
  744. <restore/>
  745. <rect/>
  746. <stroke/>
  747. <fontcolor color="#ffffff"/>
  748. <fontsize size="10"/>
  749. <text str="Q" align="center" valign="middle" x="8" y="13"/>
  750. <text str="W" align="center" valign="middle" x="27" y="13"/>
  751. <text str="E" align="center" valign="middle" x="44" y="13"/>
  752. <text str="R" align="center" valign="middle" x="62" y="13"/>
  753. <text str="T" align="center" valign="middle" x="80" y="13"/>
  754. <text str="Y" align="center" valign="middle" x="97" y="13"/>
  755. <text str="U" align="center" valign="middle" x="114" y="13"/>
  756. <text str="I" align="center" valign="middle" x="131" y="13"/>
  757. <text str="O" align="center" valign="middle" x="147" y="13"/>
  758. <text str="P" align="center" valign="middle" x="164" y="13"/>
  759. <text str="A" align="center" valign="middle" x="17" y="38"/>
  760. <text str="S" align="center" valign="middle" x="35" y="38"/>
  761. <text str="D" align="center" valign="middle" x="53" y="38"/>
  762. <text str="F" align="center" valign="middle" x="72" y="38"/>
  763. <text str="G" align="center" valign="middle" x="88" y="38"/>
  764. <text str="H" align="center" valign="middle" x="106" y="38"/>
  765. <text str="J" align="center" valign="middle" x="122" y="38"/>
  766. <text str="K" align="center" valign="middle" x="139" y="38"/>
  767. <text str="L" align="center" valign="middle" x="156" y="38"/>
  768. <text str="Z" align="center" valign="middle" x="35" y="63"/>
  769. <text str="X" align="center" valign="middle" x="53" y="63"/>
  770. <text str="C" align="center" valign="middle" x="72" y="63"/>
  771. <text str="V" align="center" valign="middle" x="88" y="63"/>
  772. <text str="B" align="center" valign="middle" x="106" y="63"/>
  773. <text str="N" align="center" valign="middle" x="122" y="63"/>
  774. <text str="M" align="center" valign="middle" x="139" y="63"/>
  775. <text str="123" align="center" valign="middle" x="12" y="88"/>
  776. <fillcolor color="#333333"/>
  777. <roundrect arcsize="18.52" h="19" w="13.5" x="133" y="78"/>
  778. <fill/>
  779. <strokecolor color="#ffffff"/>
  780. <fillcolor color="#ffffff"/>
  781. <path>
  782. <move x="156" y="85"/>
  783. <line x="156" y="90"/>
  784. <line x="153" y="87.5"/>
  785. <close/>
  786. </path>
  787. <fillstroke/>
  788. <path>
  789. <move x="156" y="87.5"/>
  790. <line x="165" y="87.5"/>
  791. <line x="165" y="84"/>
  792. </path>
  793. <stroke/>
  794. <text str="." align="center" valign="middle" x="139" y="88"/>
  795. <restore/>
  796. <rect/>
  797. <stroke/>
  798. <fontcolor color="#ffffff"/>
  799. <fontsize size="5"/>
  800. <fontcolor color="#333333"/>
  801. <text str="0" align="center" valign="middle" x="169" y="5"/>
  802. <text str="9" align="center" valign="middle" x="151" y="5"/>
  803. <text str="8" align="center" valign="middle" x="134" y="5"/>
  804. <text str="7" align="center" valign="middle" x="117" y="5"/>
  805. <text str="6" align="center" valign="middle" x="100" y="5"/>
  806. <text str="5" align="center" valign="middle" x="83" y="5"/>
  807. <text str="4" align="center" valign="middle" x="66" y="5"/>
  808. <text str="3" align="center" valign="middle" x="48" y="5"/>
  809. <text str="2" align="center" valign="middle" x="30" y="5"/>
  810. <text str="1" align="center" valign="middle" x="12" y="5"/>
  811. <strokecolor color="#000000"/>
  812. <fillcolor color="#000000"/>
  813. <rect h="1" w="8" x="9" y="69.5"/>
  814. <fillstroke/>
  815. </foreground>
  816. </shape>
  817. <shape aspect="variable" h="30" name="Navigation Bar 1" strokewidth="inherit" w="174">
  818. <connections/>
  819. <foreground>
  820. <rect h="30" w="174" x="0" y="0"/>
  821. <fill/>
  822. <path>
  823. <move x="18" y="12"/>
  824. <line x="40" y="12"/>
  825. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="40" x-axis-rotation="0" y="20"/>
  826. <line x="30" y="20"/>
  827. <move x="25" y="8"/>
  828. <line x="18" y="12"/>
  829. <line x="25" y="16"/>
  830. <move x="85" y="8"/>
  831. <line x="100" y="13"/>
  832. <line x="100" y="22"/>
  833. <line x="70" y="22"/>
  834. <line x="70" y="13"/>
  835. <close/>
  836. <move x="132" y="6"/>
  837. <line x="158" y="6"/>
  838. <line x="158" y="16"/>
  839. </path>
  840. <stroke/>
  841. <rect h="11" w="26" x="128" y="10"/>
  842. <stroke/>
  843. </foreground>
  844. </shape>
  845. <shape aspect="variable" h="30" name="Navigation Bar 1 Landscape" strokewidth="inherit" w="280">
  846. <connections/>
  847. <foreground>
  848. <rect h="30" w="280" x="0" y="0"/>
  849. <fill/>
  850. <path>
  851. <move x="25" y="12"/>
  852. <line x="47" y="12"/>
  853. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="47" x-axis-rotation="0" y="20"/>
  854. <line x="37" y="20"/>
  855. <move x="32" y="8"/>
  856. <line x="25" y="12"/>
  857. <line x="32" y="16"/>
  858. <move x="140" y="8"/>
  859. <line x="155" y="13"/>
  860. <line x="155" y="22"/>
  861. <line x="125" y="22"/>
  862. <line x="125" y="13"/>
  863. <close/>
  864. <move x="223.75" y="8.25"/>
  865. <line x="249.75" y="8.25"/>
  866. <line x="249.75" y="18.25"/>
  867. </path>
  868. <stroke/>
  869. <rect h="11" w="26" x="219.75" y="12.25"/>
  870. <stroke/>
  871. </foreground>
  872. </shape>
  873. <shape aspect="variable" h="280" name="Navigation Bar 1 Vertical" strokewidth="inherit" w="30">
  874. <connections/>
  875. <foreground>
  876. <rect h="280" w="30" x="0" y="0"/>
  877. <fill/>
  878. <path>
  879. <move x="4" y="232"/>
  880. <line x="23" y="232"/>
  881. <arc large-arc-flag="1" rx="3.5" ry="3.5" sweep-flag="1" x="23" x-axis-rotation="0" y="239"/>
  882. <line x="14" y="239"/>
  883. <move x="10" y="228"/>
  884. <line x="4" y="232"/>
  885. <line x="10" y="236"/>
  886. <move x="15" y="133"/>
  887. <line x="26" y="137"/>
  888. <line x="26" y="144"/>
  889. <line x="4" y="144"/>
  890. <line x="4" y="137"/>
  891. <close/>
  892. <move x="6" y="39"/>
  893. <line x="25" y="39"/>
  894. <line x="25" y="47"/>
  895. </path>
  896. <stroke/>
  897. <rect h="8" w="19" x="3" y="42"/>
  898. <stroke/>
  899. </foreground>
  900. </shape>
  901. <shape aspect="variable" h="30" name="Navigation Bar 2" strokewidth="inherit" w="174">
  902. <connections/>
  903. <foreground>
  904. <save/>
  905. <rect h="30" w="174" x="0" y="0"/>
  906. <fill/>
  907. <fillcolor color="#999999"/>
  908. <path>
  909. <move x="46" y="0"/>
  910. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="46" x-axis-rotation="0" y="30"/>
  911. <line x="16" y="30"/>
  912. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="16" x-axis-rotation="0" y="0"/>
  913. <close/>
  914. </path>
  915. <fill/>
  916. <strokecolor color="#ffffff"/>
  917. <path>
  918. <move x="18" y="12"/>
  919. <line x="40" y="12"/>
  920. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="40" x-axis-rotation="0" y="20"/>
  921. <line x="30" y="20"/>
  922. <move x="25" y="8"/>
  923. <line x="18" y="12"/>
  924. <line x="25" y="16"/>
  925. </path>
  926. <stroke/>
  927. <restore/>
  928. <rect/>
  929. <stroke/>
  930. <path>
  931. <move x="85" y="8"/>
  932. <line x="100" y="13"/>
  933. <line x="100" y="22"/>
  934. <line x="70" y="22"/>
  935. <line x="70" y="13"/>
  936. <close/>
  937. <move x="132" y="6"/>
  938. <line x="158" y="6"/>
  939. <line x="158" y="16"/>
  940. </path>
  941. <stroke/>
  942. <rect h="11" w="26" x="128" y="10"/>
  943. <stroke/>
  944. </foreground>
  945. </shape>
  946. <shape aspect="variable" h="30" name="Navigation Bar 3" strokewidth="inherit" w="174">
  947. <connections/>
  948. <foreground>
  949. <save/>
  950. <save/>
  951. <rect h="30" w="174" x="0" y="0"/>
  952. <fill/>
  953. <fillcolor color="#999999"/>
  954. <path>
  955. <move x="100" y="0"/>
  956. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="100" x-axis-rotation="0" y="30"/>
  957. <line x="70" y="30"/>
  958. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="70" x-axis-rotation="0" y="0"/>
  959. <close/>
  960. </path>
  961. <fill/>
  962. <restore/>
  963. <rect/>
  964. <stroke/>
  965. <path>
  966. <move x="18" y="12"/>
  967. <line x="40" y="12"/>
  968. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="40" x-axis-rotation="0" y="20"/>
  969. <line x="30" y="20"/>
  970. <move x="25" y="8"/>
  971. <line x="18" y="12"/>
  972. <line x="25" y="16"/>
  973. </path>
  974. <stroke/>
  975. <strokecolor color="#ffffff"/>
  976. <path>
  977. <move x="85" y="8"/>
  978. <line x="100" y="13"/>
  979. <line x="100" y="22"/>
  980. <line x="70" y="22"/>
  981. <line x="70" y="13"/>
  982. <close/>
  983. </path>
  984. <stroke/>
  985. <restore/>
  986. <rect/>
  987. <stroke/>
  988. <rect h="11" w="26" x="128" y="10"/>
  989. <stroke/>
  990. <path>
  991. <move x="132" y="6"/>
  992. <line x="158" y="6"/>
  993. <line x="158" y="16"/>
  994. </path>
  995. <stroke/>
  996. </foreground>
  997. </shape>
  998. <shape aspect="variable" h="30" name="Navigation Bar 3 Landscape" strokewidth="inherit" w="280">
  999. <connections/>
  1000. <foreground>
  1001. <save/>
  1002. <save/>
  1003. <rect h="30" w="280" x="0" y="0"/>
  1004. <fill/>
  1005. <fillcolor color="#999999"/>
  1006. <path>
  1007. <move x="155" y="0"/>
  1008. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="155" x-axis-rotation="0" y="30"/>
  1009. <line x="125" y="30"/>
  1010. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="125" x-axis-rotation="0" y="0"/>
  1011. <close/>
  1012. </path>
  1013. <fill/>
  1014. <restore/>
  1015. <rect/>
  1016. <stroke/>
  1017. <path>
  1018. <move x="25" y="12"/>
  1019. <line x="47" y="12"/>
  1020. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="47" x-axis-rotation="0" y="20"/>
  1021. <line x="37" y="20"/>
  1022. <move x="32" y="8"/>
  1023. <line x="25" y="12"/>
  1024. <line x="32" y="16"/>
  1025. </path>
  1026. <stroke/>
  1027. <strokecolor color="#ffffff"/>
  1028. <path>
  1029. <move x="140" y="8"/>
  1030. <line x="155" y="13"/>
  1031. <line x="155" y="22"/>
  1032. <line x="125" y="22"/>
  1033. <line x="125" y="13"/>
  1034. <close/>
  1035. </path>
  1036. <stroke/>
  1037. <restore/>
  1038. <rect/>
  1039. <stroke/>
  1040. <rect h="11" w="26" x="219.75" y="12.25"/>
  1041. <stroke/>
  1042. <path>
  1043. <move x="223.75" y="8.25"/>
  1044. <line x="249.75" y="8.25"/>
  1045. <line x="249.75" y="18.25"/>
  1046. </path>
  1047. <stroke/>
  1048. </foreground>
  1049. </shape>
  1050. <shape aspect="variable" h="30" name="Navigation Bar 4" strokewidth="inherit" w="174">
  1051. <connections/>
  1052. <foreground>
  1053. <save/>
  1054. <rect h="30" w="174" x="0" y="0"/>
  1055. <fill/>
  1056. <fillcolor color="#999999"/>
  1057. <path>
  1058. <move x="158" y="0"/>
  1059. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="158" x-axis-rotation="0" y="30"/>
  1060. <line x="128" y="30"/>
  1061. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="128" x-axis-rotation="0" y="0"/>
  1062. <close/>
  1063. </path>
  1064. <fill/>
  1065. <restore/>
  1066. <rect/>
  1067. <stroke/>
  1068. <path>
  1069. <move x="18" y="12"/>
  1070. <line x="40" y="12"/>
  1071. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="40" x-axis-rotation="0" y="20"/>
  1072. <line x="30" y="20"/>
  1073. <move x="25" y="8"/>
  1074. <line x="18" y="12"/>
  1075. <line x="25" y="16"/>
  1076. <move x="85" y="8"/>
  1077. <line x="100" y="13"/>
  1078. <line x="100" y="22"/>
  1079. <line x="70" y="22"/>
  1080. <line x="70" y="13"/>
  1081. <close/>
  1082. </path>
  1083. <stroke/>
  1084. <strokecolor color="#ffffff"/>
  1085. <rect h="11" w="26" x="128" y="10"/>
  1086. <stroke/>
  1087. <path>
  1088. <move x="132" y="6"/>
  1089. <line x="158" y="6"/>
  1090. <line x="158" y="16"/>
  1091. </path>
  1092. <stroke/>
  1093. </foreground>
  1094. </shape>
  1095. <shape aspect="variable" h="30" name="Navigation Bar 5" strokewidth="inherit" w="174">
  1096. <connections/>
  1097. <foreground>
  1098. <rect h="30" w="174" x="0" y="0"/>
  1099. <fill/>
  1100. <path>
  1101. <move x="85" y="8"/>
  1102. <line x="100" y="13"/>
  1103. <line x="100" y="22"/>
  1104. <line x="70" y="22"/>
  1105. <line x="70" y="13"/>
  1106. <close/>
  1107. <move x="132" y="6"/>
  1108. <line x="158" y="6"/>
  1109. <line x="158" y="16"/>
  1110. <move x="22" y="13"/>
  1111. <line x="31" y="18"/>
  1112. <line x="40" y="13"/>
  1113. </path>
  1114. <stroke/>
  1115. <rect h="11" w="26" x="128" y="10"/>
  1116. <stroke/>
  1117. </foreground>
  1118. </shape>
  1119. <shape aspect="variable" h="280" name="Navigation Bar 5 Vertical" strokewidth="inherit" w="30">
  1120. <connections/>
  1121. <foreground>
  1122. <rect h="280" w="30" x="0" y="0"/>
  1123. <fill/>
  1124. <path>
  1125. <move x="15" y="133"/>
  1126. <line x="26" y="137"/>
  1127. <line x="26" y="144"/>
  1128. <line x="4" y="144"/>
  1129. <line x="4" y="137"/>
  1130. <close/>
  1131. <move x="6" y="39"/>
  1132. <line x="25" y="39"/>
  1133. <line x="25" y="47"/>
  1134. <move x="7" y="232"/>
  1135. <line x="15" y="238"/>
  1136. <line x="23" y="232"/>
  1137. </path>
  1138. <stroke/>
  1139. <rect h="8" w="19" x="3" y="42"/>
  1140. <stroke/>
  1141. </foreground>
  1142. </shape>
  1143. <shape aspect="variable" h="30" name="Navigation Bar 6" strokewidth="inherit" w="174">
  1144. <connections/>
  1145. <foreground>
  1146. <rect h="30" w="174" x="0" y="0"/>
  1147. <fill/>
  1148. <fillcolor color="#999999"/>
  1149. <path>
  1150. <move x="46" y="0"/>
  1151. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="46" x-axis-rotation="0" y="30"/>
  1152. <line x="16" y="30"/>
  1153. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="16" x-axis-rotation="0" y="0"/>
  1154. <close/>
  1155. </path>
  1156. <fill/>
  1157. <path>
  1158. <move x="85" y="8"/>
  1159. <line x="100" y="13"/>
  1160. <line x="100" y="22"/>
  1161. <line x="70" y="22"/>
  1162. <line x="70" y="13"/>
  1163. <close/>
  1164. <move x="132" y="6"/>
  1165. <line x="158" y="6"/>
  1166. <line x="158" y="16"/>
  1167. </path>
  1168. <stroke/>
  1169. <rect h="11" w="26" x="128" y="10"/>
  1170. <stroke/>
  1171. <strokecolor color="#ffffff"/>
  1172. <path>
  1173. <move x="22" y="13"/>
  1174. <line x="31" y="18"/>
  1175. <line x="40" y="13"/>
  1176. </path>
  1177. <stroke/>
  1178. </foreground>
  1179. </shape>
  1180. <shape aspect="variable" h="390" name="Phone2" strokewidth="inherit" w="200">
  1181. <connections/>
  1182. <foreground>
  1183. <path>
  1184. <move x="0" y="36"/>
  1185. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="1" x="36" x-axis-rotation="0" y="0"/>
  1186. <line x="164" y="0"/>
  1187. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="1" x="200" x-axis-rotation="0" y="36"/>
  1188. <line x="200" y="354"/>
  1189. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="1" x="164" x-axis-rotation="0" y="390"/>
  1190. <line x="36" y="390"/>
  1191. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="1" x="0" x-axis-rotation="0" y="354"/>
  1192. <close/>
  1193. <close/>
  1194. <move x="8" y="35"/>
  1195. <line x="8" y="355"/>
  1196. <line x="193" y="355"/>
  1197. <line x="193" y="35"/>
  1198. <close/>
  1199. </path>
  1200. <fillstroke/>
  1201. <fillcolor color="#ffffff"/>
  1202. <ellipse h="6" w="6" x="64" y="5"/>
  1203. <fillstroke/>
  1204. <roundrect arcsize="42.86" h="14" w="48" x="76" y="366"/>
  1205. <fillstroke/>
  1206. <roundrect arcsize="40" h="5" w="45" x="77" y="7"/>
  1207. <fillstroke/>
  1208. <ellipse h="6" w="6" x="127" y="5"/>
  1209. <fillstroke/>
  1210. <ellipse h="6" w="6" x="137" y="5"/>
  1211. <fillstroke/>
  1212. <ellipse h="8" w="8" x="161" y="8"/>
  1213. <fillstroke/>
  1214. </foreground>
  1215. </shape>
  1216. <shape aspect="variable" h="5" name="Progress Bar" strokewidth="inherit" w="164">
  1217. <connections/>
  1218. <foreground>
  1219. <strokecolor color="#444444"/>
  1220. <path>
  1221. <move x="0" y="2.5"/>
  1222. <line x="164" y="2.5"/>
  1223. </path>
  1224. <stroke/>
  1225. <strokecolor color="#0077aa"/>
  1226. <path>
  1227. <move x="0" y="2.5"/>
  1228. <line x="125" y="2.5"/>
  1229. </path>
  1230. <stroke/>
  1231. <strokecolor color="#33b5e5"/>
  1232. <path>
  1233. <move x="0" y="2.5"/>
  1234. <line x="105" y="2.5"/>
  1235. </path>
  1236. <stroke/>
  1237. </foreground>
  1238. </shape>
  1239. <shape aspect="variable" h="16" name="Progress Scrubber Disabled" strokewidth="inherit" w="164">
  1240. <connections/>
  1241. <foreground>
  1242. <save/>
  1243. <strokecolor color="#444444"/>
  1244. <path>
  1245. <move x="0" y="8"/>
  1246. <line x="164" y="8"/>
  1247. </path>
  1248. <stroke/>
  1249. <fillcolor color="#666666"/>
  1250. <alpha alpha="0.5"/>
  1251. <ellipse h="16" w="16" x="32" y="0"/>
  1252. <fill/>
  1253. <restore/>
  1254. <rect/>
  1255. <stroke/>
  1256. <fillcolor color="#33b5e5"/>
  1257. <ellipse h="4" w="4" x="38" y="6"/>
  1258. <fill/>
  1259. </foreground>
  1260. </shape>
  1261. <shape aspect="variable" h="18" name="Progress Scrubber Focused" strokewidth="inherit" w="164">
  1262. <connections/>
  1263. <foreground>
  1264. <save/>
  1265. <strokecolor color="#444444"/>
  1266. <fillcolor color="none"/>
  1267. <path>
  1268. <move x="0" y="9"/>
  1269. <line x="164" y="9"/>
  1270. </path>
  1271. <stroke/>
  1272. <fillcolor color="#33b5e5"/>
  1273. <alpha alpha="0.75"/>
  1274. <ellipse h="18" w="18" x="61" y="0"/>
  1275. <fill/>
  1276. <restore/>
  1277. <rect/>
  1278. <stroke/>
  1279. <fillcolor color="#33b5e5"/>
  1280. <ellipse h="4" w="4" x="68" y="7"/>
  1281. <fill/>
  1282. <strokecolor color="#33b5e5"/>
  1283. <path>
  1284. <move x="0" y="9"/>
  1285. <line x="70" y="9"/>
  1286. </path>
  1287. <stroke/>
  1288. </foreground>
  1289. </shape>
  1290. <shape aspect="variable" h="16" name="Progress Scrubber Pressed" strokewidth="inherit" w="164">
  1291. <connections/>
  1292. <foreground>
  1293. <save/>
  1294. <strokecolor color="#444444"/>
  1295. <path>
  1296. <move x="0" y="8"/>
  1297. <line x="164" y="8"/>
  1298. </path>
  1299. <stroke/>
  1300. <strokecolor color="#33b5e5"/>
  1301. <fillcolor color="#33b5e5"/>
  1302. <alpha alpha="0.5"/>
  1303. <ellipse h="16" w="16" x="42" y="0"/>
  1304. <fillstroke/>
  1305. <restore/>
  1306. <rect/>
  1307. <stroke/>
  1308. <fillcolor color="#33b5e5"/>
  1309. <ellipse h="4" w="4" x="48" y="6"/>
  1310. <fill/>
  1311. <strokecolor color="#33b5e5"/>
  1312. <path>
  1313. <move x="0" y="8"/>
  1314. <line x="50" y="8"/>
  1315. </path>
  1316. <stroke/>
  1317. </foreground>
  1318. </shape>
  1319. <shape aspect="variable" h="300" name="Quickscroll" strokewidth="inherit" w="58">
  1320. <connections/>
  1321. <foreground>
  1322. <save/>
  1323. <save/>
  1324. <strokecolor color="#cccccc"/>
  1325. <strokewidth width="1"/>
  1326. <path>
  1327. <move x="55" y="0"/>
  1328. <line x="55" y="300"/>
  1329. </path>
  1330. <stroke/>
  1331. <restore/>
  1332. <rect/>
  1333. <stroke/>
  1334. <fillcolor color="#33b5e5"/>
  1335. <rect h="20" w="6" x="52" y="135"/>
  1336. <fill/>
  1337. <strokecolor color="#33b5e5"/>
  1338. <strokewidth width="3"/>
  1339. <alpha alpha="0.5"/>
  1340. <roundrect arcsize="16.67" h="20" w="6" x="52" y="135"/>
  1341. <stroke/>
  1342. <restore/>
  1343. <rect/>
  1344. <stroke/>
  1345. <fillcolor color="#666666"/>
  1346. <path>
  1347. <move x="40" y="125"/>
  1348. <line x="50" y="145"/>
  1349. <line x="40" y="165"/>
  1350. <close/>
  1351. </path>
  1352. <fill/>
  1353. <fillcolor color="#cccccc"/>
  1354. <rect h="40" w="40" x="0" y="125"/>
  1355. <fill/>
  1356. </foreground>
  1357. </shape>
  1358. <shape aspect="variable" h="300" name="Quickscroll 2" strokewidth="inherit" w="6">
  1359. <connections/>
  1360. <foreground>
  1361. <save/>
  1362. <strokecolor color="#cccccc"/>
  1363. <strokewidth width="1"/>
  1364. <path>
  1365. <move x="3" y="0"/>
  1366. <line x="3" y="300"/>
  1367. </path>
  1368. <stroke/>
  1369. <restore/>
  1370. <rect/>
  1371. <stroke/>
  1372. <fillcolor color="#33b5e5"/>
  1373. <rect h="20" w="6" x="0" y="135"/>
  1374. <fill/>
  1375. <strokecolor color="#33b5e5"/>
  1376. <strokewidth width="3"/>
  1377. <alpha alpha="0.5"/>
  1378. <roundrect arcsize="16.67" h="20" w="6" x="0" y="135"/>
  1379. <stroke/>
  1380. </foreground>
  1381. </shape>
  1382. <shape aspect="variable" h="166.25" name="Quick Contact" strokewidth="inherit" w="150">
  1383. <connections/>
  1384. <foreground>
  1385. <save/>
  1386. <save/>
  1387. <fillcolor color="#ffffff"/>
  1388. <strokewidth width="1"/>
  1389. <rect h="166.25" w="150" x="0" y="0"/>
  1390. <fill/>
  1391. <fillcolor color="#f5f5f5"/>
  1392. <rect h="85" w="150" x="0" y="0"/>
  1393. <fill/>
  1394. <fillcolor color="#ffffff"/>
  1395. <strokewidth width="1"/>
  1396. <path>
  1397. <move x="103" y="0"/>
  1398. <arc large-arc-flag="1" rx="45" ry="45" sweep-flag="1" x="47" x-axis-rotation="0" y="0"/>
  1399. <close/>
  1400. <close/>
  1401. </path>
  1402. <fill/>
  1403. <fillcolor color="#33b5e5"/>
  1404. <path>
  1405. <move x="0" y="105"/>
  1406. <line x="25" y="105"/>
  1407. <line x="25" y="108"/>
  1408. <line x="150" y="108"/>
  1409. <line x="150" y="166"/>
  1410. <line x="0" y="166"/>
  1411. <close/>
  1412. </path>
  1413. <fill/>
  1414. <fillcolor color="#f5f5f5"/>
  1415. <rect h="55" w="148" x="1" y="109.5"/>
  1416. <fill/>
  1417. <strokecolor color="#cccccc"/>
  1418. <path>
  1419. <move x="1" y="137"/>
  1420. <line x="149" y="137"/>
  1421. </path>
  1422. <stroke/>
  1423. <fillcolor color="#f5f5f5"/>
  1424. <path>
  1425. <move x="45" y="55"/>
  1426. <line x="105" y="55"/>
  1427. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="1" x="45" x-axis-rotation="0" y="55"/>
  1428. <close/>
  1429. </path>
  1430. <fill/>
  1431. <fillcolor color="#000000"/>
  1432. <alpha alpha="0.5"/>
  1433. <rect h="20" w="150" x="0" y="65"/>
  1434. <fill/>
  1435. <restore/>
  1436. <rect/>
  1437. <stroke/>
  1438. <strokecolor color="#cccccc"/>
  1439. <strokewidth width="1"/>
  1440. <path>
  1441. <move x="120" y="142"/>
  1442. <line x="120" y="159"/>
  1443. </path>
  1444. <stroke/>
  1445. <fillcolor color="#666666"/>
  1446. <path>
  1447. <move x="128" y="118"/>
  1448. <line x="145" y="118"/>
  1449. <line x="142" y="120"/>
  1450. <line x="142" y="127"/>
  1451. <line x="128" y="127"/>
  1452. <close/>
  1453. </path>
  1454. <fill/>
  1455. <strokecolor color="#f5f5f5"/>
  1456. <path>
  1457. <move x="130" y="121"/>
  1458. <line x="136" y="121"/>
  1459. <move x="130" y="124"/>
  1460. <line x="139" y="124"/>
  1461. </path>
  1462. <stroke/>
  1463. <fillcolor color="#ffffff"/>
  1464. <path>
  1465. <move x="126.68" y="79.5"/>
  1466. <arc large-arc-flag="0" rx="5.44" ry="5.44" sweep-flag="1" x="130.24" x-axis-rotation="0" y="75.22"/>
  1467. <arc large-arc-flag="0" rx="4.99" ry="4.99" sweep-flag="0" x="134.51" x-axis-rotation="0" y="75.22"/>
  1468. <arc large-arc-flag="0" rx="6.42" ry="6.42" sweep-flag="1" x="138.08" x-axis-rotation="0" y="79.5"/>
  1469. <close/>
  1470. <close/>
  1471. </path>
  1472. <fill/>
  1473. <ellipse h="8.26" w="8.27" x="128.24" y="66.82"/>
  1474. <fill/>
  1475. <fillcolor color="#666666"/>
  1476. <alpha alpha="0.8"/>
  1477. <path>
  1478. <move x="129.5" y="72"/>
  1479. <line x="135.5" y="72"/>
  1480. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="129.5" x-axis-rotation="0" y="72"/>
  1481. <close/>
  1482. </path>
  1483. <fill/>
  1484. <restore/>
  1485. <rect/>
  1486. <stroke/>
  1487. <strokecolor color="#cccccc"/>
  1488. <strokewidth width="1"/>
  1489. <path>
  1490. <move x="120" y="115"/>
  1491. <line x="120" y="132"/>
  1492. </path>
  1493. <stroke/>
  1494. <fillcolor color="#666666"/>
  1495. <path>
  1496. <move x="128" y="146"/>
  1497. <line x="145" y="146"/>
  1498. <line x="142" y="148"/>
  1499. <line x="142" y="155"/>
  1500. <line x="128" y="155"/>
  1501. <close/>
  1502. </path>
  1503. <fill/>
  1504. <strokecolor color="#f5f5f5"/>
  1505. <path>
  1506. <move x="130" y="149"/>
  1507. <line x="136" y="149"/>
  1508. <move x="130" y="152"/>
  1509. <line x="139" y="152"/>
  1510. </path>
  1511. <stroke/>
  1512. </foreground>
  1513. </shape>
  1514. <shape aspect="variable" h="15" name="Scrollable Tab" strokewidth="inherit" w="174">
  1515. <connections/>
  1516. <foreground>
  1517. <rect h="15" w="174" x="0" y="0"/>
  1518. <fill/>
  1519. </foreground>
  1520. </shape>
  1521. <shape aspect="variable" h="56" name="Scrollbars" strokewidth="inherit" w="56">
  1522. <connections/>
  1523. <foreground>
  1524. <rect h="50" w="5" x="51" y="0"/>
  1525. <fill/>
  1526. <rect h="5" w="50" x="0" y="51"/>
  1527. <fill/>
  1528. </foreground>
  1529. </shape>
  1530. <shape aspect="variable" h="10" name="Spinner" strokewidth="inherit" w="110">
  1531. <connections/>
  1532. <foreground>
  1533. <path>
  1534. <move x="0" y="10"/>
  1535. <line x="110" y="10"/>
  1536. <line x="110" y="0"/>
  1537. <line x="100" y="10"/>
  1538. </path>
  1539. <fillstroke/>
  1540. </foreground>
  1541. </shape>
  1542. <shape aspect="variable" h="28" name="Spinner Disabled Focused" strokewidth="inherit" w="117">
  1543. <connections/>
  1544. <foreground>
  1545. <strokecolor color="#33b5e5"/>
  1546. <fillcolor color="#207585"/>
  1547. <roundrect arcsize="10.71" h="28" w="117" x="0" y="0"/>
  1548. <fillstroke/>
  1549. <strokecolor color="#999999"/>
  1550. <fillcolor color="#999999"/>
  1551. <path>
  1552. <move x="3" y="24"/>
  1553. <line x="113" y="24"/>
  1554. <line x="113" y="14"/>
  1555. <line x="103" y="24"/>
  1556. </path>
  1557. <fillstroke/>
  1558. </foreground>
  1559. </shape>
  1560. <shape aspect="variable" h="28" name="Spinner Disabled Focused Light" strokewidth="inherit" w="117">
  1561. <connections/>
  1562. <foreground>
  1563. <strokecolor color="#88c5f5"/>
  1564. <fillcolor color="#ccf2ff"/>
  1565. <roundrect arcsize="10.71" h="28" w="117" x="0" y="0"/>
  1566. <fillstroke/>
  1567. <strokecolor color="#cccccc"/>
  1568. <fillcolor color="#cccccc"/>
  1569. <path>
  1570. <move x="3" y="24"/>
  1571. <line x="113" y="24"/>
  1572. <line x="113" y="14"/>
  1573. <line x="103" y="24"/>
  1574. </path>
  1575. <fillstroke/>
  1576. </foreground>
  1577. </shape>
  1578. <shape aspect="variable" h="28" name="Spinner Pressed" strokewidth="inherit" w="117">
  1579. <connections/>
  1580. <foreground>
  1581. <strokecolor color="#33b5e5"/>
  1582. <fillcolor color="#33b5e5"/>
  1583. <roundrect arcsize="10.71" h="28" w="117" x="0" y="0"/>
  1584. <fillstroke/>
  1585. <strokecolor color="#aaeeff"/>
  1586. <fillcolor color="#aaeeff"/>
  1587. <path>
  1588. <move x="3" y="24"/>
  1589. <line x="113" y="24"/>
  1590. <line x="113" y="14"/>
  1591. <line x="103" y="24"/>
  1592. </path>
  1593. <fillstroke/>
  1594. </foreground>
  1595. </shape>
  1596. <shape aspect="variable" h="28" name="Spinner Pressed Light" strokewidth="inherit" w="117">
  1597. <connections/>
  1598. <foreground>
  1599. <strokecolor color="#33b5e5"/>
  1600. <fillcolor color="#33b5e5"/>
  1601. <roundrect arcsize="10.71" h="28" w="117" x="0" y="0"/>
  1602. <fillstroke/>
  1603. <strokecolor color="#666666"/>
  1604. <fillcolor color="#666666"/>
  1605. <path>
  1606. <move x="3" y="24"/>
  1607. <line x="113" y="24"/>
  1608. <line x="113" y="14"/>
  1609. <line x="103" y="24"/>
  1610. </path>
  1611. <fillstroke/>
  1612. </foreground>
  1613. </shape>
  1614. <shape aspect="variable" h="70" name="Split Action Bar" strokewidth="inherit" w="174">
  1615. <connections/>
  1616. <foreground>
  1617. <rect h="30" w="174" x="0" y="40"/>
  1618. <fill/>
  1619. <rect h="30" w="174" x="0" y="0"/>
  1620. <fill/>
  1621. <strokecolor color="#999999"/>
  1622. <path>
  1623. <move x="10" y="8"/>
  1624. <line x="5" y="15"/>
  1625. <line x="10" y="22"/>
  1626. </path>
  1627. <stroke/>
  1628. <fillcolor color="#999999"/>
  1629. <rect h="5" w="5" x="155" y="46"/>
  1630. <fill/>
  1631. <rect h="5" w="5" x="155" y="52.5"/>
  1632. <fill/>
  1633. <rect h="5" w="5" x="155" y="59"/>
  1634. <fill/>
  1635. </foreground>
  1636. </shape>
  1637. <shape aspect="variable" h="70" name="Split Action Bar Landscape" strokewidth="inherit" w="280">
  1638. <connections/>
  1639. <foreground>
  1640. <rect h="30" w="280" x="0" y="40"/>
  1641. <fill/>
  1642. <rect h="30" w="280" x="0" y="0"/>
  1643. <fill/>
  1644. <strokecolor color="#999999"/>
  1645. <path>
  1646. <move x="10" y="8"/>
  1647. <line x="5" y="15"/>
  1648. <line x="10" y="22"/>
  1649. </path>
  1650. <stroke/>
  1651. <fillcolor color="#999999"/>
  1652. <rect h="5" w="5" x="260" y="46"/>
  1653. <fill/>
  1654. <rect h="5" w="5" x="260" y="52.5"/>
  1655. <fill/>
  1656. <rect h="5" w="5" x="260" y="59"/>
  1657. <fill/>
  1658. </foreground>
  1659. </shape>
  1660. <shape aspect="variable" h="20" name="Switch Off" strokewidth="inherit" w="80">
  1661. <connections/>
  1662. <foreground>
  1663. <rect h="20" w="80" x="0" y="0"/>
  1664. <fill/>
  1665. <strokecolor color="#cccccc"/>
  1666. <fillcolor color="#999999"/>
  1667. <roundrect arcsize="11.76" h="17" w="37" x="1.5" y="1.5"/>
  1668. <fillstroke/>
  1669. <fontsize size="10"/>
  1670. <fontcolor color="#ffffff"/>
  1671. <text str="OFF" valign="middle" align="center" x="18" y="10"/>
  1672. </foreground>
  1673. </shape>
  1674. <shape aspect="variable" h="20" name="Switch On" strokewidth="inherit" w="80">
  1675. <connections/>
  1676. <foreground>
  1677. <rect h="20" w="80" x="0" y="0"/>
  1678. <fill/>
  1679. <strokecolor color="#cccccc"/>
  1680. <fillcolor color="#33b5e5"/>
  1681. <roundrect arcsize="11.76" h="17" w="37" x="41" y="1.5"/>
  1682. <fillstroke/>
  1683. <fontsize size="10"/>
  1684. <fontcolor color="#ffffff"/>
  1685. <text str="ON" valign="middle" align="center" x="58" y="10"/>
  1686. </foreground>
  1687. </shape>
  1688. <shape aspect="variable" h="686" name="Tab2" strokewidth="inherit" w="472">
  1689. <connections/>
  1690. <foreground>
  1691. <path>
  1692. <move x="0" y="36"/>
  1693. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="1" x="36" x-axis-rotation="0" y="0"/>
  1694. <line x="436" y="0"/>
  1695. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="1" x="472" x-axis-rotation="0" y="36"/>
  1696. <line x="472" y="650"/>
  1697. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="1" x="436" x-axis-rotation="0" y="686"/>
  1698. <line x="36" y="686"/>
  1699. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="1" x="0" x-axis-rotation="0" y="650"/>
  1700. <close/>
  1701. <close/>
  1702. <move x="52" y="52"/>
  1703. <line x="52" y="636"/>
  1704. <line x="417" y="636"/>
  1705. <line x="417" y="52"/>
  1706. <close/>
  1707. </path>
  1708. <fillstroke/>
  1709. <fillcolor color="#ffffff"/>
  1710. <ellipse h="8" w="8" x="440" y="364"/>
  1711. <fillstroke/>
  1712. <fillcolor color="none"/>
  1713. <path>
  1714. <move x="5" y="41"/>
  1715. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="32" x-axis-rotation="0" y="12"/>
  1716. <line x="442" y="12"/>
  1717. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="469" x-axis-rotation="0" y="41"/>
  1718. <line x="469" y="647"/>
  1719. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="439" x-axis-rotation="0" y="677"/>
  1720. <line x="32" y="677"/>
  1721. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="5" x-axis-rotation="0" y="647"/>
  1722. <close/>
  1723. </path>
  1724. <stroke/>
  1725. <path>
  1726. <move x="267" y="12"/>
  1727. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="272" x-axis-rotation="0" y="7"/>
  1728. <line x="396" y="7"/>
  1729. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="401" x-axis-rotation="0" y="12"/>
  1730. </path>
  1731. <stroke/>
  1732. <path>
  1733. <move x="267" y="677"/>
  1734. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="272" x-axis-rotation="0" y="682"/>
  1735. <line x="396" y="682"/>
  1736. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="401" x-axis-rotation="0" y="677"/>
  1737. </path>
  1738. <stroke/>
  1739. </foreground>
  1740. </shape>
  1741. <shape aspect="variable" h="30" name="Textfield" strokewidth="inherit" w="164">
  1742. <connections/>
  1743. <foreground>
  1744. <path>
  1745. <move x="0" y="25"/>
  1746. <line x="0" y="30"/>
  1747. <line x="164" y="30"/>
  1748. <line x="164" y="25"/>
  1749. </path>
  1750. <stroke/>
  1751. <rect h="30" w="164" x="0" y="0"/>
  1752. </foreground>
  1753. </shape>
  1754. <shape aspect="variable" h="30" name="Text Insertion Point" strokewidth="inherit" w="20">
  1755. <connections/>
  1756. <foreground>
  1757. <fillcolor color="#0099cc"/>
  1758. <rect h="20" w="20" x="0" y="10"/>
  1759. <fill/>
  1760. <fillcolor color="#33b5e5"/>
  1761. <path>
  1762. <move x="10" y="0"/>
  1763. <line x="20" y="10"/>
  1764. <line x="0" y="10"/>
  1765. <close/>
  1766. </path>
  1767. <fill/>
  1768. </foreground>
  1769. </shape>
  1770. <shape aspect="variable" h="230" name="Time Picker" strokewidth="inherit" w="150">
  1771. <connections/>
  1772. <foreground>
  1773. <save/>
  1774. <save/>
  1775. <fillcolor color="#f7f7f7"/>
  1776. <rect h="230" w="150" x="0" y="0"/>
  1777. <fill/>
  1778. <fillcolor color="#ffffff"/>
  1779. <rect h="50" w="150" x="0" y="0"/>
  1780. <fill/>
  1781. <ellipse h="130" w="130" x="10" y="60"/>
  1782. <fill/>
  1783. <ellipse h="24" w="24" x="10" y="179"/>
  1784. <fill/>
  1785. <fillcolor color="#d6f0f9"/>
  1786. <ellipse h="24" w="24" x="116" y="179"/>
  1787. <fill/>
  1788. <strokecolor color="#dddddd"/>
  1789. <path>
  1790. <move x="0" y="210"/>
  1791. <line x="150" y="210"/>
  1792. </path>
  1793. <stroke/>
  1794. <fillcolor color="#d6f0f9"/>
  1795. <ellipse h="20" w="20" x="115" y="115"/>
  1796. <fill/>
  1797. <restore/>
  1798. <rect/>
  1799. <stroke/>
  1800. <fontsize size="25"/>
  1801. <fontcolor color="#aaaaaa"/>
  1802. <text str=":08" align="center" valign="middle" x="80" y="23"/>
  1803. <fontsize size="6"/>
  1804. <text str="PM" align="center" valign="middle" x="101" y="20"/>
  1805. <strokecolor color="#d6f0f9"/>
  1806. <path>
  1807. <move x="75" y="125"/>
  1808. <line x="115" y="125"/>
  1809. </path>
  1810. <stroke/>
  1811. <restore/>
  1812. <rect/>
  1813. <stroke/>
  1814. <fontsize size="8"/>
  1815. <fontcolor color="#aaaaaa"/>
  1816. <text str="AM" align="center" valign="middle" x="22" y="192"/>
  1817. <text str="PM" align="center" valign="middle" x="128" y="192"/>
  1818. <text str="12" align="center" valign="middle" x="75" y="74"/>
  1819. <text str="1" align="center" valign="middle" x="99" y="81"/>
  1820. <text str="2" align="center" valign="middle" x="118" y="98"/>
  1821. <text str="3" align="center" valign="middle" x="125" y="124"/>
  1822. <text str="4" align="center" valign="middle" x="118" y="149"/>
  1823. <text str="5" align="center" valign="middle" x="99" y="169"/>
  1824. <text str="6" align="center" valign="middle" x="75" y="174"/>
  1825. <text str="7" align="center" valign="middle" x="50" y="169"/>
  1826. <text str="8" align="center" valign="middle" x="32" y="149"/>
  1827. <text str="9" align="center" valign="middle" x="25" y="124"/>
  1828. <text str="10" align="center" valign="middle" x="32" y="98"/>
  1829. <text str="11" align="center" valign="middle" x="50" y="81"/>
  1830. <fontsize size="6"/>
  1831. <text str="Done" align="center" valign="middle" x="75" y="220"/>
  1832. <fontsize size="26"/>
  1833. <fontcolor color="#33b5e6"/>
  1834. <text str="3" align="center" valign="middle" x="57" y="23"/>
  1835. </foreground>
  1836. </shape>
  1837. <shape aspect="variable" h="230" name="Time Picker Dark" strokewidth="inherit" w="150">
  1838. <connections/>
  1839. <foreground>
  1840. <save/>
  1841. <save/>
  1842. <fillcolor color="#222222"/>
  1843. <rect h="230" w="150" x="0" y="0"/>
  1844. <fill/>
  1845. <fillcolor color="#444444"/>
  1846. <rect h="50" w="150" x="0" y="0"/>
  1847. <fill/>
  1848. <fillcolor color="#ffffff"/>
  1849. <ellipse h="130" w="130" x="10" y="60"/>
  1850. <fill/>
  1851. <ellipse h="24" w="24" x="10" y="179"/>
  1852. <fill/>
  1853. <fillcolor color="#d6f0f9"/>
  1854. <ellipse h="24" w="24" x="116" y="179"/>
  1855. <fill/>
  1856. <strokecolor color="#dddddd"/>
  1857. <path>
  1858. <move x="0" y="210"/>
  1859. <line x="150" y="210"/>
  1860. </path>
  1861. <stroke/>
  1862. <fillcolor color="#d6f0f9"/>
  1863. <ellipse h="20" w="20" x="115" y="115"/>
  1864. <fill/>
  1865. <restore/>
  1866. <rect/>
  1867. <stroke/>
  1868. <fontsize size="25"/>
  1869. <fontcolor color="#aaaaaa"/>
  1870. <text str=":08" align="center" valign="middle" x="80" y="23"/>
  1871. <fontsize size="6"/>
  1872. <text str="PM" align="center" valign="middle" x="101" y="20"/>
  1873. <strokecolor color="#d6f0f9"/>
  1874. <path>
  1875. <move x="75" y="125"/>
  1876. <line x="115" y="125"/>
  1877. </path>
  1878. <stroke/>
  1879. <restore/>
  1880. <rect/>
  1881. <stroke/>
  1882. <fontsize size="8"/>
  1883. <fontcolor color="#aaaaaa"/>
  1884. <text str="AM" align="center" valign="middle" x="22" y="192"/>
  1885. <text str="PM" align="center" valign="middle" x="128" y="192"/>
  1886. <text str="12" align="center" valign="middle" x="75" y="74"/>
  1887. <text str="1" align="center" valign="middle" x="99" y="81"/>
  1888. <text str="2" align="center" valign="middle" x="118" y="98"/>
  1889. <text str="3" align="center" valign="middle" x="125" y="124"/>
  1890. <text str="4" align="center" valign="middle" x="118" y="149"/>
  1891. <text str="5" align="center" valign="middle" x="99" y="169"/>
  1892. <text str="6" align="center" valign="middle" x="75" y="174"/>
  1893. <text str="7" align="center" valign="middle" x="50" y="169"/>
  1894. <text str="8" align="center" valign="middle" x="32" y="149"/>
  1895. <text str="9" align="center" valign="middle" x="25" y="124"/>
  1896. <text str="10" align="center" valign="middle" x="32" y="98"/>
  1897. <text str="11" align="center" valign="middle" x="50" y="81"/>
  1898. <fontsize size="6"/>
  1899. <text str="Done" align="center" valign="middle" x="75" y="220"/>
  1900. <fontsize size="26"/>
  1901. <fontcolor color="#33b5e6"/>
  1902. <text str="3" align="center" valign="middle" x="57" y="23"/>
  1903. </foreground>
  1904. </shape>
  1905. </shapes>