umlaut 3.0.0alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (293) hide show
  1. data/LICENSE +7 -0
  2. data/README.md +49 -0
  3. data/Rakefile +37 -0
  4. data/app/assets/images/error.gif +0 -0
  5. data/app/assets/images/export_bg_bot.gif +0 -0
  6. data/app/assets/images/export_bg_mid.gif +0 -0
  7. data/app/assets/images/export_bg_top.gif +0 -0
  8. data/app/assets/images/famfamfam/book_open.png +0 -0
  9. data/app/assets/images/famfamfam/cross.png +0 -0
  10. data/app/assets/images/famfamfam/page_sound.gif +0 -0
  11. data/app/assets/images/famfamfam/page_text.gif +0 -0
  12. data/app/assets/images/famfamfam/page_up.gif +0 -0
  13. data/app/assets/images/famfamfam/page_white.png +0 -0
  14. data/app/assets/images/famfamfam/readme.html +1495 -0
  15. data/app/assets/images/famfamfam/tiny_cross.png +0 -0
  16. data/app/assets/images/frame_remove.gif +0 -0
  17. data/app/assets/images/ico_go.gif +0 -0
  18. data/app/assets/images/jhu_findit.gif +0 -0
  19. data/app/assets/images/list_closed.png +0 -0
  20. data/app/assets/images/list_open.png +0 -0
  21. data/app/assets/images/more_info.gif +0 -0
  22. data/app/assets/images/rails.png +0 -0
  23. data/app/assets/images/request.gif +0 -0
  24. data/app/assets/images/spinner.gif +0 -0
  25. data/app/assets/javascripts/umlaut/ajax_windows.js +35 -0
  26. data/app/assets/javascripts/umlaut/ensure_window_size.js.erb +34 -0
  27. data/app/assets/javascripts/umlaut/expand_contract_toggle.js +25 -0
  28. data/app/assets/javascripts/umlaut/search_autocomplete.js +46 -0
  29. data/app/assets/javascripts/umlaut/simple_visible_toggle.js +8 -0
  30. data/app/assets/javascripts/umlaut/update_html.js +152 -0
  31. data/app/assets/javascripts/umlaut.js +17 -0
  32. data/app/assets/stylesheets/umlaut.css +857 -0
  33. data/app/controllers/application_controller.rb +14 -0
  34. data/app/controllers/export_email_controller.rb +123 -0
  35. data/app/controllers/js_helper_controller.rb +10 -0
  36. data/app/controllers/link_router_controller.rb +87 -0
  37. data/app/controllers/open_search_controller.rb +9 -0
  38. data/app/controllers/resolve_controller.rb +288 -0
  39. data/app/controllers/resource_controller.rb +83 -0
  40. data/app/controllers/search_controller.rb +328 -0
  41. data/app/controllers/search_methods/sfx3.rb +148 -0
  42. data/app/controllers/search_methods/sfx4.rb +257 -0
  43. data/app/controllers/search_methods/sfx_api.rb +47 -0
  44. data/app/controllers/store_controller.rb +64 -0
  45. data/app/controllers/umlaut/controller_behavior.rb +20 -0
  46. data/app/controllers/umlaut/controller_logic.rb +96 -0
  47. data/app/controllers/umlaut/error_handling.rb +48 -0
  48. data/app/controllers/umlaut_controller.rb +112 -0
  49. data/app/helpers/application_helper.rb +4 -0
  50. data/app/helpers/emailer_helper.rb +43 -0
  51. data/app/helpers/export_email_helper.rb +34 -0
  52. data/app/helpers/open_search_helper.rb +7 -0
  53. data/app/helpers/resolve_helper.rb +225 -0
  54. data/app/helpers/search_helper.rb +50 -0
  55. data/app/helpers/umlaut/footer_helper.rb +64 -0
  56. data/app/helpers/umlaut/helper.rb +62 -0
  57. data/app/helpers/umlaut/html_head_helper.rb +37 -0
  58. data/app/helpers/umlaut/url_generation.rb +77 -0
  59. data/app/mailers/emailer.rb +48 -0
  60. data/app/models/clickthrough.rb +2 -0
  61. data/app/models/collection.rb +259 -0
  62. data/app/models/crossref_lookup.rb +2 -0
  63. data/app/models/dispatched_service.rb +58 -0
  64. data/app/models/permalink.rb +29 -0
  65. data/app/models/referent.rb +473 -0
  66. data/app/models/referent_value.rb +14 -0
  67. data/app/models/request.rb +449 -0
  68. data/app/models/service_response.rb +179 -0
  69. data/app/models/service_store.rb +59 -0
  70. data/app/models/service_type_value.rb +58 -0
  71. data/app/models/service_wave.rb +150 -0
  72. data/app/models/sfx_db/az_additional_title.rb +11 -0
  73. data/app/models/sfx_db/az_letter_group.rb +11 -0
  74. data/app/models/sfx_db/az_title.rb +38 -0
  75. data/app/models/sfx_db/az_title_v2.rb +34 -0
  76. data/app/models/sfx_db/isbn.rb +12 -0
  77. data/app/models/sfx_db/issn.rb +12 -0
  78. data/app/models/sfx_db/object.rb +35 -0
  79. data/app/models/sfx_db/object_portfolio.rb +6 -0
  80. data/app/models/sfx_db/publisher.rb +10 -0
  81. data/app/models/sfx_db/sfx_db_base.rb +54 -0
  82. data/app/models/sfx_db/target.rb +9 -0
  83. data/app/models/sfx_db/target_service.rb +10 -0
  84. data/app/models/sfx_db/title.rb +10 -0
  85. data/app/models/sfx_db.rb +10 -0
  86. data/app/models/sfx_url.rb +35 -0
  87. data/app/views/emailer/citation.text.erb +28 -0
  88. data/app/views/emailer/short_citation.text.erb +8 -0
  89. data/app/views/export_email/_email.html.erb +25 -0
  90. data/app/views/export_email/_send_email.html.erb +3 -0
  91. data/app/views/export_email/_send_txt.html.erb +3 -0
  92. data/app/views/export_email/_txt.html.erb +62 -0
  93. data/app/views/export_email/email.html.erb +3 -0
  94. data/app/views/export_email/send_email.html.erb +1 -0
  95. data/app/views/export_email/send_txt.html.erb +1 -0
  96. data/app/views/export_email/txt.html.erb +3 -0
  97. data/app/views/js_helper/loader.erb.js +13 -0
  98. data/app/views/layouts/umlaut.html.erb +52 -0
  99. data/app/views/open_search/index.html.erb +9 -0
  100. data/app/views/resolve/_api_in_progress.xml.erb +21 -0
  101. data/app/views/resolve/_background_progress.html.erb +51 -0
  102. data/app/views/resolve/_background_updater.html.erb +38 -0
  103. data/app/views/resolve/_citation.html.erb +87 -0
  104. data/app/views/resolve/_coins.html.erb +1 -0
  105. data/app/views/resolve/_compact_citation.html.erb +33 -0
  106. data/app/views/resolve/_cover_image.html.erb +35 -0
  107. data/app/views/resolve/_fulltext.html.erb +55 -0
  108. data/app/views/resolve/_help.html.erb +17 -0
  109. data/app/views/resolve/_holding.html.erb +91 -0
  110. data/app/views/resolve/_related_items.html.erb +35 -0
  111. data/app/views/resolve/_search_inside.html.erb +62 -0
  112. data/app/views/resolve/_section_display.html.erb +49 -0
  113. data/app/views/resolve/_service_errors.html.erb +29 -0
  114. data/app/views/resolve/_standard_response_item.html.erb +89 -0
  115. data/app/views/resolve/api.xml.builder +72 -0
  116. data/app/views/resolve/background_status.html.erb +26 -0
  117. data/app/views/resolve/index.html.erb +73 -0
  118. data/app/views/resolve/partial_html_sections.xml.erb +30 -0
  119. data/app/views/search/_a_to_z.html.erb +6 -0
  120. data/app/views/search/_citation.html.erb +94 -0
  121. data/app/views/search/_pager.html.erb +60 -0
  122. data/app/views/search/books.html.erb +103 -0
  123. data/app/views/search/journal_search.html.erb +90 -0
  124. data/app/views/search/journals.html.erb +167 -0
  125. data/app/views/search/opensearch_description.rxml +10 -0
  126. data/app/views/testing/index.html.erb +1 -0
  127. data/app/views/umlaut/README +5 -0
  128. data/app/views/umlaut/error.html.erb +45 -0
  129. data/db/migrate/01_umlaut_init.rb +113 -0
  130. data/db/orig_fixed_data/service_type_values.yml +120 -0
  131. data/db/seeds.rb +7 -0
  132. data/lib/CronTab.rb +192 -0
  133. data/lib/aws_product_sign.rb +146 -0
  134. data/lib/exlibris/aleph/patron.rb +64 -0
  135. data/lib/exlibris/aleph/record.rb +54 -0
  136. data/lib/exlibris/aleph/rest_api.rb +29 -0
  137. data/lib/exlibris/primo/holding.rb +192 -0
  138. data/lib/exlibris/primo/rsrc.rb +17 -0
  139. data/lib/exlibris/primo/searcher.rb +276 -0
  140. data/lib/exlibris/primo/source/aleph.rb +46 -0
  141. data/lib/exlibris/primo/source/distribution/nyu_aleph.rb +323 -0
  142. data/lib/exlibris/primo/toc.rb +17 -0
  143. data/lib/exlibris/primo_ws.rb +140 -0
  144. data/lib/generators/templates/umlaut_services.yml +237 -0
  145. data/lib/generators/umlaut/asset_hooks_generator.rb +44 -0
  146. data/lib/generators/umlaut/install_generator.rb +110 -0
  147. data/lib/hip3/bib.rb +291 -0
  148. data/lib/hip3/bib_searcher.rb +302 -0
  149. data/lib/hip3/custom_field_lookup.rb +44 -0
  150. data/lib/hip3/holding.rb +50 -0
  151. data/lib/hip3/item.rb +65 -0
  152. data/lib/hip3/receipt.rb +7 -0
  153. data/lib/hip3/serial_copy.rb +82 -0
  154. data/lib/holding.rb +32 -0
  155. data/lib/marc_helper.rb +254 -0
  156. data/lib/metadata_helper.rb +312 -0
  157. data/lib/opensearch_feed.rb +398 -0
  158. data/lib/opensearch_query.rb +98 -0
  159. data/lib/referent_filter.rb +16 -0
  160. data/lib/referent_filters/dissertation_catch.rb +45 -0
  161. data/lib/section_renderer.rb +503 -0
  162. data/lib/service.rb +336 -0
  163. data/lib/service_adaptors/ajax_export.rb +37 -0
  164. data/lib/service_adaptors/amazon.rb +412 -0
  165. data/lib/service_adaptors/blacklight.rb +327 -0
  166. data/lib/service_adaptors/book_finder.rb +40 -0
  167. data/lib/service_adaptors/bx.rb +51 -0
  168. data/lib/service_adaptors/cover_thing.rb +73 -0
  169. data/lib/service_adaptors/elsevier_cover.rb +57 -0
  170. data/lib/service_adaptors/email_export.rb +10 -0
  171. data/lib/service_adaptors/ezproxy.rb +171 -0
  172. data/lib/service_adaptors/google_book_search.rb +442 -0
  173. data/lib/service_adaptors/gpo.rb +124 -0
  174. data/lib/service_adaptors/hathi_trust.rb +308 -0
  175. data/lib/service_adaptors/hip3_service.rb +150 -0
  176. data/lib/service_adaptors/hip_holding_search.rb +237 -0
  177. data/lib/service_adaptors/internet_archive.rb +488 -0
  178. data/lib/service_adaptors/isbn_db.rb +86 -0
  179. data/lib/service_adaptors/isi.rb +258 -0
  180. data/lib/service_adaptors/jcr.rb +146 -0
  181. data/lib/service_adaptors/opac.rb +351 -0
  182. data/lib/service_adaptors/open_library.rb +316 -0
  183. data/lib/service_adaptors/open_library_cover.rb +73 -0
  184. data/lib/service_adaptors/primo_service.rb +392 -0
  185. data/lib/service_adaptors/primo_source.rb +78 -0
  186. data/lib/service_adaptors/pubmed.rb +133 -0
  187. data/lib/service_adaptors/request_to_fixture.rb +68 -0
  188. data/lib/service_adaptors/scopus.rb +295 -0
  189. data/lib/service_adaptors/sfx-new.rb +557 -0
  190. data/lib/service_adaptors/sfx.rb +566 -0
  191. data/lib/service_adaptors/sfx_backchannel_record.rb +69 -0
  192. data/lib/service_adaptors/txt_holding_export.rb +32 -0
  193. data/lib/service_adaptors/ulrichs_cover.rb +57 -0
  194. data/lib/service_adaptors/ulrichs_link.rb +47 -0
  195. data/lib/service_adaptors/worldcat.rb +116 -0
  196. data/lib/service_adaptors/worldcat_identities.rb +591 -0
  197. data/lib/tasks/umlaut.rake +134 -0
  198. data/lib/umlaut/default_configuration.rb +5 -0
  199. data/lib/umlaut/routes.rb +136 -0
  200. data/lib/umlaut/version.rb +3 -0
  201. data/lib/umlaut.rb +37 -0
  202. data/lib/umlaut_configurable.rb +343 -0
  203. data/lib/umlaut_http.rb +100 -0
  204. data/lib/xml_schema_helper.rb +109 -0
  205. data/test/dummy/Rakefile +7 -0
  206. data/test/dummy/app/assets/javascripts/application.js +13 -0
  207. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  208. data/test/dummy/app/controllers/application_controller.rb +3 -0
  209. data/test/dummy/app/controllers/umlaut_controller.rb +112 -0
  210. data/test/dummy/app/helpers/application_helper.rb +2 -0
  211. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  212. data/test/dummy/config/application.rb +45 -0
  213. data/test/dummy/config/boot.rb +10 -0
  214. data/test/dummy/config/database-jhu.yml +44 -0
  215. data/test/dummy/config/database.yml +25 -0
  216. data/test/dummy/config/environment.rb +5 -0
  217. data/test/dummy/config/environments/development.rb +34 -0
  218. data/test/dummy/config/environments/production.rb +60 -0
  219. data/test/dummy/config/environments/test.rb +39 -0
  220. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  221. data/test/dummy/config/initializers/inflections.rb +10 -0
  222. data/test/dummy/config/initializers/mime_types.rb +5 -0
  223. data/test/dummy/config/initializers/secret_token.rb +7 -0
  224. data/test/dummy/config/initializers/session_store.rb +8 -0
  225. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  226. data/test/dummy/config/locales/en.yml +5 -0
  227. data/test/dummy/config/routes.rb +61 -0
  228. data/test/dummy/config/umlaut_services.yml +237 -0
  229. data/test/dummy/config.ru +4 -0
  230. data/test/dummy/db/migrate/20111228211210_umlaut_init.rb +113 -0
  231. data/test/dummy/db/schema.rb +124 -0
  232. data/test/dummy/log/development.log +12981 -0
  233. data/test/dummy/log/production.log +0 -0
  234. data/test/dummy/public/404.html +26 -0
  235. data/test/dummy/public/422.html +26 -0
  236. data/test/dummy/public/500.html +26 -0
  237. data/test/dummy/public/favicon.ico +0 -0
  238. data/test/dummy/script/rails +6 -0
  239. data/test/dummy/tmp/cache/assets/C5F/340/sprockets%2F99692920160b7a279b86a80415b79db7 +0 -0
  240. data/test/dummy/tmp/cache/assets/C70/4D0/sprockets%2F034ad2036e623081bd352800786dfe80 +0 -0
  241. data/test/dummy/tmp/cache/assets/C73/920/sprockets%2Fd371318f22900492fd180f17c5e2a504 +9268 -0
  242. data/test/dummy/tmp/cache/assets/C80/980/sprockets%2Fc94807409c1523d43e18d25f35d93c41 +0 -0
  243. data/test/dummy/tmp/cache/assets/C8F/780/sprockets%2Fe47e28558116fb5f8038754e60d1961d +11769 -0
  244. data/test/dummy/tmp/cache/assets/CAA/EB0/sprockets%2F1d179210e8b76f1ea63c802688a015e4 +9271 -0
  245. data/test/dummy/tmp/cache/assets/CBB/9C0/sprockets%2F706f28923fb754cad04b9107c89986a1 +0 -0
  246. data/test/dummy/tmp/cache/assets/CBF/B60/sprockets%2F08ca89671549936265dcb673bf02e36f +0 -0
  247. data/test/dummy/tmp/cache/assets/CC9/9F0/sprockets%2F306166316e2cafd13c15e62b51a2339d +0 -0
  248. data/test/dummy/tmp/cache/assets/CF6/F20/sprockets%2F5b2ffa1103079dfd555197838f87a99f +0 -0
  249. data/test/dummy/tmp/cache/assets/CF7/2B0/sprockets%2F25a7c73655bd3598173b39d9f98bcd46 +862 -0
  250. data/test/dummy/tmp/cache/assets/CFE/080/sprockets%2F37fe9f4255baddbd549a659914929398 +0 -0
  251. data/test/dummy/tmp/cache/assets/D22/060/sprockets%2F9aec77b768e91a802d284271c58e2f7e +21357 -0
  252. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  253. data/test/dummy/tmp/cache/assets/D33/6D0/sprockets%2F500129c57f1146e556ec3aacd6cd38c1 +0 -0
  254. data/test/dummy/tmp/cache/assets/D33/FD0/sprockets%2F2ba0b4e6334a77b923e5f770381bb2bf +0 -0
  255. data/test/dummy/tmp/cache/assets/D42/C20/sprockets%2Fbcf14e437b1582bf93b77670acf8e090 +21353 -0
  256. data/test/dummy/tmp/cache/assets/D50/A30/sprockets%2F7d8b294ac433db5d056538f8cf7c66b9 +0 -0
  257. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +872 -0
  258. data/test/dummy/tmp/cache/assets/D65/590/sprockets%2Fc1bb92fc3406a126b7dd302edc96d629 +0 -0
  259. data/test/dummy/tmp/cache/assets/D71/6B0/sprockets%2Fde558b71b494cf09b1bf055c8dff0353 +0 -0
  260. data/test/dummy/tmp/cache/assets/D72/610/sprockets%2Fa8c708eeb30ef93de34d755d4f45d023 +859 -0
  261. data/test/dummy/tmp/cache/assets/D76/AD0/sprockets%2Fe2158cde93188cf5ab6457bc6d6602ec +0 -0
  262. data/test/dummy/tmp/cache/assets/D7A/E40/sprockets%2F9622ffcc499a57627cd1bb18fe31b8e4 +11772 -0
  263. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  264. data/test/dummy/tmp/cache/assets/D9B/770/sprockets%2F8aacf02eb7dbb0949704b28f27b87e0b +0 -0
  265. data/test/dummy/tmp/cache/assets/DA6/A80/sprockets%2F92e26d8e58d5bcc8b8f6c25d1b05b9c1 +0 -0
  266. data/test/dummy/tmp/cache/assets/DE8/790/sprockets%2Fd1333bde2b9aafcc712d11dd09ab35d8 +0 -0
  267. data/test/dummy/tmp/cache/assets/DF7/F30/sprockets%2F7bc16c4109b17fabe29f8ddbbf732d1c +374 -0
  268. data/test/dummy/tmp/cache/assets/E03/570/sprockets%2F493bdc0ac14cd4f57fdfe4253f992bde +0 -0
  269. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  270. data/test/dummy/tmp/cache/assets/E0B/4B0/sprockets%2F7988df51a61c81ce6ede4a2d4c8cce4f +377 -0
  271. data/test/dummy/tmp/cache/assets/E5F/960/sprockets%2Fdc007b6cad5c7ef08e33ec28cfff0ef6 +0 -0
  272. data/test/fixtures/dispatched_services.yml +5 -0
  273. data/test/fixtures/permalinks.yml +5 -0
  274. data/test/fixtures/referent_values.yml +1734 -0
  275. data/test/fixtures/referents.yml +156 -0
  276. data/test/fixtures/requests.yml +284 -0
  277. data/test/fixtures/service_responses.yml +5 -0
  278. data/test/fixtures/sfx_urls.yml +4 -0
  279. data/test/performance/browsing_test.rb +9 -0
  280. data/test/test_helper.rb +10 -0
  281. data/test/umlaut_test.rb +7 -0
  282. data/test/unit/aleph_patron_test.rb +39 -0
  283. data/test/unit/aleph_record_benchmarks.rb +28 -0
  284. data/test/unit/aleph_record_test.rb +30 -0
  285. data/test/unit/aws_product_sign_test.rb +93 -0
  286. data/test/unit/collection_test.rb +76 -0
  287. data/test/unit/google_book_search_test.rb +101 -0
  288. data/test/unit/primo_searcher_test.rb +403 -0
  289. data/test/unit/primo_service_test.rb +939 -0
  290. data/test/unit/primo_ws_test.rb +131 -0
  291. data/test/unit/service_response_test.rb +9 -0
  292. data/test/unit/service_test.rb +33 -0
  293. metadata +580 -0
data/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Umlaut is copyright (c) 2006-2007 Ross Singer <rossfsinger@gmail.com>, Jonathan Rochkind <jonathan@dnil.net>, Georgia Tech University, and Johns Hopkins University.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # Umlaut
2
+
3
+ This is Umlaut 3.0.0 _alpha_ software. Umlaut 3.0 is not yet in final release.
4
+ (For Umlaut 2.0, see http://wiki.code4lib.org/index.php/Umlaut . However, if
5
+ you are just getting started checking out Umlaut, you probably should just
6
+ start here with 3.0 even though it's alpha).
7
+
8
+ Umlaut is software for libraries (the kind with books).
9
+
10
+ It could be described as a front-end layer on top of an existing OpenURL
11
+ knowledge base. But it's actually quite a bit more than that.
12
+
13
+ It could also be described as: a just-in-time aggregator of "last mile"
14
+ specific-citation services, taking input as OpenURL, and providing both an
15
+ HTML UI and an api suite for embedding Umlaut services in other products.
16
+
17
+ Umlaut is distributed as a ruby Rails engine gem. It's a very heavyweight engine,
18
+ the point of distro'ing as a gem is to make it easy to keep local
19
+ config/customization/enhancement seperate from distro, not so much to let you
20
+ 'mix in' Umlaut to an already existing complex app.
21
+
22
+
23
+ ## Installation
24
+
25
+ For installation instructions suitable for the neophyte, see
26
+ https://github.com/team-umlaut/umlaut/wiki/Installation.
27
+
28
+ The Rails expert super concise summary is:
29
+
30
+ * Rails 3.1+
31
+
32
+ * gem 'umlaut'
33
+
34
+ * `bundle install`
35
+
36
+ * `$ rails generate umlaut:install`
37
+
38
+ * mysql database strongly encouraged, sqlite3 probably won't work.
39
+
40
+ * configuration in `./config/umlaut_services.yml` and `./app/controllers/umlaut_controller.rb`
41
+
42
+ ## Source
43
+
44
+ https://github.com/team-umlaut/umlaut/
45
+
46
+ ## Listserv
47
+
48
+ You can join the umlaut listserv at:
49
+ http://rubyforge.org/mail/?group_id=4382
data/Rakefile ADDED
@@ -0,0 +1,37 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'Umlaut'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+
24
+
25
+ Bundler::GemHelper.install_tasks
26
+
27
+ require 'rake/testtask'
28
+
29
+ Rake::TestTask.new(:test) do |t|
30
+ t.libs << 'lib'
31
+ t.libs << 'test'
32
+ t.pattern = 'test/**/*_test.rb'
33
+ t.verbose = false
34
+ end
35
+
36
+
37
+ task :default => :test
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,1495 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3
+
4
+ <!-- Document HEAD -->
5
+ <head>
6
+
7
+ <title>famfamfam.com: Silk Icons</title>
8
+
9
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10
+
11
+ <meta name="mssmarttagspreventparsing" content="true" />
12
+ <meta name="robots" content="all" />
13
+ <meta http-equiv="imagetoolbar" content="no" />
14
+
15
+ <meta name="author" content="Mark James" />
16
+ <meta name="copyright" content="Mark James" />
17
+ <meta name="revisit-after" content="7 days" />
18
+
19
+ <style type="text/css">
20
+ <!--
21
+ body {
22
+ font-family: Verdana, Arial, Helvetica, sans-serif;
23
+ font-size: 85%;
24
+ }
25
+
26
+ h1,h2,h3 {
27
+ padding: 10px;
28
+ background-color: #F0F0F0;
29
+ border-bottom: 1px solid #DDD;
30
+ }
31
+
32
+ table td {
33
+ padding: 5px;
34
+ }
35
+
36
+ td em {
37
+ display: none;
38
+ }
39
+ -->
40
+ </style>
41
+ </head>
42
+
43
+ <!-- Document BODY -->
44
+ <body>
45
+
46
+ <div id="container-outer">
47
+ <div id="container-inner">
48
+ <div id="content-inner">
49
+
50
+ <h2>Silk Icons</h2>
51
+ <p><a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a></p>
52
+ <p>
53
+ &#8220;Silk&#8221; is a smooth icon set, containing 1000 16-by-16 pixel icons in
54
+ strokably-soft PNG format. Containing a large variety of icons, you're sure to find something
55
+ that tickles your fancy. And all for a low low price of $0.00. You can't say fairer than that.
56
+
57
+ <br />
58
+ <br/>
59
+
60
+ <!--
61
+ <a class="download-link" href="famfamfam_mini_icons.zip">Download</a><br />
62
+ -->
63
+
64
+ Current version: <strong>1.3</strong></p>
65
+
66
+ <h3>License</h3>
67
+ <p>
68
+ <!-- Creative Commons License -->
69
+ I also love to hear of my work being used, feel encouraged to send an email
70
+ with a link or screenshot of the icons in their new home to
71
+ mjames&nbsp;<span class="email">at</span>&nbsp;gmail&nbsp;<span class="email">dot</span>&nbsp;com.
72
+ This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a>.
73
+ This means you may use it for any purpose, and make any changes you like.
74
+ All I ask is that you include a link back to <a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a> in your credits (contact me to discuss licencing further).
75
+ <!-- /Creative Commons License -->
76
+
77
+
78
+ <!--
79
+
80
+ <rdf:RDF xmlns="http://web.resource.org/cc/"
81
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
82
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
83
+ <Work rdf:about="">
84
+ <dc:title>Silk icons</dc:title>
85
+ <dc:date>2005</dc:date>
86
+ <dc:description>'Silk' icon set.</dc:description>
87
+ <dc:creator><Agent>
88
+ <dc:title>Mark James</dc:title>
89
+ </Agent></dc:creator>
90
+ <dc:rights><Agent>
91
+ <dc:title>Mark James</dc:title>
92
+ </Agent></dc:rights>
93
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
94
+ <dc:source rdf:resource="http://www.famfamfam.com/lab/icons/silk/"/>
95
+ <license rdf:resource="http://creativecommons.org/licenses/by/2.5/" />
96
+ </Work>
97
+
98
+ <License rdf:about="http://creativecommons.org/licenses/by/2.5/">
99
+ <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
100
+ <permits rdf:resource="http://web.resource.org/cc/Distribution" />
101
+ <requires rdf:resource="http://web.resource.org/cc/Notice" />
102
+ <requires rdf:resource="http://web.resource.org/cc/Attribution" />
103
+ <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
104
+ </License>
105
+
106
+ </rdf:RDF>
107
+
108
+ -->
109
+ </p>
110
+
111
+ <h3>Sightings</h3>
112
+
113
+ <p>
114
+ Do you use this set? <a href="http://www.famfamfam.com/about/?contact=Silk%20icons%20in%20the%20wild">Contact me!</a>.
115
+ </p>
116
+
117
+
118
+ <h3>Icons</h3>
119
+
120
+
121
+ <p><table>
122
+ <tr>
123
+ <td><img src="icons/accept.png" title="accept.png" alt="accept "/><em>accept.png</em></td>
124
+ <td><img src="icons/add.png" title="add.png" alt="add "/><em>add.png</em></td>
125
+
126
+ <td><img src="icons/anchor.png" title="anchor.png" alt="anchor "/><em>anchor.png</em></td>
127
+ <td><img src="icons/application.png" title="application.png" alt="application "/><em>application.png</em></td>
128
+ <td><img src="icons/application_add.png" title="application_add.png" alt="application add "/><em>application_add.png</em></td>
129
+ <td><img src="icons/application_cascade.png" title="application_cascade.png" alt="application cascade "/><em>application_cascade.png</em></td>
130
+ <td><img src="icons/application_delete.png" title="application_delete.png" alt="application delete "/><em>application_delete.png</em></td>
131
+ <td><img src="icons/application_double.png" title="application_double.png" alt="application double "/><em>application_double.png</em></td>
132
+
133
+ <td><img src="icons/application_edit.png" title="application_edit.png" alt="application edit "/><em>application_edit.png</em></td>
134
+ <td><img src="icons/application_error.png" title="application_error.png" alt="application error "/><em>application_error.png</em></td>
135
+ <td><img src="icons/application_form.png" title="application_form.png" alt="application form "/><em>application_form.png</em></td>
136
+ <td><img src="icons/application_form_add.png" title="application_form_add.png" alt="application form add "/><em>application_form_add.png</em></td>
137
+ </tr>
138
+ <tr>
139
+ <td><img src="icons/application_form_delete.png" title="application_form_delete.png" alt="application form delete "/><em>application_form_delete.png</em></td>
140
+
141
+ <td><img src="icons/application_form_edit.png" title="application_form_edit.png" alt="application form edit "/><em>application_form_edit.png</em></td>
142
+ <td><img src="icons/application_form_magnify.png" title="application_form_magnify.png" alt="application form magnify "/><em>application_form_magnify.png</em></td>
143
+ <td><img src="icons/application_get.png" title="application_get.png" alt="application get "/><em>application_get.png</em></td>
144
+ <td><img src="icons/application_go.png" title="application_go.png" alt="application go "/><em>application_go.png</em></td>
145
+ <td><img src="icons/application_home.png" title="application_home.png" alt="application home "/><em>application_home.png</em></td>
146
+ <td><img src="icons/application_key.png" title="application_key.png" alt="application key "/><em>application_key.png</em></td>
147
+
148
+ <td><img src="icons/application_lightning.png" title="application_lightning.png" alt="application lightning "/><em>application_lightning.png</em></td>
149
+ <td><img src="icons/application_link.png" title="application_link.png" alt="application link "/><em>application_link.png</em></td>
150
+ <td><img src="icons/application_osx.png" title="application_osx.png" alt="application osx "/><em>application_osx.png</em></td>
151
+ <td><img src="icons/application_osx_terminal.png" title="application_osx_terminal.png" alt="application osx terminal "/><em>application_osx_terminal.png</em></td>
152
+ <td><img src="icons/application_put.png" title="application_put.png" alt="application put "/><em>application_put.png</em></td>
153
+ </tr>
154
+
155
+ <tr>
156
+ <td><img src="icons/application_side_boxes.png" title="application_side_boxes.png" alt="application side boxes "/><em>application_side_boxes.png</em></td>
157
+ <td><img src="icons/application_side_contract.png" title="application_side_contract.png" alt="application side contract "/><em>application_side_contract.png</em></td>
158
+ <td><img src="icons/application_side_expand.png" title="application_side_expand.png" alt="application side expand "/><em>application_side_expand.png</em></td>
159
+ <td><img src="icons/application_side_list.png" title="application_side_list.png" alt="application side list "/><em>application_side_list.png</em></td>
160
+ <td><img src="icons/application_side_tree.png" title="application_side_tree.png" alt="application side tree "/><em>application_side_tree.png</em></td>
161
+
162
+ <td><img src="icons/application_split.png" title="application_split.png" alt="application split "/><em>application_split.png</em></td>
163
+ <td><img src="icons/application_tile_horizontal.png" title="application_tile_horizontal.png" alt="application tile horizontal "/><em>application_tile_horizontal.png</em></td>
164
+ <td><img src="icons/application_tile_vertical.png" title="application_tile_vertical.png" alt="application tile vertical "/><em>application_tile_vertical.png</em></td>
165
+ <td><img src="icons/application_view_columns.png" title="application_view_columns.png" alt="application view columns "/><em>application_view_columns.png</em></td>
166
+ <td><img src="icons/application_view_detail.png" title="application_view_detail.png" alt="application view detail "/><em>application_view_detail.png</em></td>
167
+ <td><img src="icons/application_view_gallery.png" title="application_view_gallery.png" alt="application view gallery "/><em>application_view_gallery.png</em></td>
168
+
169
+ <td><img src="icons/application_view_icons.png" title="application_view_icons.png" alt="application view icons "/><em>application_view_icons.png</em></td>
170
+ </tr>
171
+ <tr>
172
+ <td><img src="icons/application_view_list.png" title="application_view_list.png" alt="application view list "/><em>application_view_list.png</em></td>
173
+ <td><img src="icons/application_view_tile.png" title="application_view_tile.png" alt="application view tile "/><em>application_view_tile.png</em></td>
174
+ <td><img src="icons/application_xp.png" title="application_xp.png" alt="application xp "/><em>application_xp.png</em></td>
175
+ <td><img src="icons/application_xp_terminal.png" title="application_xp_terminal.png" alt="application xp terminal "/><em>application_xp_terminal.png</em></td>
176
+
177
+ <td><img src="icons/arrow_branch.png" title="arrow_branch.png" alt="arrow branch "/><em>arrow_branch.png</em></td>
178
+ <td><img src="icons/arrow_divide.png" title="arrow_divide.png" alt="arrow divide "/><em>arrow_divide.png</em></td>
179
+ <td><img src="icons/arrow_down.png" title="arrow_down.png" alt="arrow down "/><em>arrow_down.png</em></td>
180
+ <td><img src="icons/arrow_in.png" title="arrow_in.png" alt="arrow in "/><em>arrow_in.png</em></td>
181
+ <td><img src="icons/arrow_inout.png" title="arrow_inout.png" alt="arrow inout "/><em>arrow_inout.png</em></td>
182
+ <td><img src="icons/arrow_join.png" title="arrow_join.png" alt="arrow join "/><em>arrow_join.png</em></td>
183
+
184
+ <td><img src="icons/arrow_left.png" title="arrow_left.png" alt="arrow left "/><em>arrow_left.png</em></td>
185
+ <td><img src="icons/arrow_merge.png" title="arrow_merge.png" alt="arrow merge "/><em>arrow_merge.png</em></td>
186
+ </tr>
187
+ <tr>
188
+ <td><img src="icons/arrow_out.png" title="arrow_out.png" alt="arrow out "/><em>arrow_out.png</em></td>
189
+ <td><img src="icons/arrow_redo.png" title="arrow_redo.png" alt="arrow redo "/><em>arrow_redo.png</em></td>
190
+ <td><img src="icons/arrow_refresh.png" title="arrow_refresh.png" alt="arrow refresh "/><em>arrow_refresh.png</em></td>
191
+
192
+ <td><img src="icons/arrow_refresh_small.png" title="arrow_refresh_small.png" alt="arrow refresh small "/><em>arrow_refresh_small.png</em></td>
193
+ <td><img src="icons/arrow_right.png" title="arrow_right.png" alt="arrow right "/><em>arrow_right.png</em></td>
194
+ <td><img src="icons/arrow_rotate_anticlockwise.png" title="arrow_rotate_anticlockwise.png" alt="arrow rotate anticlockwise "/><em>arrow_rotate_anticlockwise.png</em></td>
195
+ <td><img src="icons/arrow_rotate_clockwise.png" title="arrow_rotate_clockwise.png" alt="arrow rotate clockwise "/><em>arrow_rotate_clockwise.png</em></td>
196
+ <td><img src="icons/arrow_switch.png" title="arrow_switch.png" alt="arrow switch "/><em>arrow_switch.png</em></td>
197
+ <td><img src="icons/arrow_turn_left.png" title="arrow_turn_left.png" alt="arrow turn left "/><em>arrow_turn_left.png</em></td>
198
+
199
+ <td><img src="icons/arrow_turn_right.png" title="arrow_turn_right.png" alt="arrow turn right "/><em>arrow_turn_right.png</em></td>
200
+ <td><img src="icons/arrow_undo.png" title="arrow_undo.png" alt="arrow undo "/><em>arrow_undo.png</em></td>
201
+ <td><img src="icons/arrow_up.png" title="arrow_up.png" alt="arrow up "/><em>arrow_up.png</em></td>
202
+ </tr>
203
+ <tr>
204
+ <td><img src="icons/asterisk_orange.png" title="asterisk_orange.png" alt="asterisk orange "/><em>asterisk_orange.png</em></td>
205
+ <td><img src="icons/asterisk_yellow.png" title="asterisk_yellow.png" alt="asterisk yellow "/><em>asterisk_yellow.png</em></td>
206
+
207
+ <td><img src="icons/attach.png" title="attach.png" alt="attach "/><em>attach.png</em></td>
208
+ <td><img src="icons/award_star_add.png" title="award_star_add.png" alt="award star add "/><em>award_star_add.png</em></td>
209
+ <td><img src="icons/award_star_bronze_1.png" title="award_star_bronze_1.png" alt="award star bronze 1 "/><em>award_star_bronze_1.png</em></td>
210
+ <td><img src="icons/award_star_bronze_2.png" title="award_star_bronze_2.png" alt="award star bronze 2 "/><em>award_star_bronze_2.png</em></td>
211
+ <td><img src="icons/award_star_bronze_3.png" title="award_star_bronze_3.png" alt="award star bronze 3 "/><em>award_star_bronze_3.png</em></td>
212
+ <td><img src="icons/award_star_delete.png" title="award_star_delete.png" alt="award star delete "/><em>award_star_delete.png</em></td>
213
+
214
+ <td><img src="icons/award_star_gold_1.png" title="award_star_gold_1.png" alt="award star gold 1 "/><em>award_star_gold_1.png</em></td>
215
+ <td><img src="icons/award_star_gold_2.png" title="award_star_gold_2.png" alt="award star gold 2 "/><em>award_star_gold_2.png</em></td>
216
+ <td><img src="icons/award_star_gold_3.png" title="award_star_gold_3.png" alt="award star gold 3 "/><em>award_star_gold_3.png</em></td>
217
+ <td><img src="icons/award_star_silver_1.png" title="award_star_silver_1.png" alt="award star silver 1 "/><em>award_star_silver_1.png</em></td>
218
+ </tr>
219
+ <tr>
220
+ <td><img src="icons/award_star_silver_2.png" title="award_star_silver_2.png" alt="award star silver 2 "/><em>award_star_silver_2.png</em></td>
221
+
222
+ <td><img src="icons/award_star_silver_3.png" title="award_star_silver_3.png" alt="award star silver 3 "/><em>award_star_silver_3.png</em></td>
223
+ <td><img src="icons/basket.png" title="basket.png" alt="basket "/><em>basket.png</em></td>
224
+ <td><img src="icons/basket_add.png" title="basket_add.png" alt="basket add "/><em>basket_add.png</em></td>
225
+ <td><img src="icons/basket_delete.png" title="basket_delete.png" alt="basket delete "/><em>basket_delete.png</em></td>
226
+ <td><img src="icons/basket_edit.png" title="basket_edit.png" alt="basket edit "/><em>basket_edit.png</em></td>
227
+ <td><img src="icons/basket_error.png" title="basket_error.png" alt="basket error "/><em>basket_error.png</em></td>
228
+
229
+ <td><img src="icons/basket_go.png" title="basket_go.png" alt="basket go "/><em>basket_go.png</em></td>
230
+ <td><img src="icons/basket_put.png" title="basket_put.png" alt="basket put "/><em>basket_put.png</em></td>
231
+ <td><img src="icons/basket_remove.png" title="basket_remove.png" alt="basket remove "/><em>basket_remove.png</em></td>
232
+ <td><img src="icons/bell.png" title="bell.png" alt="bell "/><em>bell.png</em></td>
233
+ <td><img src="icons/bell_add.png" title="bell_add.png" alt="bell add "/><em>bell_add.png</em></td>
234
+ </tr>
235
+
236
+ <tr>
237
+ <td><img src="icons/bell_delete.png" title="bell_delete.png" alt="bell delete "/><em>bell_delete.png</em></td>
238
+ <td><img src="icons/bell_error.png" title="bell_error.png" alt="bell error "/><em>bell_error.png</em></td>
239
+ <td><img src="icons/bell_go.png" title="bell_go.png" alt="bell go "/><em>bell_go.png</em></td>
240
+ <td><img src="icons/bell_link.png" title="bell_link.png" alt="bell link "/><em>bell_link.png</em></td>
241
+ <td><img src="icons/bin.png" title="bin.png" alt="bin "/><em>bin.png</em></td>
242
+
243
+ <td><img src="icons/bin_closed.png" title="bin_closed.png" alt="bin closed "/><em>bin_closed.png</em></td>
244
+ <td><img src="icons/bin_empty.png" title="bin_empty.png" alt="bin empty "/><em>bin_empty.png</em></td>
245
+ <td><img src="icons/bomb.png" title="bomb.png" alt="bomb "/><em>bomb.png</em></td>
246
+ <td><img src="icons/book.png" title="book.png" alt="book "/><em>book.png</em></td>
247
+ <td><img src="icons/book_add.png" title="book_add.png" alt="book add "/><em>book_add.png</em></td>
248
+ <td><img src="icons/book_addresses.png" title="book_addresses.png" alt="book addresses "/><em>book_addresses.png</em></td>
249
+
250
+ <td><img src="icons/book_delete.png" title="book_delete.png" alt="book delete "/><em>book_delete.png</em></td>
251
+ </tr>
252
+ <tr>
253
+ <td><img src="icons/book_edit.png" title="book_edit.png" alt="book edit "/><em>book_edit.png</em></td>
254
+ <td><img src="icons/book_error.png" title="book_error.png" alt="book error "/><em>book_error.png</em></td>
255
+ <td><img src="icons/book_go.png" title="book_go.png" alt="book go "/><em>book_go.png</em></td>
256
+ <td><img src="icons/book_key.png" title="book_key.png" alt="book key "/><em>book_key.png</em></td>
257
+
258
+ <td><img src="icons/book_link.png" title="book_link.png" alt="book link "/><em>book_link.png</em></td>
259
+ <td><img src="icons/book_next.png" title="book_next.png" alt="book next "/><em>book_next.png</em></td>
260
+ <td><img src="icons/book_open.png" title="book_open.png" alt="book open "/><em>book_open.png</em></td>
261
+ <td><img src="icons/book_previous.png" title="book_previous.png" alt="book previous "/><em>book_previous.png</em></td>
262
+ <td><img src="icons/box.png" title="box.png" alt="box "/><em>box.png</em></td>
263
+ <td><img src="icons/brick.png" title="brick.png" alt="brick "/><em>brick.png</em></td>
264
+
265
+ <td><img src="icons/brick_add.png" title="brick_add.png" alt="brick add "/><em>brick_add.png</em></td>
266
+ <td><img src="icons/brick_delete.png" title="brick_delete.png" alt="brick delete "/><em>brick_delete.png</em></td>
267
+ </tr>
268
+ <tr>
269
+ <td><img src="icons/brick_edit.png" title="brick_edit.png" alt="brick edit "/><em>brick_edit.png</em></td>
270
+ <td><img src="icons/brick_error.png" title="brick_error.png" alt="brick error "/><em>brick_error.png</em></td>
271
+ <td><img src="icons/brick_go.png" title="brick_go.png" alt="brick go "/><em>brick_go.png</em></td>
272
+
273
+ <td><img src="icons/brick_link.png" title="brick_link.png" alt="brick link "/><em>brick_link.png</em></td>
274
+ <td><img src="icons/bricks.png" title="bricks.png" alt="bricks "/><em>bricks.png</em></td>
275
+ <td><img src="icons/briefcase.png" title="briefcase.png" alt="briefcase "/><em>briefcase.png</em></td>
276
+ <td><img src="icons/bug.png" title="bug.png" alt="bug "/><em>bug.png</em></td>
277
+ <td><img src="icons/bug_add.png" title="bug_add.png" alt="bug add "/><em>bug_add.png</em></td>
278
+ <td><img src="icons/bug_delete.png" title="bug_delete.png" alt="bug delete "/><em>bug_delete.png</em></td>
279
+
280
+ <td><img src="icons/bug_edit.png" title="bug_edit.png" alt="bug edit "/><em>bug_edit.png</em></td>
281
+ <td><img src="icons/bug_error.png" title="bug_error.png" alt="bug error "/><em>bug_error.png</em></td>
282
+ <td><img src="icons/bug_go.png" title="bug_go.png" alt="bug go "/><em>bug_go.png</em></td>
283
+ </tr>
284
+ <tr>
285
+ <td><img src="icons/bug_link.png" title="bug_link.png" alt="bug link "/><em>bug_link.png</em></td>
286
+ <td><img src="icons/building.png" title="building.png" alt="building "/><em>building.png</em></td>
287
+
288
+ <td><img src="icons/building_add.png" title="building_add.png" alt="building add "/><em>building_add.png</em></td>
289
+ <td><img src="icons/building_delete.png" title="building_delete.png" alt="building delete "/><em>building_delete.png</em></td>
290
+ <td><img src="icons/building_edit.png" title="building_edit.png" alt="building edit "/><em>building_edit.png</em></td>
291
+ <td><img src="icons/building_error.png" title="building_error.png" alt="building error "/><em>building_error.png</em></td>
292
+ <td><img src="icons/building_go.png" title="building_go.png" alt="building go "/><em>building_go.png</em></td>
293
+ <td><img src="icons/building_key.png" title="building_key.png" alt="building key "/><em>building_key.png</em></td>
294
+
295
+ <td><img src="icons/building_link.png" title="building_link.png" alt="building link "/><em>building_link.png</em></td>
296
+ <td><img src="icons/bullet_add.png" title="bullet_add.png" alt="bullet add "/><em>bullet_add.png</em></td>
297
+ <td><img src="icons/bullet_arrow_bottom.png" title="bullet_arrow_bottom.png" alt="bullet arrow bottom "/><em>bullet_arrow_bottom.png</em></td>
298
+ <td><img src="icons/bullet_arrow_down.png" title="bullet_arrow_down.png" alt="bullet arrow down "/><em>bullet_arrow_down.png</em></td>
299
+ </tr>
300
+ <tr>
301
+ <td><img src="icons/bullet_arrow_top.png" title="bullet_arrow_top.png" alt="bullet arrow top "/><em>bullet_arrow_top.png</em></td>
302
+
303
+ <td><img src="icons/bullet_arrow_up.png" title="bullet_arrow_up.png" alt="bullet arrow up "/><em>bullet_arrow_up.png</em></td>
304
+ <td><img src="icons/bullet_black.png" title="bullet_black.png" alt="bullet black "/><em>bullet_black.png</em></td>
305
+ <td><img src="icons/bullet_blue.png" title="bullet_blue.png" alt="bullet blue "/><em>bullet_blue.png</em></td>
306
+ <td><img src="icons/bullet_delete.png" title="bullet_delete.png" alt="bullet delete "/><em>bullet_delete.png</em></td>
307
+ <td><img src="icons/bullet_disk.png" title="bullet_disk.png" alt="bullet disk "/><em>bullet_disk.png</em></td>
308
+ <td><img src="icons/bullet_error.png" title="bullet_error.png" alt="bullet error "/><em>bullet_error.png</em></td>
309
+
310
+ <td><img src="icons/bullet_feed.png" title="bullet_feed.png" alt="bullet feed "/><em>bullet_feed.png</em></td>
311
+ <td><img src="icons/bullet_go.png" title="bullet_go.png" alt="bullet go "/><em>bullet_go.png</em></td>
312
+ <td><img src="icons/bullet_green.png" title="bullet_green.png" alt="bullet green "/><em>bullet_green.png</em></td>
313
+ <td><img src="icons/bullet_key.png" title="bullet_key.png" alt="bullet key "/><em>bullet_key.png</em></td>
314
+ <td><img src="icons/bullet_orange.png" title="bullet_orange.png" alt="bullet orange "/><em>bullet_orange.png</em></td>
315
+ </tr>
316
+
317
+ <tr>
318
+ <td><img src="icons/bullet_picture.png" title="bullet_picture.png" alt="bullet picture "/><em>bullet_picture.png</em></td>
319
+ <td><img src="icons/bullet_pink.png" title="bullet_pink.png" alt="bullet pink "/><em>bullet_pink.png</em></td>
320
+ <td><img src="icons/bullet_purple.png" title="bullet_purple.png" alt="bullet purple "/><em>bullet_purple.png</em></td>
321
+ <td><img src="icons/bullet_red.png" title="bullet_red.png" alt="bullet red "/><em>bullet_red.png</em></td>
322
+ <td><img src="icons/bullet_star.png" title="bullet_star.png" alt="bullet star "/><em>bullet_star.png</em></td>
323
+
324
+ <td><img src="icons/bullet_toggle_minus.png" title="bullet_toggle_minus.png" alt="bullet toggle minus "/><em>bullet_toggle_minus.png</em></td>
325
+ <td><img src="icons/bullet_toggle_plus.png" title="bullet_toggle_plus.png" alt="bullet toggle plus "/><em>bullet_toggle_plus.png</em></td>
326
+ <td><img src="icons/bullet_white.png" title="bullet_white.png" alt="bullet white "/><em>bullet_white.png</em></td>
327
+ <td><img src="icons/bullet_wrench.png" title="bullet_wrench.png" alt="bullet wrench "/><em>bullet_wrench.png</em></td>
328
+ <td><img src="icons/bullet_yellow.png" title="bullet_yellow.png" alt="bullet yellow "/><em>bullet_yellow.png</em></td>
329
+ <td><img src="icons/cake.png" title="cake.png" alt="cake "/><em>cake.png</em></td>
330
+
331
+ <td><img src="icons/calculator.png" title="calculator.png" alt="calculator "/><em>calculator.png</em></td>
332
+ </tr>
333
+ <tr>
334
+ <td><img src="icons/calculator_add.png" title="calculator_add.png" alt="calculator add "/><em>calculator_add.png</em></td>
335
+ <td><img src="icons/calculator_delete.png" title="calculator_delete.png" alt="calculator delete "/><em>calculator_delete.png</em></td>
336
+ <td><img src="icons/calculator_edit.png" title="calculator_edit.png" alt="calculator edit "/><em>calculator_edit.png</em></td>
337
+ <td><img src="icons/calculator_error.png" title="calculator_error.png" alt="calculator error "/><em>calculator_error.png</em></td>
338
+
339
+ <td><img src="icons/calculator_link.png" title="calculator_link.png" alt="calculator link "/><em>calculator_link.png</em></td>
340
+ <td><img src="icons/calendar.png" title="calendar.png" alt="calendar "/><em>calendar.png</em></td>
341
+ <td><img src="icons/calendar_add.png" title="calendar_add.png" alt="calendar add "/><em>calendar_add.png</em></td>
342
+ <td><img src="icons/calendar_delete.png" title="calendar_delete.png" alt="calendar delete "/><em>calendar_delete.png</em></td>
343
+ <td><img src="icons/calendar_edit.png" title="calendar_edit.png" alt="calendar edit "/><em>calendar_edit.png</em></td>
344
+ <td><img src="icons/calendar_link.png" title="calendar_link.png" alt="calendar link "/><em>calendar_link.png</em></td>
345
+
346
+ <td><img src="icons/calendar_view_day.png" title="calendar_view_day.png" alt="calendar view day "/><em>calendar_view_day.png</em></td>
347
+ <td><img src="icons/calendar_view_month.png" title="calendar_view_month.png" alt="calendar view month "/><em>calendar_view_month.png</em></td>
348
+ </tr>
349
+ <tr>
350
+ <td><img src="icons/calendar_view_week.png" title="calendar_view_week.png" alt="calendar view week "/><em>calendar_view_week.png</em></td>
351
+ <td><img src="icons/camera.png" title="camera.png" alt="camera "/><em>camera.png</em></td>
352
+ <td><img src="icons/camera_add.png" title="camera_add.png" alt="camera add "/><em>camera_add.png</em></td>
353
+
354
+ <td><img src="icons/camera_delete.png" title="camera_delete.png" alt="camera delete "/><em>camera_delete.png</em></td>
355
+ <td><img src="icons/camera_edit.png" title="camera_edit.png" alt="camera edit "/><em>camera_edit.png</em></td>
356
+ <td><img src="icons/camera_error.png" title="camera_error.png" alt="camera error "/><em>camera_error.png</em></td>
357
+ <td><img src="icons/camera_go.png" title="camera_go.png" alt="camera go "/><em>camera_go.png</em></td>
358
+ <td><img src="icons/camera_link.png" title="camera_link.png" alt="camera link "/><em>camera_link.png</em></td>
359
+ <td><img src="icons/camera_small.png" title="camera_small.png" alt="camera small "/><em>camera_small.png</em></td>
360
+
361
+ <td><img src="icons/cancel.png" title="cancel.png" alt="cancel "/><em>cancel.png</em></td>
362
+ <td><img src="icons/car.png" title="car.png" alt="car "/><em>car.png</em></td>
363
+ <td><img src="icons/car_add.png" title="car_add.png" alt="car add "/><em>car_add.png</em></td>
364
+ </tr>
365
+ <tr>
366
+ <td><img src="icons/car_delete.png" title="car_delete.png" alt="car delete "/><em>car_delete.png</em></td>
367
+ <td><img src="icons/cart.png" title="cart.png" alt="cart "/><em>cart.png</em></td>
368
+
369
+ <td><img src="icons/cart_add.png" title="cart_add.png" alt="cart add "/><em>cart_add.png</em></td>
370
+ <td><img src="icons/cart_delete.png" title="cart_delete.png" alt="cart delete "/><em>cart_delete.png</em></td>
371
+ <td><img src="icons/cart_edit.png" title="cart_edit.png" alt="cart edit "/><em>cart_edit.png</em></td>
372
+ <td><img src="icons/cart_error.png" title="cart_error.png" alt="cart error "/><em>cart_error.png</em></td>
373
+ <td><img src="icons/cart_go.png" title="cart_go.png" alt="cart go "/><em>cart_go.png</em></td>
374
+ <td><img src="icons/cart_put.png" title="cart_put.png" alt="cart put "/><em>cart_put.png</em></td>
375
+
376
+ <td><img src="icons/cart_remove.png" title="cart_remove.png" alt="cart remove "/><em>cart_remove.png</em></td>
377
+ <td><img src="icons/cd.png" title="cd.png" alt="cd "/><em>cd.png</em></td>
378
+ <td><img src="icons/cd_add.png" title="cd_add.png" alt="cd add "/><em>cd_add.png</em></td>
379
+ <td><img src="icons/cd_burn.png" title="cd_burn.png" alt="cd burn "/><em>cd_burn.png</em></td>
380
+ </tr>
381
+ <tr>
382
+ <td><img src="icons/cd_delete.png" title="cd_delete.png" alt="cd delete "/><em>cd_delete.png</em></td>
383
+
384
+ <td><img src="icons/cd_edit.png" title="cd_edit.png" alt="cd edit "/><em>cd_edit.png</em></td>
385
+ <td><img src="icons/cd_eject.png" title="cd_eject.png" alt="cd eject "/><em>cd_eject.png</em></td>
386
+ <td><img src="icons/cd_go.png" title="cd_go.png" alt="cd go "/><em>cd_go.png</em></td>
387
+ <td><img src="icons/chart_bar.png" title="chart_bar.png" alt="chart bar "/><em>chart_bar.png</em></td>
388
+ <td><img src="icons/chart_bar_add.png" title="chart_bar_add.png" alt="chart bar add "/><em>chart_bar_add.png</em></td>
389
+ <td><img src="icons/chart_bar_delete.png" title="chart_bar_delete.png" alt="chart bar delete "/><em>chart_bar_delete.png</em></td>
390
+
391
+ <td><img src="icons/chart_bar_edit.png" title="chart_bar_edit.png" alt="chart bar edit "/><em>chart_bar_edit.png</em></td>
392
+ <td><img src="icons/chart_bar_error.png" title="chart_bar_error.png" alt="chart bar error "/><em>chart_bar_error.png</em></td>
393
+ <td><img src="icons/chart_bar_link.png" title="chart_bar_link.png" alt="chart bar link "/><em>chart_bar_link.png</em></td>
394
+ <td><img src="icons/chart_curve.png" title="chart_curve.png" alt="chart curve "/><em>chart_curve.png</em></td>
395
+ <td><img src="icons/chart_curve_add.png" title="chart_curve_add.png" alt="chart curve add "/><em>chart_curve_add.png</em></td>
396
+ </tr>
397
+
398
+ <tr>
399
+ <td><img src="icons/chart_curve_delete.png" title="chart_curve_delete.png" alt="chart curve delete "/><em>chart_curve_delete.png</em></td>
400
+ <td><img src="icons/chart_curve_edit.png" title="chart_curve_edit.png" alt="chart curve edit "/><em>chart_curve_edit.png</em></td>
401
+ <td><img src="icons/chart_curve_error.png" title="chart_curve_error.png" alt="chart curve error "/><em>chart_curve_error.png</em></td>
402
+ <td><img src="icons/chart_curve_go.png" title="chart_curve_go.png" alt="chart curve go "/><em>chart_curve_go.png</em></td>
403
+ <td><img src="icons/chart_curve_link.png" title="chart_curve_link.png" alt="chart curve link "/><em>chart_curve_link.png</em></td>
404
+
405
+ <td><img src="icons/chart_line.png" title="chart_line.png" alt="chart line "/><em>chart_line.png</em></td>
406
+ <td><img src="icons/chart_line_add.png" title="chart_line_add.png" alt="chart line add "/><em>chart_line_add.png</em></td>
407
+ <td><img src="icons/chart_line_delete.png" title="chart_line_delete.png" alt="chart line delete "/><em>chart_line_delete.png</em></td>
408
+ <td><img src="icons/chart_line_edit.png" title="chart_line_edit.png" alt="chart line edit "/><em>chart_line_edit.png</em></td>
409
+ <td><img src="icons/chart_line_error.png" title="chart_line_error.png" alt="chart line error "/><em>chart_line_error.png</em></td>
410
+ <td><img src="icons/chart_line_link.png" title="chart_line_link.png" alt="chart line link "/><em>chart_line_link.png</em></td>
411
+
412
+ <td><img src="icons/chart_organisation.png" title="chart_organisation.png" alt="chart organisation "/><em>chart_organisation.png</em></td>
413
+ </tr>
414
+ <tr>
415
+ <td><img src="icons/chart_organisation_add.png" title="chart_organisation_add.png" alt="chart organisation add "/><em>chart_organisation_add.png</em></td>
416
+ <td><img src="icons/chart_organisation_delete.png" title="chart_organisation_delete.png" alt="chart organisation delete "/><em>chart_organisation_delete.png</em></td>
417
+ <td><img src="icons/chart_pie.png" title="chart_pie.png" alt="chart pie "/><em>chart_pie.png</em></td>
418
+ <td><img src="icons/chart_pie_add.png" title="chart_pie_add.png" alt="chart pie add "/><em>chart_pie_add.png</em></td>
419
+
420
+ <td><img src="icons/chart_pie_delete.png" title="chart_pie_delete.png" alt="chart pie delete "/><em>chart_pie_delete.png</em></td>
421
+ <td><img src="icons/chart_pie_edit.png" title="chart_pie_edit.png" alt="chart pie edit "/><em>chart_pie_edit.png</em></td>
422
+ <td><img src="icons/chart_pie_error.png" title="chart_pie_error.png" alt="chart pie error "/><em>chart_pie_error.png</em></td>
423
+ <td><img src="icons/chart_pie_link.png" title="chart_pie_link.png" alt="chart pie link "/><em>chart_pie_link.png</em></td>
424
+ <td><img src="icons/clock.png" title="clock.png" alt="clock "/><em>clock.png</em></td>
425
+ <td><img src="icons/clock_add.png" title="clock_add.png" alt="clock add "/><em>clock_add.png</em></td>
426
+
427
+ <td><img src="icons/clock_delete.png" title="clock_delete.png" alt="clock delete "/><em>clock_delete.png</em></td>
428
+ <td><img src="icons/clock_edit.png" title="clock_edit.png" alt="clock edit "/><em>clock_edit.png</em></td>
429
+ </tr>
430
+ <tr>
431
+ <td><img src="icons/clock_error.png" title="clock_error.png" alt="clock error "/><em>clock_error.png</em></td>
432
+ <td><img src="icons/clock_go.png" title="clock_go.png" alt="clock go "/><em>clock_go.png</em></td>
433
+ <td><img src="icons/clock_link.png" title="clock_link.png" alt="clock link "/><em>clock_link.png</em></td>
434
+
435
+ <td><img src="icons/clock_pause.png" title="clock_pause.png" alt="clock pause "/><em>clock_pause.png</em></td>
436
+ <td><img src="icons/clock_play.png" title="clock_play.png" alt="clock play "/><em>clock_play.png</em></td>
437
+ <td><img src="icons/clock_red.png" title="clock_red.png" alt="clock red "/><em>clock_red.png</em></td>
438
+ <td><img src="icons/clock_stop.png" title="clock_stop.png" alt="clock stop "/><em>clock_stop.png</em></td>
439
+ <td><img src="icons/cog.png" title="cog.png" alt="cog "/><em>cog.png</em></td>
440
+ <td><img src="icons/cog_add.png" title="cog_add.png" alt="cog add "/><em>cog_add.png</em></td>
441
+
442
+ <td><img src="icons/cog_delete.png" title="cog_delete.png" alt="cog delete "/><em>cog_delete.png</em></td>
443
+ <td><img src="icons/cog_edit.png" title="cog_edit.png" alt="cog edit "/><em>cog_edit.png</em></td>
444
+ <td><img src="icons/cog_error.png" title="cog_error.png" alt="cog error "/><em>cog_error.png</em></td>
445
+ </tr>
446
+ <tr>
447
+ <td><img src="icons/cog_go.png" title="cog_go.png" alt="cog go "/><em>cog_go.png</em></td>
448
+ <td><img src="icons/coins.png" title="coins.png" alt="coins "/><em>coins.png</em></td>
449
+
450
+ <td><img src="icons/coins_add.png" title="coins_add.png" alt="coins add "/><em>coins_add.png</em></td>
451
+ <td><img src="icons/coins_delete.png" title="coins_delete.png" alt="coins delete "/><em>coins_delete.png</em></td>
452
+ <td><img src="icons/color_swatch.png" title="color_swatch.png" alt="color swatch "/><em>color_swatch.png</em></td>
453
+ <td><img src="icons/color_wheel.png" title="color_wheel.png" alt="color wheel "/><em>color_wheel.png</em></td>
454
+ <td><img src="icons/comment.png" title="comment.png" alt="comment "/><em>comment.png</em></td>
455
+ <td><img src="icons/comment_add.png" title="comment_add.png" alt="comment add "/><em>comment_add.png</em></td>
456
+
457
+ <td><img src="icons/comment_delete.png" title="comment_delete.png" alt="comment delete "/><em>comment_delete.png</em></td>
458
+ <td><img src="icons/comment_edit.png" title="comment_edit.png" alt="comment edit "/><em>comment_edit.png</em></td>
459
+ <td><img src="icons/comments.png" title="comments.png" alt="comments "/><em>comments.png</em></td>
460
+ <td><img src="icons/comments_add.png" title="comments_add.png" alt="comments add "/><em>comments_add.png</em></td>
461
+ </tr>
462
+ <tr>
463
+ <td><img src="icons/comments_delete.png" title="comments_delete.png" alt="comments delete "/><em>comments_delete.png</em></td>
464
+
465
+ <td><img src="icons/compress.png" title="compress.png" alt="compress "/><em>compress.png</em></td>
466
+ <td><img src="icons/computer.png" title="computer.png" alt="computer "/><em>computer.png</em></td>
467
+ <td><img src="icons/computer_add.png" title="computer_add.png" alt="computer add "/><em>computer_add.png</em></td>
468
+ <td><img src="icons/computer_delete.png" title="computer_delete.png" alt="computer delete "/><em>computer_delete.png</em></td>
469
+ <td><img src="icons/computer_edit.png" title="computer_edit.png" alt="computer edit "/><em>computer_edit.png</em></td>
470
+ <td><img src="icons/computer_error.png" title="computer_error.png" alt="computer error "/><em>computer_error.png</em></td>
471
+
472
+ <td><img src="icons/computer_go.png" title="computer_go.png" alt="computer go "/><em>computer_go.png</em></td>
473
+ <td><img src="icons/computer_key.png" title="computer_key.png" alt="computer key "/><em>computer_key.png</em></td>
474
+ <td><img src="icons/computer_link.png" title="computer_link.png" alt="computer link "/><em>computer_link.png</em></td>
475
+ <td><img src="icons/connect.png" title="connect.png" alt="connect "/><em>connect.png</em></td>
476
+ <td><img src="icons/contrast.png" title="contrast.png" alt="contrast "/><em>contrast.png</em></td>
477
+ </tr>
478
+
479
+ <tr>
480
+ <td><img src="icons/contrast_decrease.png" title="contrast_decrease.png" alt="contrast decrease "/><em>contrast_decrease.png</em></td>
481
+ <td><img src="icons/contrast_high.png" title="contrast_high.png" alt="contrast high "/><em>contrast_high.png</em></td>
482
+ <td><img src="icons/contrast_increase.png" title="contrast_increase.png" alt="contrast increase "/><em>contrast_increase.png</em></td>
483
+ <td><img src="icons/contrast_low.png" title="contrast_low.png" alt="contrast low "/><em>contrast_low.png</em></td>
484
+ <td><img src="icons/control_eject.png" title="control_eject.png" alt="control eject "/><em>control_eject.png</em></td>
485
+
486
+ <td><img src="icons/control_eject_blue.png" title="control_eject_blue.png" alt="control eject blue "/><em>control_eject_blue.png</em></td>
487
+ <td><img src="icons/control_end.png" title="control_end.png" alt="control end "/><em>control_end.png</em></td>
488
+ <td><img src="icons/control_end_blue.png" title="control_end_blue.png" alt="control end blue "/><em>control_end_blue.png</em></td>
489
+ <td><img src="icons/control_equalizer.png" title="control_equalizer.png" alt="control equalizer "/><em>control_equalizer.png</em></td>
490
+ <td><img src="icons/control_equalizer_blue.png" title="control_equalizer_blue.png" alt="control equalizer blue "/><em>control_equalizer_blue.png</em></td>
491
+ <td><img src="icons/control_fastforward.png" title="control_fastforward.png" alt="control fastforward "/><em>control_fastforward.png</em></td>
492
+
493
+ <td><img src="icons/control_fastforward_blue.png" title="control_fastforward_blue.png" alt="control fastforward blue "/><em>control_fastforward_blue.png</em></td>
494
+ </tr>
495
+ <tr>
496
+ <td><img src="icons/control_pause.png" title="control_pause.png" alt="control pause "/><em>control_pause.png</em></td>
497
+ <td><img src="icons/control_pause_blue.png" title="control_pause_blue.png" alt="control pause blue "/><em>control_pause_blue.png</em></td>
498
+ <td><img src="icons/control_play.png" title="control_play.png" alt="control play "/><em>control_play.png</em></td>
499
+ <td><img src="icons/control_play_blue.png" title="control_play_blue.png" alt="control play blue "/><em>control_play_blue.png</em></td>
500
+
501
+ <td><img src="icons/control_repeat.png" title="control_repeat.png" alt="control repeat "/><em>control_repeat.png</em></td>
502
+ <td><img src="icons/control_repeat_blue.png" title="control_repeat_blue.png" alt="control repeat blue "/><em>control_repeat_blue.png</em></td>
503
+ <td><img src="icons/control_rewind.png" title="control_rewind.png" alt="control rewind "/><em>control_rewind.png</em></td>
504
+ <td><img src="icons/control_rewind_blue.png" title="control_rewind_blue.png" alt="control rewind blue "/><em>control_rewind_blue.png</em></td>
505
+ <td><img src="icons/control_start.png" title="control_start.png" alt="control start "/><em>control_start.png</em></td>
506
+ <td><img src="icons/control_start_blue.png" title="control_start_blue.png" alt="control start blue "/><em>control_start_blue.png</em></td>
507
+
508
+ <td><img src="icons/control_stop.png" title="control_stop.png" alt="control stop "/><em>control_stop.png</em></td>
509
+ <td><img src="icons/control_stop_blue.png" title="control_stop_blue.png" alt="control stop blue "/><em>control_stop_blue.png</em></td>
510
+ </tr>
511
+ <tr>
512
+ <td><img src="icons/controller.png" title="controller.png" alt="controller "/><em>controller.png</em></td>
513
+ <td><img src="icons/controller_add.png" title="controller_add.png" alt="controller add "/><em>controller_add.png</em></td>
514
+ <td><img src="icons/controller_delete.png" title="controller_delete.png" alt="controller delete "/><em>controller_delete.png</em></td>
515
+
516
+ <td><img src="icons/controller_error.png" title="controller_error.png" alt="controller error "/><em>controller_error.png</em></td>
517
+ <td><img src="icons/creditcards.png" title="creditcards.png" alt="creditcards "/><em>creditcards.png</em></td>
518
+ <td><img src="icons/cross.png" title="cross.png" alt="cross "/><em>cross.png</em></td>
519
+ <td><img src="icons/css.png" title="css.png" alt="css "/><em>css.png</em></td>
520
+ <td><img src="icons/css_add.png" title="css_add.png" alt="css add "/><em>css_add.png</em></td>
521
+ <td><img src="icons/css_delete.png" title="css_delete.png" alt="css delete "/><em>css_delete.png</em></td>
522
+
523
+ <td><img src="icons/css_go.png" title="css_go.png" alt="css go "/><em>css_go.png</em></td>
524
+ <td><img src="icons/css_valid.png" title="css_valid.png" alt="css valid "/><em>css_valid.png</em></td>
525
+ <td><img src="icons/cup.png" title="cup.png" alt="cup "/><em>cup.png</em></td>
526
+ </tr>
527
+ <tr>
528
+ <td><img src="icons/cup_add.png" title="cup_add.png" alt="cup add "/><em>cup_add.png</em></td>
529
+ <td><img src="icons/cup_delete.png" title="cup_delete.png" alt="cup delete "/><em>cup_delete.png</em></td>
530
+
531
+ <td><img src="icons/cup_edit.png" title="cup_edit.png" alt="cup edit "/><em>cup_edit.png</em></td>
532
+ <td><img src="icons/cup_error.png" title="cup_error.png" alt="cup error "/><em>cup_error.png</em></td>
533
+ <td><img src="icons/cup_go.png" title="cup_go.png" alt="cup go "/><em>cup_go.png</em></td>
534
+ <td><img src="icons/cup_key.png" title="cup_key.png" alt="cup key "/><em>cup_key.png</em></td>
535
+ <td><img src="icons/cup_link.png" title="cup_link.png" alt="cup link "/><em>cup_link.png</em></td>
536
+ <td><img src="icons/cursor.png" title="cursor.png" alt="cursor "/><em>cursor.png</em></td>
537
+
538
+ <td><img src="icons/cut.png" title="cut.png" alt="cut "/><em>cut.png</em></td>
539
+ <td><img src="icons/cut_red.png" title="cut_red.png" alt="cut red "/><em>cut_red.png</em></td>
540
+ <td><img src="icons/database.png" title="database.png" alt="database "/><em>database.png</em></td>
541
+ <td><img src="icons/database_add.png" title="database_add.png" alt="database add "/><em>database_add.png</em></td>
542
+ </tr>
543
+ <tr>
544
+ <td><img src="icons/database_connect.png" title="database_connect.png" alt="database connect "/><em>database_connect.png</em></td>
545
+
546
+ <td><img src="icons/database_delete.png" title="database_delete.png" alt="database delete "/><em>database_delete.png</em></td>
547
+ <td><img src="icons/database_edit.png" title="database_edit.png" alt="database edit "/><em>database_edit.png</em></td>
548
+ <td><img src="icons/database_error.png" title="database_error.png" alt="database error "/><em>database_error.png</em></td>
549
+ <td><img src="icons/database_gear.png" title="database_gear.png" alt="database gear "/><em>database_gear.png</em></td>
550
+ <td><img src="icons/database_go.png" title="database_go.png" alt="database go "/><em>database_go.png</em></td>
551
+ <td><img src="icons/database_key.png" title="database_key.png" alt="database key "/><em>database_key.png</em></td>
552
+
553
+ <td><img src="icons/database_lightning.png" title="database_lightning.png" alt="database lightning "/><em>database_lightning.png</em></td>
554
+ <td><img src="icons/database_link.png" title="database_link.png" alt="database link "/><em>database_link.png</em></td>
555
+ <td><img src="icons/database_refresh.png" title="database_refresh.png" alt="database refresh "/><em>database_refresh.png</em></td>
556
+ <td><img src="icons/database_save.png" title="database_save.png" alt="database save "/><em>database_save.png</em></td>
557
+ <td><img src="icons/database_table.png" title="database_table.png" alt="database table "/><em>database_table.png</em></td>
558
+ </tr>
559
+
560
+ <tr>
561
+ <td><img src="icons/date.png" title="date.png" alt="date "/><em>date.png</em></td>
562
+ <td><img src="icons/date_add.png" title="date_add.png" alt="date add "/><em>date_add.png</em></td>
563
+ <td><img src="icons/date_delete.png" title="date_delete.png" alt="date delete "/><em>date_delete.png</em></td>
564
+ <td><img src="icons/date_edit.png" title="date_edit.png" alt="date edit "/><em>date_edit.png</em></td>
565
+ <td><img src="icons/date_error.png" title="date_error.png" alt="date error "/><em>date_error.png</em></td>
566
+
567
+ <td><img src="icons/date_go.png" title="date_go.png" alt="date go "/><em>date_go.png</em></td>
568
+ <td><img src="icons/date_link.png" title="date_link.png" alt="date link "/><em>date_link.png</em></td>
569
+ <td><img src="icons/date_magnify.png" title="date_magnify.png" alt="date magnify "/><em>date_magnify.png</em></td>
570
+ <td><img src="icons/date_next.png" title="date_next.png" alt="date next "/><em>date_next.png</em></td>
571
+ <td><img src="icons/date_previous.png" title="date_previous.png" alt="date previous "/><em>date_previous.png</em></td>
572
+ <td><img src="icons/delete.png" title="delete.png" alt="delete "/><em>delete.png</em></td>
573
+
574
+ <td><img src="icons/disconnect.png" title="disconnect.png" alt="disconnect "/><em>disconnect.png</em></td>
575
+ </tr>
576
+ <tr>
577
+ <td><img src="icons/disk.png" title="disk.png" alt="disk "/><em>disk.png</em></td>
578
+ <td><img src="icons/disk_multiple.png" title="disk_multiple.png" alt="disk multiple "/><em>disk_multiple.png</em></td>
579
+ <td><img src="icons/door.png" title="door.png" alt="door "/><em>door.png</em></td>
580
+ <td><img src="icons/door_in.png" title="door_in.png" alt="door in "/><em>door_in.png</em></td>
581
+
582
+ <td><img src="icons/door_open.png" title="door_open.png" alt="door open "/><em>door_open.png</em></td>
583
+ <td><img src="icons/door_out.png" title="door_out.png" alt="door out "/><em>door_out.png</em></td>
584
+ <td><img src="icons/drink.png" title="drink.png" alt="drink "/><em>drink.png</em></td>
585
+ <td><img src="icons/drink_empty.png" title="drink_empty.png" alt="drink empty "/><em>drink_empty.png</em></td>
586
+ <td><img src="icons/drive.png" title="drive.png" alt="drive "/><em>drive.png</em></td>
587
+ <td><img src="icons/drive_add.png" title="drive_add.png" alt="drive add "/><em>drive_add.png</em></td>
588
+
589
+ <td><img src="icons/drive_burn.png" title="drive_burn.png" alt="drive burn "/><em>drive_burn.png</em></td>
590
+ <td><img src="icons/drive_cd.png" title="drive_cd.png" alt="drive cd "/><em>drive_cd.png</em></td>
591
+ </tr>
592
+ <tr>
593
+ <td><img src="icons/drive_cd_empty.png" title="drive_cd_empty.png" alt="drive cd empty "/><em>drive_cd_empty.png</em></td>
594
+ <td><img src="icons/drive_delete.png" title="drive_delete.png" alt="drive delete "/><em>drive_delete.png</em></td>
595
+ <td><img src="icons/drive_disk.png" title="drive_disk.png" alt="drive disk "/><em>drive_disk.png</em></td>
596
+
597
+ <td><img src="icons/drive_edit.png" title="drive_edit.png" alt="drive edit "/><em>drive_edit.png</em></td>
598
+ <td><img src="icons/drive_error.png" title="drive_error.png" alt="drive error "/><em>drive_error.png</em></td>
599
+ <td><img src="icons/drive_go.png" title="drive_go.png" alt="drive go "/><em>drive_go.png</em></td>
600
+ <td><img src="icons/drive_key.png" title="drive_key.png" alt="drive key "/><em>drive_key.png</em></td>
601
+ <td><img src="icons/drive_link.png" title="drive_link.png" alt="drive link "/><em>drive_link.png</em></td>
602
+ <td><img src="icons/drive_magnify.png" title="drive_magnify.png" alt="drive magnify "/><em>drive_magnify.png</em></td>
603
+
604
+ <td><img src="icons/drive_network.png" title="drive_network.png" alt="drive network "/><em>drive_network.png</em></td>
605
+ <td><img src="icons/drive_rename.png" title="drive_rename.png" alt="drive rename "/><em>drive_rename.png</em></td>
606
+ <td><img src="icons/drive_user.png" title="drive_user.png" alt="drive user "/><em>drive_user.png</em></td>
607
+ </tr>
608
+ <tr>
609
+ <td><img src="icons/drive_web.png" title="drive_web.png" alt="drive web "/><em>drive_web.png</em></td>
610
+ <td><img src="icons/dvd.png" title="dvd.png" alt="dvd "/><em>dvd.png</em></td>
611
+
612
+ <td><img src="icons/dvd_add.png" title="dvd_add.png" alt="dvd add "/><em>dvd_add.png</em></td>
613
+ <td><img src="icons/dvd_delete.png" title="dvd_delete.png" alt="dvd delete "/><em>dvd_delete.png</em></td>
614
+ <td><img src="icons/dvd_edit.png" title="dvd_edit.png" alt="dvd edit "/><em>dvd_edit.png</em></td>
615
+ <td><img src="icons/dvd_error.png" title="dvd_error.png" alt="dvd error "/><em>dvd_error.png</em></td>
616
+ <td><img src="icons/dvd_go.png" title="dvd_go.png" alt="dvd go "/><em>dvd_go.png</em></td>
617
+ <td><img src="icons/dvd_key.png" title="dvd_key.png" alt="dvd key "/><em>dvd_key.png</em></td>
618
+
619
+ <td><img src="icons/dvd_link.png" title="dvd_link.png" alt="dvd link "/><em>dvd_link.png</em></td>
620
+ <td><img src="icons/email.png" title="email.png" alt="email "/><em>email.png</em></td>
621
+ <td><img src="icons/email_add.png" title="email_add.png" alt="email add "/><em>email_add.png</em></td>
622
+ <td><img src="icons/email_attach.png" title="email_attach.png" alt="email attach "/><em>email_attach.png</em></td>
623
+ </tr>
624
+ <tr>
625
+ <td><img src="icons/email_delete.png" title="email_delete.png" alt="email delete "/><em>email_delete.png</em></td>
626
+
627
+ <td><img src="icons/email_edit.png" title="email_edit.png" alt="email edit "/><em>email_edit.png</em></td>
628
+ <td><img src="icons/email_error.png" title="email_error.png" alt="email error "/><em>email_error.png</em></td>
629
+ <td><img src="icons/email_go.png" title="email_go.png" alt="email go "/><em>email_go.png</em></td>
630
+ <td><img src="icons/email_link.png" title="email_link.png" alt="email link "/><em>email_link.png</em></td>
631
+ <td><img src="icons/email_open.png" title="email_open.png" alt="email open "/><em>email_open.png</em></td>
632
+ <td><img src="icons/email_open_image.png" title="email_open_image.png" alt="email open image "/><em>email_open_image.png</em></td>
633
+
634
+ <td><img src="icons/emoticon_evilgrin.png" title="emoticon_evilgrin.png" alt="emoticon evilgrin "/><em>emoticon_evilgrin.png</em></td>
635
+ <td><img src="icons/emoticon_grin.png" title="emoticon_grin.png" alt="emoticon grin "/><em>emoticon_grin.png</em></td>
636
+ <td><img src="icons/emoticon_happy.png" title="emoticon_happy.png" alt="emoticon happy "/><em>emoticon_happy.png</em></td>
637
+ <td><img src="icons/emoticon_smile.png" title="emoticon_smile.png" alt="emoticon smile "/><em>emoticon_smile.png</em></td>
638
+ <td><img src="icons/emoticon_surprised.png" title="emoticon_surprised.png" alt="emoticon surprised "/><em>emoticon_surprised.png</em></td>
639
+ </tr>
640
+
641
+ <tr>
642
+ <td><img src="icons/emoticon_tongue.png" title="emoticon_tongue.png" alt="emoticon tongue "/><em>emoticon_tongue.png</em></td>
643
+ <td><img src="icons/emoticon_unhappy.png" title="emoticon_unhappy.png" alt="emoticon unhappy "/><em>emoticon_unhappy.png</em></td>
644
+ <td><img src="icons/emoticon_waii.png" title="emoticon_waii.png" alt="emoticon waii "/><em>emoticon_waii.png</em></td>
645
+ <td><img src="icons/emoticon_wink.png" title="emoticon_wink.png" alt="emoticon wink "/><em>emoticon_wink.png</em></td>
646
+ <td><img src="icons/error.png" title="error.png" alt="error "/><em>error.png</em></td>
647
+
648
+ <td><img src="icons/error_add.png" title="error_add.png" alt="error add "/><em>error_add.png</em></td>
649
+ <td><img src="icons/error_delete.png" title="error_delete.png" alt="error delete "/><em>error_delete.png</em></td>
650
+ <td><img src="icons/error_go.png" title="error_go.png" alt="error go "/><em>error_go.png</em></td>
651
+ <td><img src="icons/exclamation.png" title="exclamation.png" alt="exclamation "/><em>exclamation.png</em></td>
652
+ <td><img src="icons/eye.png" title="eye.png" alt="eye "/><em>eye.png</em></td>
653
+ <td><img src="icons/feed.png" title="feed.png" alt="feed "/><em>feed.png</em></td>
654
+
655
+ <td><img src="icons/feed_add.png" title="feed_add.png" alt="feed add "/><em>feed_add.png</em></td>
656
+ </tr>
657
+ <tr>
658
+ <td><img src="icons/feed_delete.png" title="feed_delete.png" alt="feed delete "/><em>feed_delete.png</em></td>
659
+ <td><img src="icons/feed_disk.png" title="feed_disk.png" alt="feed disk "/><em>feed_disk.png</em></td>
660
+ <td><img src="icons/feed_edit.png" title="feed_edit.png" alt="feed edit "/><em>feed_edit.png</em></td>
661
+ <td><img src="icons/feed_error.png" title="feed_error.png" alt="feed error "/><em>feed_error.png</em></td>
662
+
663
+ <td><img src="icons/feed_go.png" title="feed_go.png" alt="feed go "/><em>feed_go.png</em></td>
664
+ <td><img src="icons/feed_key.png" title="feed_key.png" alt="feed key "/><em>feed_key.png</em></td>
665
+ <td><img src="icons/feed_link.png" title="feed_link.png" alt="feed link "/><em>feed_link.png</em></td>
666
+ <td><img src="icons/feed_magnify.png" title="feed_magnify.png" alt="feed magnify "/><em>feed_magnify.png</em></td>
667
+ <td><img src="icons/female.png" title="female.png" alt="female "/><em>female.png</em></td>
668
+ <td><img src="icons/film.png" title="film.png" alt="film "/><em>film.png</em></td>
669
+
670
+ <td><img src="icons/film_add.png" title="film_add.png" alt="film add "/><em>film_add.png</em></td>
671
+ <td><img src="icons/film_delete.png" title="film_delete.png" alt="film delete "/><em>film_delete.png</em></td>
672
+ </tr>
673
+ <tr>
674
+ <td><img src="icons/film_edit.png" title="film_edit.png" alt="film edit "/><em>film_edit.png</em></td>
675
+ <td><img src="icons/film_error.png" title="film_error.png" alt="film error "/><em>film_error.png</em></td>
676
+ <td><img src="icons/film_go.png" title="film_go.png" alt="film go "/><em>film_go.png</em></td>
677
+
678
+ <td><img src="icons/film_key.png" title="film_key.png" alt="film key "/><em>film_key.png</em></td>
679
+ <td><img src="icons/film_link.png" title="film_link.png" alt="film link "/><em>film_link.png</em></td>
680
+ <td><img src="icons/film_save.png" title="film_save.png" alt="film save "/><em>film_save.png</em></td>
681
+ <td><img src="icons/find.png" title="find.png" alt="find "/><em>find.png</em></td>
682
+ <td><img src="icons/flag_blue.png" title="flag_blue.png" alt="flag blue "/><em>flag_blue.png</em></td>
683
+ <td><img src="icons/flag_green.png" title="flag_green.png" alt="flag green "/><em>flag_green.png</em></td>
684
+
685
+ <td><img src="icons/flag_orange.png" title="flag_orange.png" alt="flag orange "/><em>flag_orange.png</em></td>
686
+ <td><img src="icons/flag_pink.png" title="flag_pink.png" alt="flag pink "/><em>flag_pink.png</em></td>
687
+ <td><img src="icons/flag_purple.png" title="flag_purple.png" alt="flag purple "/><em>flag_purple.png</em></td>
688
+ </tr>
689
+ <tr>
690
+ <td><img src="icons/flag_red.png" title="flag_red.png" alt="flag red "/><em>flag_red.png</em></td>
691
+ <td><img src="icons/flag_yellow.png" title="flag_yellow.png" alt="flag yellow "/><em>flag_yellow.png</em></td>
692
+
693
+ <td><img src="icons/folder.png" title="folder.png" alt="folder "/><em>folder.png</em></td>
694
+ <td><img src="icons/folder_add.png" title="folder_add.png" alt="folder add "/><em>folder_add.png</em></td>
695
+ <td><img src="icons/folder_bell.png" title="folder_bell.png" alt="folder bell "/><em>folder_bell.png</em></td>
696
+ <td><img src="icons/folder_brick.png" title="folder_brick.png" alt="folder brick "/><em>folder_brick.png</em></td>
697
+ <td><img src="icons/folder_bug.png" title="folder_bug.png" alt="folder bug "/><em>folder_bug.png</em></td>
698
+ <td><img src="icons/folder_camera.png" title="folder_camera.png" alt="folder camera "/><em>folder_camera.png</em></td>
699
+
700
+ <td><img src="icons/folder_database.png" title="folder_database.png" alt="folder database "/><em>folder_database.png</em></td>
701
+ <td><img src="icons/folder_delete.png" title="folder_delete.png" alt="folder delete "/><em>folder_delete.png</em></td>
702
+ <td><img src="icons/folder_edit.png" title="folder_edit.png" alt="folder edit "/><em>folder_edit.png</em></td>
703
+ <td><img src="icons/folder_error.png" title="folder_error.png" alt="folder error "/><em>folder_error.png</em></td>
704
+ </tr>
705
+ <tr>
706
+ <td><img src="icons/folder_explore.png" title="folder_explore.png" alt="folder explore "/><em>folder_explore.png</em></td>
707
+
708
+ <td><img src="icons/folder_feed.png" title="folder_feed.png" alt="folder feed "/><em>folder_feed.png</em></td>
709
+ <td><img src="icons/folder_find.png" title="folder_find.png" alt="folder find "/><em>folder_find.png</em></td>
710
+ <td><img src="icons/folder_go.png" title="folder_go.png" alt="folder go "/><em>folder_go.png</em></td>
711
+ <td><img src="icons/folder_heart.png" title="folder_heart.png" alt="folder heart "/><em>folder_heart.png</em></td>
712
+ <td><img src="icons/folder_image.png" title="folder_image.png" alt="folder image "/><em>folder_image.png</em></td>
713
+ <td><img src="icons/folder_key.png" title="folder_key.png" alt="folder key "/><em>folder_key.png</em></td>
714
+
715
+ <td><img src="icons/folder_lightbulb.png" title="folder_lightbulb.png" alt="folder lightbulb "/><em>folder_lightbulb.png</em></td>
716
+ <td><img src="icons/folder_link.png" title="folder_link.png" alt="folder link "/><em>folder_link.png</em></td>
717
+ <td><img src="icons/folder_magnify.png" title="folder_magnify.png" alt="folder magnify "/><em>folder_magnify.png</em></td>
718
+ <td><img src="icons/folder_page.png" title="folder_page.png" alt="folder page "/><em>folder_page.png</em></td>
719
+ <td><img src="icons/folder_page_white.png" title="folder_page_white.png" alt="folder page white "/><em>folder_page_white.png</em></td>
720
+ </tr>
721
+
722
+ <tr>
723
+ <td><img src="icons/folder_palette.png" title="folder_palette.png" alt="folder palette "/><em>folder_palette.png</em></td>
724
+ <td><img src="icons/folder_picture.png" title="folder_picture.png" alt="folder picture "/><em>folder_picture.png</em></td>
725
+ <td><img src="icons/folder_star.png" title="folder_star.png" alt="folder star "/><em>folder_star.png</em></td>
726
+ <td><img src="icons/folder_table.png" title="folder_table.png" alt="folder table "/><em>folder_table.png</em></td>
727
+ <td><img src="icons/folder_user.png" title="folder_user.png" alt="folder user "/><em>folder_user.png</em></td>
728
+
729
+ <td><img src="icons/folder_wrench.png" title="folder_wrench.png" alt="folder wrench "/><em>folder_wrench.png</em></td>
730
+ <td><img src="icons/font.png" title="font.png" alt="font "/><em>font.png</em></td>
731
+ <td><img src="icons/font_add.png" title="font_add.png" alt="font add "/><em>font_add.png</em></td>
732
+ <td><img src="icons/font_delete.png" title="font_delete.png" alt="font delete "/><em>font_delete.png</em></td>
733
+ <td><img src="icons/font_go.png" title="font_go.png" alt="font go "/><em>font_go.png</em></td>
734
+ <td><img src="icons/group.png" title="group.png" alt="group "/><em>group.png</em></td>
735
+
736
+ <td><img src="icons/group_add.png" title="group_add.png" alt="group add "/><em>group_add.png</em></td>
737
+ </tr>
738
+ <tr>
739
+ <td><img src="icons/group_delete.png" title="group_delete.png" alt="group delete "/><em>group_delete.png</em></td>
740
+ <td><img src="icons/group_edit.png" title="group_edit.png" alt="group edit "/><em>group_edit.png</em></td>
741
+ <td><img src="icons/group_error.png" title="group_error.png" alt="group error "/><em>group_error.png</em></td>
742
+ <td><img src="icons/group_gear.png" title="group_gear.png" alt="group gear "/><em>group_gear.png</em></td>
743
+
744
+ <td><img src="icons/group_go.png" title="group_go.png" alt="group go "/><em>group_go.png</em></td>
745
+ <td><img src="icons/group_key.png" title="group_key.png" alt="group key "/><em>group_key.png</em></td>
746
+ <td><img src="icons/group_link.png" title="group_link.png" alt="group link "/><em>group_link.png</em></td>
747
+ <td><img src="icons/heart.png" title="heart.png" alt="heart "/><em>heart.png</em></td>
748
+ <td><img src="icons/heart_add.png" title="heart_add.png" alt="heart add "/><em>heart_add.png</em></td>
749
+ <td><img src="icons/heart_delete.png" title="heart_delete.png" alt="heart delete "/><em>heart_delete.png</em></td>
750
+
751
+ <td><img src="icons/help.png" title="help.png" alt="help "/><em>help.png</em></td>
752
+ <td><img src="icons/hourglass.png" title="hourglass.png" alt="hourglass "/><em>hourglass.png</em></td>
753
+ </tr>
754
+ <tr>
755
+ <td><img src="icons/hourglass_add.png" title="hourglass_add.png" alt="hourglass add "/><em>hourglass_add.png</em></td>
756
+ <td><img src="icons/hourglass_delete.png" title="hourglass_delete.png" alt="hourglass delete "/><em>hourglass_delete.png</em></td>
757
+ <td><img src="icons/hourglass_go.png" title="hourglass_go.png" alt="hourglass go "/><em>hourglass_go.png</em></td>
758
+
759
+ <td><img src="icons/hourglass_link.png" title="hourglass_link.png" alt="hourglass link "/><em>hourglass_link.png</em></td>
760
+ <td><img src="icons/house.png" title="house.png" alt="house "/><em>house.png</em></td>
761
+ <td><img src="icons/house_go.png" title="house_go.png" alt="house go "/><em>house_go.png</em></td>
762
+ <td><img src="icons/house_link.png" title="house_link.png" alt="house link "/><em>house_link.png</em></td>
763
+ <td><img src="icons/html.png" title="html.png" alt="html "/><em>html.png</em></td>
764
+ <td><img src="icons/html_add.png" title="html_add.png" alt="html add "/><em>html_add.png</em></td>
765
+
766
+ <td><img src="icons/html_delete.png" title="html_delete.png" alt="html delete "/><em>html_delete.png</em></td>
767
+ <td><img src="icons/html_go.png" title="html_go.png" alt="html go "/><em>html_go.png</em></td>
768
+ <td><img src="icons/html_valid.png" title="html_valid.png" alt="html valid "/><em>html_valid.png</em></td>
769
+ </tr>
770
+ <tr>
771
+ <td><img src="icons/image.png" title="image.png" alt="image "/><em>image.png</em></td>
772
+ <td><img src="icons/image_add.png" title="image_add.png" alt="image add "/><em>image_add.png</em></td>
773
+
774
+ <td><img src="icons/image_delete.png" title="image_delete.png" alt="image delete "/><em>image_delete.png</em></td>
775
+ <td><img src="icons/image_edit.png" title="image_edit.png" alt="image edit "/><em>image_edit.png</em></td>
776
+ <td><img src="icons/image_link.png" title="image_link.png" alt="image link "/><em>image_link.png</em></td>
777
+ <td><img src="icons/images.png" title="images.png" alt="images "/><em>images.png</em></td>
778
+ <td><img src="icons/information.png" title="information.png" alt="information "/><em>information.png</em></td>
779
+ <td><img src="icons/ipod.png" title="ipod.png" alt="ipod "/><em>ipod.png</em></td>
780
+
781
+ <td><img src="icons/ipod_cast.png" title="ipod_cast.png" alt="ipod cast "/><em>ipod_cast.png</em></td>
782
+ <td><img src="icons/ipod_cast_add.png" title="ipod_cast_add.png" alt="ipod cast add "/><em>ipod_cast_add.png</em></td>
783
+ <td><img src="icons/ipod_cast_delete.png" title="ipod_cast_delete.png" alt="ipod cast delete "/><em>ipod_cast_delete.png</em></td>
784
+ <td><img src="icons/ipod_sound.png" title="ipod_sound.png" alt="ipod sound "/><em>ipod_sound.png</em></td>
785
+ </tr>
786
+ <tr>
787
+ <td><img src="icons/joystick.png" title="joystick.png" alt="joystick "/><em>joystick.png</em></td>
788
+
789
+ <td><img src="icons/joystick_add.png" title="joystick_add.png" alt="joystick add "/><em>joystick_add.png</em></td>
790
+ <td><img src="icons/joystick_delete.png" title="joystick_delete.png" alt="joystick delete "/><em>joystick_delete.png</em></td>
791
+ <td><img src="icons/joystick_error.png" title="joystick_error.png" alt="joystick error "/><em>joystick_error.png</em></td>
792
+ <td><img src="icons/key.png" title="key.png" alt="key "/><em>key.png</em></td>
793
+ <td><img src="icons/key_add.png" title="key_add.png" alt="key add "/><em>key_add.png</em></td>
794
+ <td><img src="icons/key_delete.png" title="key_delete.png" alt="key delete "/><em>key_delete.png</em></td>
795
+
796
+ <td><img src="icons/key_go.png" title="key_go.png" alt="key go "/><em>key_go.png</em></td>
797
+ <td><img src="icons/keyboard.png" title="keyboard.png" alt="keyboard "/><em>keyboard.png</em></td>
798
+ <td><img src="icons/keyboard_add.png" title="keyboard_add.png" alt="keyboard add "/><em>keyboard_add.png</em></td>
799
+ <td><img src="icons/keyboard_delete.png" title="keyboard_delete.png" alt="keyboard delete "/><em>keyboard_delete.png</em></td>
800
+ <td><img src="icons/keyboard_magnify.png" title="keyboard_magnify.png" alt="keyboard magnify "/><em>keyboard_magnify.png</em></td>
801
+ </tr>
802
+
803
+ <tr>
804
+ <td><img src="icons/layers.png" title="layers.png" alt="layers "/><em>layers.png</em></td>
805
+ <td><img src="icons/layout.png" title="layout.png" alt="layout "/><em>layout.png</em></td>
806
+ <td><img src="icons/layout_add.png" title="layout_add.png" alt="layout add "/><em>layout_add.png</em></td>
807
+ <td><img src="icons/layout_content.png" title="layout_content.png" alt="layout content "/><em>layout_content.png</em></td>
808
+ <td><img src="icons/layout_delete.png" title="layout_delete.png" alt="layout delete "/><em>layout_delete.png</em></td>
809
+
810
+ <td><img src="icons/layout_edit.png" title="layout_edit.png" alt="layout edit "/><em>layout_edit.png</em></td>
811
+ <td><img src="icons/layout_error.png" title="layout_error.png" alt="layout error "/><em>layout_error.png</em></td>
812
+ <td><img src="icons/layout_header.png" title="layout_header.png" alt="layout header "/><em>layout_header.png</em></td>
813
+ <td><img src="icons/layout_link.png" title="layout_link.png" alt="layout link "/><em>layout_link.png</em></td>
814
+ <td><img src="icons/layout_sidebar.png" title="layout_sidebar.png" alt="layout sidebar "/><em>layout_sidebar.png</em></td>
815
+ <td><img src="icons/lightbulb.png" title="lightbulb.png" alt="lightbulb "/><em>lightbulb.png</em></td>
816
+
817
+ <td><img src="icons/lightbulb_add.png" title="lightbulb_add.png" alt="lightbulb add "/><em>lightbulb_add.png</em></td>
818
+ </tr>
819
+ <tr>
820
+ <td><img src="icons/lightbulb_delete.png" title="lightbulb_delete.png" alt="lightbulb delete "/><em>lightbulb_delete.png</em></td>
821
+ <td><img src="icons/lightbulb_off.png" title="lightbulb_off.png" alt="lightbulb off "/><em>lightbulb_off.png</em></td>
822
+ <td><img src="icons/lightning.png" title="lightning.png" alt="lightning "/><em>lightning.png</em></td>
823
+ <td><img src="icons/lightning_add.png" title="lightning_add.png" alt="lightning add "/><em>lightning_add.png</em></td>
824
+
825
+ <td><img src="icons/lightning_delete.png" title="lightning_delete.png" alt="lightning delete "/><em>lightning_delete.png</em></td>
826
+ <td><img src="icons/lightning_go.png" title="lightning_go.png" alt="lightning go "/><em>lightning_go.png</em></td>
827
+ <td><img src="icons/link.png" title="link.png" alt="link "/><em>link.png</em></td>
828
+ <td><img src="icons/link_add.png" title="link_add.png" alt="link add "/><em>link_add.png</em></td>
829
+ <td><img src="icons/link_break.png" title="link_break.png" alt="link break "/><em>link_break.png</em></td>
830
+ <td><img src="icons/link_delete.png" title="link_delete.png" alt="link delete "/><em>link_delete.png</em></td>
831
+
832
+ <td><img src="icons/link_edit.png" title="link_edit.png" alt="link edit "/><em>link_edit.png</em></td>
833
+ <td><img src="icons/link_error.png" title="link_error.png" alt="link error "/><em>link_error.png</em></td>
834
+ </tr>
835
+ <tr>
836
+ <td><img src="icons/link_go.png" title="link_go.png" alt="link go "/><em>link_go.png</em></td>
837
+ <td><img src="icons/lock.png" title="lock.png" alt="lock "/><em>lock.png</em></td>
838
+ <td><img src="icons/lock_add.png" title="lock_add.png" alt="lock add "/><em>lock_add.png</em></td>
839
+
840
+ <td><img src="icons/lock_break.png" title="lock_break.png" alt="lock break "/><em>lock_break.png</em></td>
841
+ <td><img src="icons/lock_delete.png" title="lock_delete.png" alt="lock delete "/><em>lock_delete.png</em></td>
842
+ <td><img src="icons/lock_edit.png" title="lock_edit.png" alt="lock edit "/><em>lock_edit.png</em></td>
843
+ <td><img src="icons/lock_go.png" title="lock_go.png" alt="lock go "/><em>lock_go.png</em></td>
844
+ <td><img src="icons/lock_open.png" title="lock_open.png" alt="lock open "/><em>lock_open.png</em></td>
845
+ <td><img src="icons/lorry.png" title="lorry.png" alt="lorry "/><em>lorry.png</em></td>
846
+
847
+ <td><img src="icons/lorry_add.png" title="lorry_add.png" alt="lorry add "/><em>lorry_add.png</em></td>
848
+ <td><img src="icons/lorry_delete.png" title="lorry_delete.png" alt="lorry delete "/><em>lorry_delete.png</em></td>
849
+ <td><img src="icons/lorry_error.png" title="lorry_error.png" alt="lorry error "/><em>lorry_error.png</em></td>
850
+ </tr>
851
+ <tr>
852
+ <td><img src="icons/lorry_flatbed.png" title="lorry_flatbed.png" alt="lorry flatbed "/><em>lorry_flatbed.png</em></td>
853
+ <td><img src="icons/lorry_go.png" title="lorry_go.png" alt="lorry go "/><em>lorry_go.png</em></td>
854
+
855
+ <td><img src="icons/lorry_link.png" title="lorry_link.png" alt="lorry link "/><em>lorry_link.png</em></td>
856
+ <td><img src="icons/magifier_zoom_out.png" title="magifier_zoom_out.png" alt="magifier zoom out "/><em>magifier_zoom_out.png</em></td>
857
+ <td><img src="icons/magnifier.png" title="magnifier.png" alt="magnifier "/><em>magnifier.png</em></td>
858
+ <td><img src="icons/magnifier_zoom_in.png" title="magnifier_zoom_in.png" alt="magnifier zoom in "/><em>magnifier_zoom_in.png</em></td>
859
+ <td><img src="icons/male.png" title="male.png" alt="male "/><em>male.png</em></td>
860
+ <td><img src="icons/map.png" title="map.png" alt="map "/><em>map.png</em></td>
861
+
862
+ <td><img src="icons/map_add.png" title="map_add.png" alt="map add "/><em>map_add.png</em></td>
863
+ <td><img src="icons/map_delete.png" title="map_delete.png" alt="map delete "/><em>map_delete.png</em></td>
864
+ <td><img src="icons/map_edit.png" title="map_edit.png" alt="map edit "/><em>map_edit.png</em></td>
865
+ <td><img src="icons/map_go.png" title="map_go.png" alt="map go "/><em>map_go.png</em></td>
866
+ </tr>
867
+ <tr>
868
+ <td><img src="icons/map_magnify.png" title="map_magnify.png" alt="map magnify "/><em>map_magnify.png</em></td>
869
+
870
+ <td><img src="icons/medal_bronze_1.png" title="medal_bronze_1.png" alt="medal bronze 1 "/><em>medal_bronze_1.png</em></td>
871
+ <td><img src="icons/medal_bronze_2.png" title="medal_bronze_2.png" alt="medal bronze 2 "/><em>medal_bronze_2.png</em></td>
872
+ <td><img src="icons/medal_bronze_3.png" title="medal_bronze_3.png" alt="medal bronze 3 "/><em>medal_bronze_3.png</em></td>
873
+ <td><img src="icons/medal_bronze_add.png" title="medal_bronze_add.png" alt="medal bronze add "/><em>medal_bronze_add.png</em></td>
874
+ <td><img src="icons/medal_bronze_delete.png" title="medal_bronze_delete.png" alt="medal bronze delete "/><em>medal_bronze_delete.png</em></td>
875
+ <td><img src="icons/medal_gold_1.png" title="medal_gold_1.png" alt="medal gold 1 "/><em>medal_gold_1.png</em></td>
876
+
877
+ <td><img src="icons/medal_gold_2.png" title="medal_gold_2.png" alt="medal gold 2 "/><em>medal_gold_2.png</em></td>
878
+ <td><img src="icons/medal_gold_3.png" title="medal_gold_3.png" alt="medal gold 3 "/><em>medal_gold_3.png</em></td>
879
+ <td><img src="icons/medal_gold_add.png" title="medal_gold_add.png" alt="medal gold add "/><em>medal_gold_add.png</em></td>
880
+ <td><img src="icons/medal_gold_delete.png" title="medal_gold_delete.png" alt="medal gold delete "/><em>medal_gold_delete.png</em></td>
881
+ <td><img src="icons/medal_silver_1.png" title="medal_silver_1.png" alt="medal silver 1 "/><em>medal_silver_1.png</em></td>
882
+ </tr>
883
+
884
+ <tr>
885
+ <td><img src="icons/medal_silver_2.png" title="medal_silver_2.png" alt="medal silver 2 "/><em>medal_silver_2.png</em></td>
886
+ <td><img src="icons/medal_silver_3.png" title="medal_silver_3.png" alt="medal silver 3 "/><em>medal_silver_3.png</em></td>
887
+ <td><img src="icons/medal_silver_add.png" title="medal_silver_add.png" alt="medal silver add "/><em>medal_silver_add.png</em></td>
888
+ <td><img src="icons/medal_silver_delete.png" title="medal_silver_delete.png" alt="medal silver delete "/><em>medal_silver_delete.png</em></td>
889
+ <td><img src="icons/money.png" title="money.png" alt="money "/><em>money.png</em></td>
890
+
891
+ <td><img src="icons/money_add.png" title="money_add.png" alt="money add "/><em>money_add.png</em></td>
892
+ <td><img src="icons/money_delete.png" title="money_delete.png" alt="money delete "/><em>money_delete.png</em></td>
893
+ <td><img src="icons/money_dollar.png" title="money_dollar.png" alt="money dollar "/><em>money_dollar.png</em></td>
894
+ <td><img src="icons/money_euro.png" title="money_euro.png" alt="money euro "/><em>money_euro.png</em></td>
895
+ <td><img src="icons/money_pound.png" title="money_pound.png" alt="money pound "/><em>money_pound.png</em></td>
896
+ <td><img src="icons/money_yen.png" title="money_yen.png" alt="money yen "/><em>money_yen.png</em></td>
897
+
898
+ <td><img src="icons/monitor.png" title="monitor.png" alt="monitor "/><em>monitor.png</em></td>
899
+ </tr>
900
+ <tr>
901
+ <td><img src="icons/monitor_add.png" title="monitor_add.png" alt="monitor add "/><em>monitor_add.png</em></td>
902
+ <td><img src="icons/monitor_delete.png" title="monitor_delete.png" alt="monitor delete "/><em>monitor_delete.png</em></td>
903
+ <td><img src="icons/monitor_edit.png" title="monitor_edit.png" alt="monitor edit "/><em>monitor_edit.png</em></td>
904
+ <td><img src="icons/monitor_error.png" title="monitor_error.png" alt="monitor error "/><em>monitor_error.png</em></td>
905
+
906
+ <td><img src="icons/monitor_go.png" title="monitor_go.png" alt="monitor go "/><em>monitor_go.png</em></td>
907
+ <td><img src="icons/monitor_lightning.png" title="monitor_lightning.png" alt="monitor lightning "/><em>monitor_lightning.png</em></td>
908
+ <td><img src="icons/monitor_link.png" title="monitor_link.png" alt="monitor link "/><em>monitor_link.png</em></td>
909
+ <td><img src="icons/mouse.png" title="mouse.png" alt="mouse "/><em>mouse.png</em></td>
910
+ <td><img src="icons/mouse_add.png" title="mouse_add.png" alt="mouse add "/><em>mouse_add.png</em></td>
911
+ <td><img src="icons/mouse_delete.png" title="mouse_delete.png" alt="mouse delete "/><em>mouse_delete.png</em></td>
912
+
913
+ <td><img src="icons/mouse_error.png" title="mouse_error.png" alt="mouse error "/><em>mouse_error.png</em></td>
914
+ <td><img src="icons/music.png" title="music.png" alt="music "/><em>music.png</em></td>
915
+ </tr>
916
+ <tr>
917
+ <td><img src="icons/new.png" title="new.png" alt="new "/><em>new.png</em></td>
918
+ <td><img src="icons/newspaper.png" title="newspaper.png" alt="newspaper "/><em>newspaper.png</em></td>
919
+ <td><img src="icons/newspaper_add.png" title="newspaper_add.png" alt="newspaper add "/><em>newspaper_add.png</em></td>
920
+
921
+ <td><img src="icons/newspaper_delete.png" title="newspaper_delete.png" alt="newspaper delete "/><em>newspaper_delete.png</em></td>
922
+ <td><img src="icons/newspaper_go.png" title="newspaper_go.png" alt="newspaper go "/><em>newspaper_go.png</em></td>
923
+ <td><img src="icons/newspaper_link.png" title="newspaper_link.png" alt="newspaper link "/><em>newspaper_link.png</em></td>
924
+ <td><img src="icons/note.png" title="note.png" alt="note "/><em>note.png</em></td>
925
+ <td><img src="icons/note_add.png" title="note_add.png" alt="note add "/><em>note_add.png</em></td>
926
+ <td><img src="icons/note_delete.png" title="note_delete.png" alt="note delete "/><em>note_delete.png</em></td>
927
+
928
+ <td><img src="icons/note_edit.png" title="note_edit.png" alt="note edit "/><em>note_edit.png</em></td>
929
+ <td><img src="icons/note_error.png" title="note_error.png" alt="note error "/><em>note_error.png</em></td>
930
+ <td><img src="icons/note_go.png" title="note_go.png" alt="note go "/><em>note_go.png</em></td>
931
+ </tr>
932
+ <tr>
933
+ <td><img src="icons/overlays.png" title="overlays.png" alt="overlays "/><em>overlays.png</em></td>
934
+ <td><img src="icons/package.png" title="package.png" alt="package "/><em>package.png</em></td>
935
+
936
+ <td><img src="icons/package_add.png" title="package_add.png" alt="package add "/><em>package_add.png</em></td>
937
+ <td><img src="icons/package_delete.png" title="package_delete.png" alt="package delete "/><em>package_delete.png</em></td>
938
+ <td><img src="icons/package_go.png" title="package_go.png" alt="package go "/><em>package_go.png</em></td>
939
+ <td><img src="icons/package_green.png" title="package_green.png" alt="package green "/><em>package_green.png</em></td>
940
+ <td><img src="icons/package_link.png" title="package_link.png" alt="package link "/><em>package_link.png</em></td>
941
+ <td><img src="icons/page.png" title="page.png" alt="page "/><em>page.png</em></td>
942
+
943
+ <td><img src="icons/page_add.png" title="page_add.png" alt="page add "/><em>page_add.png</em></td>
944
+ <td><img src="icons/page_attach.png" title="page_attach.png" alt="page attach "/><em>page_attach.png</em></td>
945
+ <td><img src="icons/page_code.png" title="page_code.png" alt="page code "/><em>page_code.png</em></td>
946
+ <td><img src="icons/page_copy.png" title="page_copy.png" alt="page copy "/><em>page_copy.png</em></td>
947
+ </tr>
948
+ <tr>
949
+ <td><img src="icons/page_delete.png" title="page_delete.png" alt="page delete "/><em>page_delete.png</em></td>
950
+
951
+ <td><img src="icons/page_edit.png" title="page_edit.png" alt="page edit "/><em>page_edit.png</em></td>
952
+ <td><img src="icons/page_error.png" title="page_error.png" alt="page error "/><em>page_error.png</em></td>
953
+ <td><img src="icons/page_excel.png" title="page_excel.png" alt="page excel "/><em>page_excel.png</em></td>
954
+ <td><img src="icons/page_find.png" title="page_find.png" alt="page find "/><em>page_find.png</em></td>
955
+ <td><img src="icons/page_gear.png" title="page_gear.png" alt="page gear "/><em>page_gear.png</em></td>
956
+ <td><img src="icons/page_go.png" title="page_go.png" alt="page go "/><em>page_go.png</em></td>
957
+
958
+ <td><img src="icons/page_green.png" title="page_green.png" alt="page green "/><em>page_green.png</em></td>
959
+ <td><img src="icons/page_key.png" title="page_key.png" alt="page key "/><em>page_key.png</em></td>
960
+ <td><img src="icons/page_lightning.png" title="page_lightning.png" alt="page lightning "/><em>page_lightning.png</em></td>
961
+ <td><img src="icons/page_link.png" title="page_link.png" alt="page link "/><em>page_link.png</em></td>
962
+ <td><img src="icons/page_paintbrush.png" title="page_paintbrush.png" alt="page paintbrush "/><em>page_paintbrush.png</em></td>
963
+ </tr>
964
+
965
+ <tr>
966
+ <td><img src="icons/page_paste.png" title="page_paste.png" alt="page paste "/><em>page_paste.png</em></td>
967
+ <td><img src="icons/page_red.png" title="page_red.png" alt="page red "/><em>page_red.png</em></td>
968
+ <td><img src="icons/page_refresh.png" title="page_refresh.png" alt="page refresh "/><em>page_refresh.png</em></td>
969
+ <td><img src="icons/page_save.png" title="page_save.png" alt="page save "/><em>page_save.png</em></td>
970
+ <td><img src="icons/page_white.png" title="page_white.png" alt="page white "/><em>page_white.png</em></td>
971
+
972
+ <td><img src="icons/page_white_acrobat.png" title="page_white_acrobat.png" alt="page white acrobat "/><em>page_white_acrobat.png</em></td>
973
+ <td><img src="icons/page_white_actionscript.png" title="page_white_actionscript.png" alt="page white actionscript "/><em>page_white_actionscript.png</em></td>
974
+ <td><img src="icons/page_white_add.png" title="page_white_add.png" alt="page white add "/><em>page_white_add.png</em></td>
975
+ <td><img src="icons/page_white_c.png" title="page_white_c.png" alt="page white c "/><em>page_white_c.png</em></td>
976
+ <td><img src="icons/page_white_camera.png" title="page_white_camera.png" alt="page white camera "/><em>page_white_camera.png</em></td>
977
+ <td><img src="icons/page_white_cd.png" title="page_white_cd.png" alt="page white cd "/><em>page_white_cd.png</em></td>
978
+
979
+ <td><img src="icons/page_white_code.png" title="page_white_code.png" alt="page white code "/><em>page_white_code.png</em></td>
980
+ </tr>
981
+ <tr>
982
+ <td><img src="icons/page_white_code_red.png" title="page_white_code_red.png" alt="page white code red "/><em>page_white_code_red.png</em></td>
983
+ <td><img src="icons/page_white_coldfusion.png" title="page_white_coldfusion.png" alt="page white coldfusion "/><em>page_white_coldfusion.png</em></td>
984
+ <td><img src="icons/page_white_compressed.png" title="page_white_compressed.png" alt="page white compressed "/><em>page_white_compressed.png</em></td>
985
+ <td><img src="icons/page_white_copy.png" title="page_white_copy.png" alt="page white copy "/><em>page_white_copy.png</em></td>
986
+
987
+ <td><img src="icons/page_white_cplusplus.png" title="page_white_cplusplus.png" alt="page white cplusplus "/><em>page_white_cplusplus.png</em></td>
988
+ <td><img src="icons/page_white_csharp.png" title="page_white_csharp.png" alt="page white csharp "/><em>page_white_csharp.png</em></td>
989
+ <td><img src="icons/page_white_cup.png" title="page_white_cup.png" alt="page white cup "/><em>page_white_cup.png</em></td>
990
+ <td><img src="icons/page_white_database.png" title="page_white_database.png" alt="page white database "/><em>page_white_database.png</em></td>
991
+ <td><img src="icons/page_white_delete.png" title="page_white_delete.png" alt="page white delete "/><em>page_white_delete.png</em></td>
992
+ <td><img src="icons/page_white_dvd.png" title="page_white_dvd.png" alt="page white dvd "/><em>page_white_dvd.png</em></td>
993
+
994
+ <td><img src="icons/page_white_edit.png" title="page_white_edit.png" alt="page white edit "/><em>page_white_edit.png</em></td>
995
+ <td><img src="icons/page_white_error.png" title="page_white_error.png" alt="page white error "/><em>page_white_error.png</em></td>
996
+ </tr>
997
+ <tr>
998
+ <td><img src="icons/page_white_excel.png" title="page_white_excel.png" alt="page white excel "/><em>page_white_excel.png</em></td>
999
+ <td><img src="icons/page_white_find.png" title="page_white_find.png" alt="page white find "/><em>page_white_find.png</em></td>
1000
+ <td><img src="icons/page_white_flash.png" title="page_white_flash.png" alt="page white flash "/><em>page_white_flash.png</em></td>
1001
+
1002
+ <td><img src="icons/page_white_freehand.png" title="page_white_freehand.png" alt="page white freehand "/><em>page_white_freehand.png</em></td>
1003
+ <td><img src="icons/page_white_gear.png" title="page_white_gear.png" alt="page white gear "/><em>page_white_gear.png</em></td>
1004
+ <td><img src="icons/page_white_get.png" title="page_white_get.png" alt="page white get "/><em>page_white_get.png</em></td>
1005
+ <td><img src="icons/page_white_go.png" title="page_white_go.png" alt="page white go "/><em>page_white_go.png</em></td>
1006
+ <td><img src="icons/page_white_h.png" title="page_white_h.png" alt="page white h "/><em>page_white_h.png</em></td>
1007
+ <td><img src="icons/page_white_horizontal.png" title="page_white_horizontal.png" alt="page white horizontal "/><em>page_white_horizontal.png</em></td>
1008
+
1009
+ <td><img src="icons/page_white_key.png" title="page_white_key.png" alt="page white key "/><em>page_white_key.png</em></td>
1010
+ <td><img src="icons/page_white_lightning.png" title="page_white_lightning.png" alt="page white lightning "/><em>page_white_lightning.png</em></td>
1011
+ <td><img src="icons/page_white_link.png" title="page_white_link.png" alt="page white link "/><em>page_white_link.png</em></td>
1012
+ </tr>
1013
+ <tr>
1014
+ <td><img src="icons/page_white_magnify.png" title="page_white_magnify.png" alt="page white magnify "/><em>page_white_magnify.png</em></td>
1015
+ <td><img src="icons/page_white_medal.png" title="page_white_medal.png" alt="page white medal "/><em>page_white_medal.png</em></td>
1016
+
1017
+ <td><img src="icons/page_white_office.png" title="page_white_office.png" alt="page white office "/><em>page_white_office.png</em></td>
1018
+ <td><img src="icons/page_white_paint.png" title="page_white_paint.png" alt="page white paint "/><em>page_white_paint.png</em></td>
1019
+ <td><img src="icons/page_white_paintbrush.png" title="page_white_paintbrush.png" alt="page white paintbrush "/><em>page_white_paintbrush.png</em></td>
1020
+ <td><img src="icons/page_white_paste.png" title="page_white_paste.png" alt="page white paste "/><em>page_white_paste.png</em></td>
1021
+ <td><img src="icons/page_white_php.png" title="page_white_php.png" alt="page white php "/><em>page_white_php.png</em></td>
1022
+ <td><img src="icons/page_white_picture.png" title="page_white_picture.png" alt="page white picture "/><em>page_white_picture.png</em></td>
1023
+
1024
+ <td><img src="icons/page_white_powerpoint.png" title="page_white_powerpoint.png" alt="page white powerpoint "/><em>page_white_powerpoint.png</em></td>
1025
+ <td><img src="icons/page_white_put.png" title="page_white_put.png" alt="page white put "/><em>page_white_put.png</em></td>
1026
+ <td><img src="icons/page_white_ruby.png" title="page_white_ruby.png" alt="page white ruby "/><em>page_white_ruby.png</em></td>
1027
+ <td><img src="icons/page_white_stack.png" title="page_white_stack.png" alt="page white stack "/><em>page_white_stack.png</em></td>
1028
+ </tr>
1029
+ <tr>
1030
+ <td><img src="icons/page_white_star.png" title="page_white_star.png" alt="page white star "/><em>page_white_star.png</em></td>
1031
+
1032
+ <td><img src="icons/page_white_swoosh.png" title="page_white_swoosh.png" alt="page white swoosh "/><em>page_white_swoosh.png</em></td>
1033
+ <td><img src="icons/page_white_text.png" title="page_white_text.png" alt="page white text "/><em>page_white_text.png</em></td>
1034
+ <td><img src="icons/page_white_text_width.png" title="page_white_text_width.png" alt="page white text width "/><em>page_white_text_width.png</em></td>
1035
+ <td><img src="icons/page_white_tux.png" title="page_white_tux.png" alt="page white tux "/><em>page_white_tux.png</em></td>
1036
+ <td><img src="icons/page_white_vector.png" title="page_white_vector.png" alt="page white vector "/><em>page_white_vector.png</em></td>
1037
+ <td><img src="icons/page_white_visualstudio.png" title="page_white_visualstudio.png" alt="page white visualstudio "/><em>page_white_visualstudio.png</em></td>
1038
+
1039
+ <td><img src="icons/page_white_width.png" title="page_white_width.png" alt="page white width "/><em>page_white_width.png</em></td>
1040
+ <td><img src="icons/page_white_word.png" title="page_white_word.png" alt="page white word "/><em>page_white_word.png</em></td>
1041
+ <td><img src="icons/page_white_world.png" title="page_white_world.png" alt="page white world "/><em>page_white_world.png</em></td>
1042
+ <td><img src="icons/page_white_wrench.png" title="page_white_wrench.png" alt="page white wrench "/><em>page_white_wrench.png</em></td>
1043
+ <td><img src="icons/page_white_zip.png" title="page_white_zip.png" alt="page white zip "/><em>page_white_zip.png</em></td>
1044
+ </tr>
1045
+
1046
+ <tr>
1047
+ <td><img src="icons/page_word.png" title="page_word.png" alt="page word "/><em>page_word.png</em></td>
1048
+ <td><img src="icons/page_world.png" title="page_world.png" alt="page world "/><em>page_world.png</em></td>
1049
+ <td><img src="icons/paintbrush.png" title="paintbrush.png" alt="paintbrush "/><em>paintbrush.png</em></td>
1050
+ <td><img src="icons/paintcan.png" title="paintcan.png" alt="paintcan "/><em>paintcan.png</em></td>
1051
+ <td><img src="icons/palette.png" title="palette.png" alt="palette "/><em>palette.png</em></td>
1052
+
1053
+ <td><img src="icons/paste_plain.png" title="paste_plain.png" alt="paste plain "/><em>paste_plain.png</em></td>
1054
+ <td><img src="icons/paste_word.png" title="paste_word.png" alt="paste word "/><em>paste_word.png</em></td>
1055
+ <td><img src="icons/pencil.png" title="pencil.png" alt="pencil "/><em>pencil.png</em></td>
1056
+ <td><img src="icons/pencil_add.png" title="pencil_add.png" alt="pencil add "/><em>pencil_add.png</em></td>
1057
+ <td><img src="icons/pencil_delete.png" title="pencil_delete.png" alt="pencil delete "/><em>pencil_delete.png</em></td>
1058
+ <td><img src="icons/pencil_go.png" title="pencil_go.png" alt="pencil go "/><em>pencil_go.png</em></td>
1059
+
1060
+ <td><img src="icons/phone.png" title="phone.png" alt="phone "/><em>phone.png</em></td>
1061
+ </tr>
1062
+ <tr>
1063
+ <td><img src="icons/phone_add.png" title="phone_add.png" alt="phone add "/><em>phone_add.png</em></td>
1064
+ <td><img src="icons/phone_delete.png" title="phone_delete.png" alt="phone delete "/><em>phone_delete.png</em></td>
1065
+ <td><img src="icons/phone_sound.png" title="phone_sound.png" alt="phone sound "/><em>phone_sound.png</em></td>
1066
+ <td><img src="icons/photo.png" title="photo.png" alt="photo "/><em>photo.png</em></td>
1067
+
1068
+ <td><img src="icons/photo_add.png" title="photo_add.png" alt="photo add "/><em>photo_add.png</em></td>
1069
+ <td><img src="icons/photo_delete.png" title="photo_delete.png" alt="photo delete "/><em>photo_delete.png</em></td>
1070
+ <td><img src="icons/photo_link.png" title="photo_link.png" alt="photo link "/><em>photo_link.png</em></td>
1071
+ <td><img src="icons/photos.png" title="photos.png" alt="photos "/><em>photos.png</em></td>
1072
+ <td><img src="icons/picture.png" title="picture.png" alt="picture "/><em>picture.png</em></td>
1073
+ <td><img src="icons/picture_add.png" title="picture_add.png" alt="picture add "/><em>picture_add.png</em></td>
1074
+
1075
+ <td><img src="icons/picture_delete.png" title="picture_delete.png" alt="picture delete "/><em>picture_delete.png</em></td>
1076
+ <td><img src="icons/picture_edit.png" title="picture_edit.png" alt="picture edit "/><em>picture_edit.png</em></td>
1077
+ </tr>
1078
+ <tr>
1079
+ <td><img src="icons/picture_empty.png" title="picture_empty.png" alt="picture empty "/><em>picture_empty.png</em></td>
1080
+ <td><img src="icons/picture_error.png" title="picture_error.png" alt="picture error "/><em>picture_error.png</em></td>
1081
+ <td><img src="icons/picture_go.png" title="picture_go.png" alt="picture go "/><em>picture_go.png</em></td>
1082
+
1083
+ <td><img src="icons/picture_key.png" title="picture_key.png" alt="picture key "/><em>picture_key.png</em></td>
1084
+ <td><img src="icons/picture_link.png" title="picture_link.png" alt="picture link "/><em>picture_link.png</em></td>
1085
+ <td><img src="icons/picture_save.png" title="picture_save.png" alt="picture save "/><em>picture_save.png</em></td>
1086
+ <td><img src="icons/pictures.png" title="pictures.png" alt="pictures "/><em>pictures.png</em></td>
1087
+ <td><img src="icons/pilcrow.png" title="pilcrow.png" alt="pilcrow "/><em>pilcrow.png</em></td>
1088
+ <td><img src="icons/pill.png" title="pill.png" alt="pill "/><em>pill.png</em></td>
1089
+
1090
+ <td><img src="icons/pill_add.png" title="pill_add.png" alt="pill add "/><em>pill_add.png</em></td>
1091
+ <td><img src="icons/pill_delete.png" title="pill_delete.png" alt="pill delete "/><em>pill_delete.png</em></td>
1092
+ <td><img src="icons/pill_go.png" title="pill_go.png" alt="pill go "/><em>pill_go.png</em></td>
1093
+ </tr>
1094
+ <tr>
1095
+ <td><img src="icons/plugin.png" title="plugin.png" alt="plugin "/><em>plugin.png</em></td>
1096
+ <td><img src="icons/plugin_add.png" title="plugin_add.png" alt="plugin add "/><em>plugin_add.png</em></td>
1097
+
1098
+ <td><img src="icons/plugin_delete.png" title="plugin_delete.png" alt="plugin delete "/><em>plugin_delete.png</em></td>
1099
+ <td><img src="icons/plugin_disabled.png" title="plugin_disabled.png" alt="plugin disabled "/><em>plugin_disabled.png</em></td>
1100
+ <td><img src="icons/plugin_edit.png" title="plugin_edit.png" alt="plugin edit "/><em>plugin_edit.png</em></td>
1101
+ <td><img src="icons/plugin_error.png" title="plugin_error.png" alt="plugin error "/><em>plugin_error.png</em></td>
1102
+ <td><img src="icons/plugin_go.png" title="plugin_go.png" alt="plugin go "/><em>plugin_go.png</em></td>
1103
+ <td><img src="icons/plugin_link.png" title="plugin_link.png" alt="plugin link "/><em>plugin_link.png</em></td>
1104
+
1105
+ <td><img src="icons/printer.png" title="printer.png" alt="printer "/><em>printer.png</em></td>
1106
+ <td><img src="icons/printer_add.png" title="printer_add.png" alt="printer add "/><em>printer_add.png</em></td>
1107
+ <td><img src="icons/printer_delete.png" title="printer_delete.png" alt="printer delete "/><em>printer_delete.png</em></td>
1108
+ <td><img src="icons/printer_empty.png" title="printer_empty.png" alt="printer empty "/><em>printer_empty.png</em></td>
1109
+ </tr>
1110
+ <tr>
1111
+ <td><img src="icons/printer_error.png" title="printer_error.png" alt="printer error "/><em>printer_error.png</em></td>
1112
+
1113
+ <td><img src="icons/rainbow.png" title="rainbow.png" alt="rainbow "/><em>rainbow.png</em></td>
1114
+ <td><img src="icons/report.png" title="report.png" alt="report "/><em>report.png</em></td>
1115
+ <td><img src="icons/report_add.png" title="report_add.png" alt="report add "/><em>report_add.png</em></td>
1116
+ <td><img src="icons/report_delete.png" title="report_delete.png" alt="report delete "/><em>report_delete.png</em></td>
1117
+ <td><img src="icons/report_disk.png" title="report_disk.png" alt="report disk "/><em>report_disk.png</em></td>
1118
+ <td><img src="icons/report_edit.png" title="report_edit.png" alt="report edit "/><em>report_edit.png</em></td>
1119
+
1120
+ <td><img src="icons/report_go.png" title="report_go.png" alt="report go "/><em>report_go.png</em></td>
1121
+ <td><img src="icons/report_key.png" title="report_key.png" alt="report key "/><em>report_key.png</em></td>
1122
+ <td><img src="icons/report_link.png" title="report_link.png" alt="report link "/><em>report_link.png</em></td>
1123
+ <td><img src="icons/report_magnify.png" title="report_magnify.png" alt="report magnify "/><em>report_magnify.png</em></td>
1124
+ <td><img src="icons/report_picture.png" title="report_picture.png" alt="report picture "/><em>report_picture.png</em></td>
1125
+ </tr>
1126
+
1127
+ <tr>
1128
+ <td><img src="icons/report_user.png" title="report_user.png" alt="report user "/><em>report_user.png</em></td>
1129
+ <td><img src="icons/report_word.png" title="report_word.png" alt="report word "/><em>report_word.png</em></td>
1130
+ <td><img src="icons/resultset_first.png" title="resultset_first.png" alt="resultset first "/><em>resultset_first.png</em></td>
1131
+ <td><img src="icons/resultset_last.png" title="resultset_last.png" alt="resultset last "/><em>resultset_last.png</em></td>
1132
+ <td><img src="icons/resultset_next.png" title="resultset_next.png" alt="resultset next "/><em>resultset_next.png</em></td>
1133
+
1134
+ <td><img src="icons/resultset_previous.png" title="resultset_previous.png" alt="resultset previous "/><em>resultset_previous.png</em></td>
1135
+ <td><img src="icons/rosette.png" title="rosette.png" alt="rosette "/><em>rosette.png</em></td>
1136
+ <td><img src="icons/rss.png" title="rss.png" alt="rss "/><em>rss.png</em></td>
1137
+ <td><img src="icons/rss_add.png" title="rss_add.png" alt="rss add "/><em>rss_add.png</em></td>
1138
+ <td><img src="icons/rss_delete.png" title="rss_delete.png" alt="rss delete "/><em>rss_delete.png</em></td>
1139
+ <td><img src="icons/rss_go.png" title="rss_go.png" alt="rss go "/><em>rss_go.png</em></td>
1140
+
1141
+ <td><img src="icons/rss_valid.png" title="rss_valid.png" alt="rss valid "/><em>rss_valid.png</em></td>
1142
+ </tr>
1143
+ <tr>
1144
+ <td><img src="icons/ruby.png" title="ruby.png" alt="ruby "/><em>ruby.png</em></td>
1145
+ <td><img src="icons/ruby_add.png" title="ruby_add.png" alt="ruby add "/><em>ruby_add.png</em></td>
1146
+ <td><img src="icons/ruby_delete.png" title="ruby_delete.png" alt="ruby delete "/><em>ruby_delete.png</em></td>
1147
+ <td><img src="icons/ruby_gear.png" title="ruby_gear.png" alt="ruby gear "/><em>ruby_gear.png</em></td>
1148
+
1149
+ <td><img src="icons/ruby_get.png" title="ruby_get.png" alt="ruby get "/><em>ruby_get.png</em></td>
1150
+ <td><img src="icons/ruby_go.png" title="ruby_go.png" alt="ruby go "/><em>ruby_go.png</em></td>
1151
+ <td><img src="icons/ruby_key.png" title="ruby_key.png" alt="ruby key "/><em>ruby_key.png</em></td>
1152
+ <td><img src="icons/ruby_link.png" title="ruby_link.png" alt="ruby link "/><em>ruby_link.png</em></td>
1153
+ <td><img src="icons/ruby_put.png" title="ruby_put.png" alt="ruby put "/><em>ruby_put.png</em></td>
1154
+ <td><img src="icons/script.png" title="script.png" alt="script "/><em>script.png</em></td>
1155
+
1156
+ <td><img src="icons/script_add.png" title="script_add.png" alt="script add "/><em>script_add.png</em></td>
1157
+ <td><img src="icons/script_code.png" title="script_code.png" alt="script code "/><em>script_code.png</em></td>
1158
+ </tr>
1159
+ <tr>
1160
+ <td><img src="icons/script_code_red.png" title="script_code_red.png" alt="script code red "/><em>script_code_red.png</em></td>
1161
+ <td><img src="icons/script_delete.png" title="script_delete.png" alt="script delete "/><em>script_delete.png</em></td>
1162
+ <td><img src="icons/script_edit.png" title="script_edit.png" alt="script edit "/><em>script_edit.png</em></td>
1163
+
1164
+ <td><img src="icons/script_error.png" title="script_error.png" alt="script error "/><em>script_error.png</em></td>
1165
+ <td><img src="icons/script_gear.png" title="script_gear.png" alt="script gear "/><em>script_gear.png</em></td>
1166
+ <td><img src="icons/script_go.png" title="script_go.png" alt="script go "/><em>script_go.png</em></td>
1167
+ <td><img src="icons/script_key.png" title="script_key.png" alt="script key "/><em>script_key.png</em></td>
1168
+ <td><img src="icons/script_lightning.png" title="script_lightning.png" alt="script lightning "/><em>script_lightning.png</em></td>
1169
+ <td><img src="icons/script_link.png" title="script_link.png" alt="script link "/><em>script_link.png</em></td>
1170
+
1171
+ <td><img src="icons/script_palette.png" title="script_palette.png" alt="script palette "/><em>script_palette.png</em></td>
1172
+ <td><img src="icons/script_save.png" title="script_save.png" alt="script save "/><em>script_save.png</em></td>
1173
+ <td><img src="icons/server.png" title="server.png" alt="server "/><em>server.png</em></td>
1174
+ </tr>
1175
+ <tr>
1176
+ <td><img src="icons/server_add.png" title="server_add.png" alt="server add "/><em>server_add.png</em></td>
1177
+ <td><img src="icons/server_chart.png" title="server_chart.png" alt="server chart "/><em>server_chart.png</em></td>
1178
+
1179
+ <td><img src="icons/server_compressed.png" title="server_compressed.png" alt="server compressed "/><em>server_compressed.png</em></td>
1180
+ <td><img src="icons/server_connect.png" title="server_connect.png" alt="server connect "/><em>server_connect.png</em></td>
1181
+ <td><img src="icons/server_database.png" title="server_database.png" alt="server database "/><em>server_database.png</em></td>
1182
+ <td><img src="icons/server_delete.png" title="server_delete.png" alt="server delete "/><em>server_delete.png</em></td>
1183
+ <td><img src="icons/server_edit.png" title="server_edit.png" alt="server edit "/><em>server_edit.png</em></td>
1184
+ <td><img src="icons/server_error.png" title="server_error.png" alt="server error "/><em>server_error.png</em></td>
1185
+
1186
+ <td><img src="icons/server_go.png" title="server_go.png" alt="server go "/><em>server_go.png</em></td>
1187
+ <td><img src="icons/server_key.png" title="server_key.png" alt="server key "/><em>server_key.png</em></td>
1188
+ <td><img src="icons/server_lightning.png" title="server_lightning.png" alt="server lightning "/><em>server_lightning.png</em></td>
1189
+ <td><img src="icons/server_link.png" title="server_link.png" alt="server link "/><em>server_link.png</em></td>
1190
+ </tr>
1191
+ <tr>
1192
+ <td><img src="icons/server_uncompressed.png" title="server_uncompressed.png" alt="server uncompressed "/><em>server_uncompressed.png</em></td>
1193
+
1194
+ <td><img src="icons/shading.png" title="shading.png" alt="shading "/><em>shading.png</em></td>
1195
+ <td><img src="icons/shape_align_bottom.png" title="shape_align_bottom.png" alt="shape align bottom "/><em>shape_align_bottom.png</em></td>
1196
+ <td><img src="icons/shape_align_center.png" title="shape_align_center.png" alt="shape align center "/><em>shape_align_center.png</em></td>
1197
+ <td><img src="icons/shape_align_left.png" title="shape_align_left.png" alt="shape align left "/><em>shape_align_left.png</em></td>
1198
+ <td><img src="icons/shape_align_middle.png" title="shape_align_middle.png" alt="shape align middle "/><em>shape_align_middle.png</em></td>
1199
+ <td><img src="icons/shape_align_right.png" title="shape_align_right.png" alt="shape align right "/><em>shape_align_right.png</em></td>
1200
+
1201
+ <td><img src="icons/shape_align_top.png" title="shape_align_top.png" alt="shape align top "/><em>shape_align_top.png</em></td>
1202
+ <td><img src="icons/shape_flip_horizontal.png" title="shape_flip_horizontal.png" alt="shape flip horizontal "/><em>shape_flip_horizontal.png</em></td>
1203
+ <td><img src="icons/shape_flip_vertical.png" title="shape_flip_vertical.png" alt="shape flip vertical "/><em>shape_flip_vertical.png</em></td>
1204
+ <td><img src="icons/shape_group.png" title="shape_group.png" alt="shape group "/><em>shape_group.png</em></td>
1205
+ <td><img src="icons/shape_handles.png" title="shape_handles.png" alt="shape handles "/><em>shape_handles.png</em></td>
1206
+ </tr>
1207
+
1208
+ <tr>
1209
+ <td><img src="icons/shape_move_back.png" title="shape_move_back.png" alt="shape move back "/><em>shape_move_back.png</em></td>
1210
+ <td><img src="icons/shape_move_backwards.png" title="shape_move_backwards.png" alt="shape move backwards "/><em>shape_move_backwards.png</em></td>
1211
+ <td><img src="icons/shape_move_forwards.png" title="shape_move_forwards.png" alt="shape move forwards "/><em>shape_move_forwards.png</em></td>
1212
+ <td><img src="icons/shape_move_front.png" title="shape_move_front.png" alt="shape move front "/><em>shape_move_front.png</em></td>
1213
+ <td><img src="icons/shape_rotate_anticlockwise.png" title="shape_rotate_anticlockwise.png" alt="shape rotate anticlockwise "/><em>shape_rotate_anticlockwise.png</em></td>
1214
+
1215
+ <td><img src="icons/shape_rotate_clockwise.png" title="shape_rotate_clockwise.png" alt="shape rotate clockwise "/><em>shape_rotate_clockwise.png</em></td>
1216
+ <td><img src="icons/shape_square.png" title="shape_square.png" alt="shape square "/><em>shape_square.png</em></td>
1217
+ <td><img src="icons/shape_square_add.png" title="shape_square_add.png" alt="shape square add "/><em>shape_square_add.png</em></td>
1218
+ <td><img src="icons/shape_square_delete.png" title="shape_square_delete.png" alt="shape square delete "/><em>shape_square_delete.png</em></td>
1219
+ <td><img src="icons/shape_square_edit.png" title="shape_square_edit.png" alt="shape square edit "/><em>shape_square_edit.png</em></td>
1220
+ <td><img src="icons/shape_square_error.png" title="shape_square_error.png" alt="shape square error "/><em>shape_square_error.png</em></td>
1221
+
1222
+ <td><img src="icons/shape_square_go.png" title="shape_square_go.png" alt="shape square go "/><em>shape_square_go.png</em></td>
1223
+ </tr>
1224
+ <tr>
1225
+ <td><img src="icons/shape_square_key.png" title="shape_square_key.png" alt="shape square key "/><em>shape_square_key.png</em></td>
1226
+ <td><img src="icons/shape_square_link.png" title="shape_square_link.png" alt="shape square link "/><em>shape_square_link.png</em></td>
1227
+ <td><img src="icons/shape_ungroup.png" title="shape_ungroup.png" alt="shape ungroup "/><em>shape_ungroup.png</em></td>
1228
+ <td><img src="icons/shield.png" title="shield.png" alt="shield "/><em>shield.png</em></td>
1229
+
1230
+ <td><img src="icons/shield_add.png" title="shield_add.png" alt="shield add "/><em>shield_add.png</em></td>
1231
+ <td><img src="icons/shield_delete.png" title="shield_delete.png" alt="shield delete "/><em>shield_delete.png</em></td>
1232
+ <td><img src="icons/shield_go.png" title="shield_go.png" alt="shield go "/><em>shield_go.png</em></td>
1233
+ <td><img src="icons/sitemap.png" title="sitemap.png" alt="sitemap "/><em>sitemap.png</em></td>
1234
+ <td><img src="icons/sitemap_color.png" title="sitemap_color.png" alt="sitemap color "/><em>sitemap_color.png</em></td>
1235
+ <td><img src="icons/sound.png" title="sound.png" alt="sound "/><em>sound.png</em></td>
1236
+
1237
+ <td><img src="icons/sound_add.png" title="sound_add.png" alt="sound add "/><em>sound_add.png</em></td>
1238
+ <td><img src="icons/sound_delete.png" title="sound_delete.png" alt="sound delete "/><em>sound_delete.png</em></td>
1239
+ </tr>
1240
+ <tr>
1241
+ <td><img src="icons/sound_low.png" title="sound_low.png" alt="sound low "/><em>sound_low.png</em></td>
1242
+ <td><img src="icons/sound_mute.png" title="sound_mute.png" alt="sound mute "/><em>sound_mute.png</em></td>
1243
+ <td><img src="icons/sound_none.png" title="sound_none.png" alt="sound none "/><em>sound_none.png</em></td>
1244
+
1245
+ <td><img src="icons/spellcheck.png" title="spellcheck.png" alt="spellcheck "/><em>spellcheck.png</em></td>
1246
+ <td><img src="icons/sport_8ball.png" title="sport_8ball.png" alt="sport 8ball "/><em>sport_8ball.png</em></td>
1247
+ <td><img src="icons/sport_basketball.png" title="sport_basketball.png" alt="sport basketball "/><em>sport_basketball.png</em></td>
1248
+ <td><img src="icons/sport_football.png" title="sport_football.png" alt="sport football "/><em>sport_football.png</em></td>
1249
+ <td><img src="icons/sport_golf.png" title="sport_golf.png" alt="sport golf "/><em>sport_golf.png</em></td>
1250
+ <td><img src="icons/sport_raquet.png" title="sport_raquet.png" alt="sport raquet "/><em>sport_raquet.png</em></td>
1251
+
1252
+ <td><img src="icons/sport_shuttlecock.png" title="sport_shuttlecock.png" alt="sport shuttlecock "/><em>sport_shuttlecock.png</em></td>
1253
+ <td><img src="icons/sport_soccer.png" title="sport_soccer.png" alt="sport soccer "/><em>sport_soccer.png</em></td>
1254
+ <td><img src="icons/sport_tennis.png" title="sport_tennis.png" alt="sport tennis "/><em>sport_tennis.png</em></td>
1255
+ </tr>
1256
+ <tr>
1257
+ <td><img src="icons/star.png" title="star.png" alt="star "/><em>star.png</em></td>
1258
+ <td><img src="icons/status_away.png" title="status_away.png" alt="status away "/><em>status_away.png</em></td>
1259
+
1260
+ <td><img src="icons/status_busy.png" title="status_busy.png" alt="status busy "/><em>status_busy.png</em></td>
1261
+ <td><img src="icons/status_offline.png" title="status_offline.png" alt="status offline "/><em>status_offline.png</em></td>
1262
+ <td><img src="icons/status_online.png" title="status_online.png" alt="status online "/><em>status_online.png</em></td>
1263
+ <td><img src="icons/stop.png" title="stop.png" alt="stop "/><em>stop.png</em></td>
1264
+ <td><img src="icons/style.png" title="style.png" alt="style "/><em>style.png</em></td>
1265
+ <td><img src="icons/style_add.png" title="style_add.png" alt="style add "/><em>style_add.png</em></td>
1266
+
1267
+ <td><img src="icons/style_delete.png" title="style_delete.png" alt="style delete "/><em>style_delete.png</em></td>
1268
+ <td><img src="icons/style_edit.png" title="style_edit.png" alt="style edit "/><em>style_edit.png</em></td>
1269
+ <td><img src="icons/style_go.png" title="style_go.png" alt="style go "/><em>style_go.png</em></td>
1270
+ <td><img src="icons/sum.png" title="sum.png" alt="sum "/><em>sum.png</em></td>
1271
+ </tr>
1272
+ <tr>
1273
+ <td><img src="icons/tab.png" title="tab.png" alt="tab "/><em>tab.png</em></td>
1274
+
1275
+ <td><img src="icons/tab_add.png" title="tab_add.png" alt="tab add "/><em>tab_add.png</em></td>
1276
+ <td><img src="icons/tab_delete.png" title="tab_delete.png" alt="tab delete "/><em>tab_delete.png</em></td>
1277
+ <td><img src="icons/tab_edit.png" title="tab_edit.png" alt="tab edit "/><em>tab_edit.png</em></td>
1278
+ <td><img src="icons/tab_go.png" title="tab_go.png" alt="tab go "/><em>tab_go.png</em></td>
1279
+ <td><img src="icons/table.png" title="table.png" alt="table "/><em>table.png</em></td>
1280
+ <td><img src="icons/table_add.png" title="table_add.png" alt="table add "/><em>table_add.png</em></td>
1281
+
1282
+ <td><img src="icons/table_delete.png" title="table_delete.png" alt="table delete "/><em>table_delete.png</em></td>
1283
+ <td><img src="icons/table_edit.png" title="table_edit.png" alt="table edit "/><em>table_edit.png</em></td>
1284
+ <td><img src="icons/table_error.png" title="table_error.png" alt="table error "/><em>table_error.png</em></td>
1285
+ <td><img src="icons/table_gear.png" title="table_gear.png" alt="table gear "/><em>table_gear.png</em></td>
1286
+ <td><img src="icons/table_go.png" title="table_go.png" alt="table go "/><em>table_go.png</em></td>
1287
+ </tr>
1288
+
1289
+ <tr>
1290
+ <td><img src="icons/table_key.png" title="table_key.png" alt="table key "/><em>table_key.png</em></td>
1291
+ <td><img src="icons/table_lightning.png" title="table_lightning.png" alt="table lightning "/><em>table_lightning.png</em></td>
1292
+ <td><img src="icons/table_link.png" title="table_link.png" alt="table link "/><em>table_link.png</em></td>
1293
+ <td><img src="icons/table_multiple.png" title="table_multiple.png" alt="table multiple "/><em>table_multiple.png</em></td>
1294
+ <td><img src="icons/table_refresh.png" title="table_refresh.png" alt="table refresh "/><em>table_refresh.png</em></td>
1295
+
1296
+ <td><img src="icons/table_relationship.png" title="table_relationship.png" alt="table relationship "/><em>table_relationship.png</em></td>
1297
+ <td><img src="icons/table_row_delete.png" title="table_row_delete.png" alt="table row delete "/><em>table_row_delete.png</em></td>
1298
+ <td><img src="icons/table_row_insert.png" title="table_row_insert.png" alt="table row insert "/><em>table_row_insert.png</em></td>
1299
+ <td><img src="icons/table_save.png" title="table_save.png" alt="table save "/><em>table_save.png</em></td>
1300
+ <td><img src="icons/table_sort.png" title="table_sort.png" alt="table sort "/><em>table_sort.png</em></td>
1301
+ <td><img src="icons/tag.png" title="tag.png" alt="tag "/><em>tag.png</em></td>
1302
+
1303
+ <td><img src="icons/tag_blue.png" title="tag_blue.png" alt="tag blue "/><em>tag_blue.png</em></td>
1304
+ </tr>
1305
+ <tr>
1306
+ <td><img src="icons/tag_blue_add.png" title="tag_blue_add.png" alt="tag blue add "/><em>tag_blue_add.png</em></td>
1307
+ <td><img src="icons/tag_blue_delete.png" title="tag_blue_delete.png" alt="tag blue delete "/><em>tag_blue_delete.png</em></td>
1308
+ <td><img src="icons/tag_blue_edit.png" title="tag_blue_edit.png" alt="tag blue edit "/><em>tag_blue_edit.png</em></td>
1309
+ <td><img src="icons/tag_green.png" title="tag_green.png" alt="tag green "/><em>tag_green.png</em></td>
1310
+
1311
+ <td><img src="icons/tag_orange.png" title="tag_orange.png" alt="tag orange "/><em>tag_orange.png</em></td>
1312
+ <td><img src="icons/tag_pink.png" title="tag_pink.png" alt="tag pink "/><em>tag_pink.png</em></td>
1313
+ <td><img src="icons/tag_purple.png" title="tag_purple.png" alt="tag purple "/><em>tag_purple.png</em></td>
1314
+ <td><img src="icons/tag_red.png" title="tag_red.png" alt="tag red "/><em>tag_red.png</em></td>
1315
+ <td><img src="icons/tag_yellow.png" title="tag_yellow.png" alt="tag yellow "/><em>tag_yellow.png</em></td>
1316
+ <td><img src="icons/telephone.png" title="telephone.png" alt="telephone "/><em>telephone.png</em></td>
1317
+
1318
+ <td><img src="icons/telephone_add.png" title="telephone_add.png" alt="telephone add "/><em>telephone_add.png</em></td>
1319
+ <td><img src="icons/telephone_delete.png" title="telephone_delete.png" alt="telephone delete "/><em>telephone_delete.png</em></td>
1320
+ </tr>
1321
+ <tr>
1322
+ <td><img src="icons/telephone_edit.png" title="telephone_edit.png" alt="telephone edit "/><em>telephone_edit.png</em></td>
1323
+ <td><img src="icons/telephone_error.png" title="telephone_error.png" alt="telephone error "/><em>telephone_error.png</em></td>
1324
+ <td><img src="icons/telephone_go.png" title="telephone_go.png" alt="telephone go "/><em>telephone_go.png</em></td>
1325
+
1326
+ <td><img src="icons/telephone_key.png" title="telephone_key.png" alt="telephone key "/><em>telephone_key.png</em></td>
1327
+ <td><img src="icons/telephone_link.png" title="telephone_link.png" alt="telephone link "/><em>telephone_link.png</em></td>
1328
+ <td><img src="icons/television.png" title="television.png" alt="television "/><em>television.png</em></td>
1329
+ <td><img src="icons/television_add.png" title="television_add.png" alt="television add "/><em>television_add.png</em></td>
1330
+ <td><img src="icons/television_delete.png" title="television_delete.png" alt="television delete "/><em>television_delete.png</em></td>
1331
+ <td><img src="icons/text_align_center.png" title="text_align_center.png" alt="text align center "/><em>text_align_center.png</em></td>
1332
+
1333
+ <td><img src="icons/text_align_justify.png" title="text_align_justify.png" alt="text align justify "/><em>text_align_justify.png</em></td>
1334
+ <td><img src="icons/text_align_left.png" title="text_align_left.png" alt="text align left "/><em>text_align_left.png</em></td>
1335
+ <td><img src="icons/text_align_right.png" title="text_align_right.png" alt="text align right "/><em>text_align_right.png</em></td>
1336
+ </tr>
1337
+ <tr>
1338
+ <td><img src="icons/text_allcaps.png" title="text_allcaps.png" alt="text allcaps "/><em>text_allcaps.png</em></td>
1339
+ <td><img src="icons/text_bold.png" title="text_bold.png" alt="text bold "/><em>text_bold.png</em></td>
1340
+
1341
+ <td><img src="icons/text_columns.png" title="text_columns.png" alt="text columns "/><em>text_columns.png</em></td>
1342
+ <td><img src="icons/text_dropcaps.png" title="text_dropcaps.png" alt="text dropcaps "/><em>text_dropcaps.png</em></td>
1343
+ <td><img src="icons/text_heading_1.png" title="text_heading_1.png" alt="text heading 1 "/><em>text_heading_1.png</em></td>
1344
+ <td><img src="icons/text_heading_2.png" title="text_heading_2.png" alt="text heading 2 "/><em>text_heading_2.png</em></td>
1345
+ <td><img src="icons/text_heading_3.png" title="text_heading_3.png" alt="text heading 3 "/><em>text_heading_3.png</em></td>
1346
+ <td><img src="icons/text_heading_4.png" title="text_heading_4.png" alt="text heading 4 "/><em>text_heading_4.png</em></td>
1347
+
1348
+ <td><img src="icons/text_heading_5.png" title="text_heading_5.png" alt="text heading 5 "/><em>text_heading_5.png</em></td>
1349
+ <td><img src="icons/text_heading_6.png" title="text_heading_6.png" alt="text heading 6 "/><em>text_heading_6.png</em></td>
1350
+ <td><img src="icons/text_horizontalrule.png" title="text_horizontalrule.png" alt="text horizontalrule "/><em>text_horizontalrule.png</em></td>
1351
+ <td><img src="icons/text_indent.png" title="text_indent.png" alt="text indent "/><em>text_indent.png</em></td>
1352
+ </tr>
1353
+ <tr>
1354
+ <td><img src="icons/text_indent_remove.png" title="text_indent_remove.png" alt="text indent remove "/><em>text_indent_remove.png</em></td>
1355
+
1356
+ <td><img src="icons/text_italic.png" title="text_italic.png" alt="text italic "/><em>text_italic.png</em></td>
1357
+ <td><img src="icons/text_kerning.png" title="text_kerning.png" alt="text kerning "/><em>text_kerning.png</em></td>
1358
+ <td><img src="icons/text_letter_omega.png" title="text_letter_omega.png" alt="text letter omega "/><em>text_letter_omega.png</em></td>
1359
+ <td><img src="icons/text_letterspacing.png" title="text_letterspacing.png" alt="text letterspacing "/><em>text_letterspacing.png</em></td>
1360
+ <td><img src="icons/text_linespacing.png" title="text_linespacing.png" alt="text linespacing "/><em>text_linespacing.png</em></td>
1361
+ <td><img src="icons/text_list_bullets.png" title="text_list_bullets.png" alt="text list bullets "/><em>text_list_bullets.png</em></td>
1362
+
1363
+ <td><img src="icons/text_list_numbers.png" title="text_list_numbers.png" alt="text list numbers "/><em>text_list_numbers.png</em></td>
1364
+ <td><img src="icons/text_lowercase.png" title="text_lowercase.png" alt="text lowercase "/><em>text_lowercase.png</em></td>
1365
+ <td><img src="icons/text_padding_bottom.png" title="text_padding_bottom.png" alt="text padding bottom "/><em>text_padding_bottom.png</em></td>
1366
+ <td><img src="icons/text_padding_left.png" title="text_padding_left.png" alt="text padding left "/><em>text_padding_left.png</em></td>
1367
+ <td><img src="icons/text_padding_right.png" title="text_padding_right.png" alt="text padding right "/><em>text_padding_right.png</em></td>
1368
+ </tr>
1369
+
1370
+ <tr>
1371
+ <td><img src="icons/text_padding_top.png" title="text_padding_top.png" alt="text padding top "/><em>text_padding_top.png</em></td>
1372
+ <td><img src="icons/text_replace.png" title="text_replace.png" alt="text replace "/><em>text_replace.png</em></td>
1373
+ <td><img src="icons/text_signature.png" title="text_signature.png" alt="text signature "/><em>text_signature.png</em></td>
1374
+ <td><img src="icons/text_smallcaps.png" title="text_smallcaps.png" alt="text smallcaps "/><em>text_smallcaps.png</em></td>
1375
+ <td><img src="icons/text_strikethrough.png" title="text_strikethrough.png" alt="text strikethrough "/><em>text_strikethrough.png</em></td>
1376
+
1377
+ <td><img src="icons/text_subscript.png" title="text_subscript.png" alt="text subscript "/><em>text_subscript.png</em></td>
1378
+ <td><img src="icons/text_superscript.png" title="text_superscript.png" alt="text superscript "/><em>text_superscript.png</em></td>
1379
+ <td><img src="icons/text_underline.png" title="text_underline.png" alt="text underline "/><em>text_underline.png</em></td>
1380
+ <td><img src="icons/text_uppercase.png" title="text_uppercase.png" alt="text uppercase "/><em>text_uppercase.png</em></td>
1381
+ <td><img src="icons/textfield.png" title="textfield.png" alt="textfield "/><em>textfield.png</em></td>
1382
+ <td><img src="icons/textfield_add.png" title="textfield_add.png" alt="textfield add "/><em>textfield_add.png</em></td>
1383
+
1384
+ <td><img src="icons/textfield_delete.png" title="textfield_delete.png" alt="textfield delete "/><em>textfield_delete.png</em></td>
1385
+ </tr>
1386
+ <tr>
1387
+ <td><img src="icons/textfield_key.png" title="textfield_key.png" alt="textfield key "/><em>textfield_key.png</em></td>
1388
+ <td><img src="icons/textfield_rename.png" title="textfield_rename.png" alt="textfield rename "/><em>textfield_rename.png</em></td>
1389
+ <td><img src="icons/thumb_down.png" title="thumb_down.png" alt="thumb down "/><em>thumb_down.png</em></td>
1390
+ <td><img src="icons/thumb_up.png" title="thumb_up.png" alt="thumb up "/><em>thumb_up.png</em></td>
1391
+
1392
+ <td><img src="icons/tick.png" title="tick.png" alt="tick "/><em>tick.png</em></td>
1393
+ <td><img src="icons/time.png" title="time.png" alt="time "/><em>time.png</em></td>
1394
+ <td><img src="icons/time_add.png" title="time_add.png" alt="time add "/><em>time_add.png</em></td>
1395
+ <td><img src="icons/time_delete.png" title="time_delete.png" alt="time delete "/><em>time_delete.png</em></td>
1396
+ <td><img src="icons/time_go.png" title="time_go.png" alt="time go "/><em>time_go.png</em></td>
1397
+ <td><img src="icons/timeline_marker.png" title="timeline_marker.png" alt="timeline marker "/><em>timeline_marker.png</em></td>
1398
+
1399
+ <td><img src="icons/transmit.png" title="transmit.png" alt="transmit "/><em>transmit.png</em></td>
1400
+ <td><img src="icons/transmit_add.png" title="transmit_add.png" alt="transmit add "/><em>transmit_add.png</em></td>
1401
+ </tr>
1402
+ <tr>
1403
+ <td><img src="icons/transmit_blue.png" title="transmit_blue.png" alt="transmit blue "/><em>transmit_blue.png</em></td>
1404
+ <td><img src="icons/transmit_delete.png" title="transmit_delete.png" alt="transmit delete "/><em>transmit_delete.png</em></td>
1405
+ <td><img src="icons/transmit_edit.png" title="transmit_edit.png" alt="transmit edit "/><em>transmit_edit.png</em></td>
1406
+
1407
+ <td><img src="icons/transmit_error.png" title="transmit_error.png" alt="transmit error "/><em>transmit_error.png</em></td>
1408
+ <td><img src="icons/transmit_go.png" title="transmit_go.png" alt="transmit go "/><em>transmit_go.png</em></td>
1409
+ <td><img src="icons/tux.png" title="tux.png" alt="tux "/><em>tux.png</em></td>
1410
+ <td><img src="icons/user.png" title="user.png" alt="user "/><em>user.png</em></td>
1411
+ <td><img src="icons/user_add.png" title="user_add.png" alt="user add "/><em>user_add.png</em></td>
1412
+ <td><img src="icons/user_comment.png" title="user_comment.png" alt="user comment "/><em>user_comment.png</em></td>
1413
+
1414
+ <td><img src="icons/user_delete.png" title="user_delete.png" alt="user delete "/><em>user_delete.png</em></td>
1415
+ <td><img src="icons/user_edit.png" title="user_edit.png" alt="user edit "/><em>user_edit.png</em></td>
1416
+ <td><img src="icons/user_female.png" title="user_female.png" alt="user female "/><em>user_female.png</em></td>
1417
+ </tr>
1418
+ <tr>
1419
+ <td><img src="icons/user_go.png" title="user_go.png" alt="user go "/><em>user_go.png</em></td>
1420
+ <td><img src="icons/user_gray.png" title="user_gray.png" alt="user gray "/><em>user_gray.png</em></td>
1421
+
1422
+ <td><img src="icons/user_green.png" title="user_green.png" alt="user green "/><em>user_green.png</em></td>
1423
+ <td><img src="icons/user_orange.png" title="user_orange.png" alt="user orange "/><em>user_orange.png</em></td>
1424
+ <td><img src="icons/user_red.png" title="user_red.png" alt="user red "/><em>user_red.png</em></td>
1425
+ <td><img src="icons/user_suit.png" title="user_suit.png" alt="user suit "/><em>user_suit.png</em></td>
1426
+ <td><img src="icons/vcard.png" title="vcard.png" alt="vcard "/><em>vcard.png</em></td>
1427
+ <td><img src="icons/vcard_add.png" title="vcard_add.png" alt="vcard add "/><em>vcard_add.png</em></td>
1428
+
1429
+ <td><img src="icons/vcard_delete.png" title="vcard_delete.png" alt="vcard delete "/><em>vcard_delete.png</em></td>
1430
+ <td><img src="icons/vcard_edit.png" title="vcard_edit.png" alt="vcard edit "/><em>vcard_edit.png</em></td>
1431
+ <td><img src="icons/vector.png" title="vector.png" alt="vector "/><em>vector.png</em></td>
1432
+ <td><img src="icons/vector_add.png" title="vector_add.png" alt="vector add "/><em>vector_add.png</em></td>
1433
+ </tr>
1434
+ <tr>
1435
+ <td><img src="icons/vector_delete.png" title="vector_delete.png" alt="vector delete "/><em>vector_delete.png</em></td>
1436
+
1437
+ <td><img src="icons/wand.png" title="wand.png" alt="wand "/><em>wand.png</em></td>
1438
+ <td><img src="icons/weather_clouds.png" title="weather_clouds.png" alt="weather clouds "/><em>weather_clouds.png</em></td>
1439
+ <td><img src="icons/weather_cloudy.png" title="weather_cloudy.png" alt="weather cloudy "/><em>weather_cloudy.png</em></td>
1440
+ <td><img src="icons/weather_lightning.png" title="weather_lightning.png" alt="weather lightning "/><em>weather_lightning.png</em></td>
1441
+ <td><img src="icons/weather_rain.png" title="weather_rain.png" alt="weather rain "/><em>weather_rain.png</em></td>
1442
+ <td><img src="icons/weather_snow.png" title="weather_snow.png" alt="weather snow "/><em>weather_snow.png</em></td>
1443
+
1444
+ <td><img src="icons/weather_sun.png" title="weather_sun.png" alt="weather sun "/><em>weather_sun.png</em></td>
1445
+ <td><img src="icons/webcam.png" title="webcam.png" alt="webcam "/><em>webcam.png</em></td>
1446
+ <td><img src="icons/webcam_add.png" title="webcam_add.png" alt="webcam add "/><em>webcam_add.png</em></td>
1447
+ <td><img src="icons/webcam_delete.png" title="webcam_delete.png" alt="webcam delete "/><em>webcam_delete.png</em></td>
1448
+ <td><img src="icons/webcam_error.png" title="webcam_error.png" alt="webcam error "/><em>webcam_error.png</em></td>
1449
+ </tr>
1450
+
1451
+ <tr>
1452
+ <td><img src="icons/world.png" title="world.png" alt="world "/><em>world.png</em></td>
1453
+ <td><img src="icons/world_add.png" title="world_add.png" alt="world add "/><em>world_add.png</em></td>
1454
+ <td><img src="icons/world_delete.png" title="world_delete.png" alt="world delete "/><em>world_delete.png</em></td>
1455
+ <td><img src="icons/world_edit.png" title="world_edit.png" alt="world edit "/><em>world_edit.png</em></td>
1456
+ <td><img src="icons/world_go.png" title="world_go.png" alt="world go "/><em>world_go.png</em></td>
1457
+
1458
+ <td><img src="icons/world_link.png" title="world_link.png" alt="world link "/><em>world_link.png</em></td>
1459
+ <td><img src="icons/wrench.png" title="wrench.png" alt="wrench "/><em>wrench.png</em></td>
1460
+ <td><img src="icons/wrench_orange.png" title="wrench_orange.png" alt="wrench orange "/><em>wrench_orange.png</em></td>
1461
+ <td><img src="icons/xhtml.png" title="xhtml.png" alt="xhtml "/><em>xhtml.png</em></td>
1462
+ <td><img src="icons/xhtml_add.png" title="xhtml_add.png" alt="xhtml add "/><em>xhtml_add.png</em></td>
1463
+ <td><img src="icons/xhtml_delete.png" title="xhtml_delete.png" alt="xhtml delete "/><em>xhtml_delete.png</em></td>
1464
+
1465
+ <td><img src="icons/xhtml_go.png" title="xhtml_go.png" alt="xhtml go "/><em>xhtml_go.png</em></td>
1466
+ </tr>
1467
+ <tr>
1468
+ <td><img src="icons/xhtml_valid.png" title="xhtml_valid.png" alt="xhtml valid "/><em>xhtml_valid.png</em></td>
1469
+ <td><img src="icons/zoom.png" title="zoom.png" alt="zoom "/><em>zoom.png</em></td>
1470
+ <td><img src="icons/zoom_in.png" title="zoom_in.png" alt="zoom in "/><em>zoom_in.png</em></td>
1471
+ <td><img src="icons/zoom_out.png" title="zoom_out.png" alt="zoom out "/><em>zoom_out.png</em></td>
1472
+
1473
+ <td>&nbsp;</td>
1474
+ <td>&nbsp;</td>
1475
+ <td>&nbsp;</td>
1476
+ <td>&nbsp;</td>
1477
+ <td>&nbsp;</td>
1478
+ <td>&nbsp;</td>
1479
+ <td>&nbsp;</td>
1480
+ <td>&nbsp;</td>
1481
+ </tr></table>
1482
+ </p>
1483
+
1484
+ </div><!-- /content_inner -->
1485
+ <!-- A break! -->
1486
+ <br class="clear" />
1487
+
1488
+ </div><!-- /content_outer -->
1489
+
1490
+ </div><!-- /container_inner -->
1491
+ </div><!-- /container_outer -->
1492
+
1493
+
1494
+ </body>
1495
+ </html>