rearview 1.0.0.rc1-jruby → 1.0.0.rc2-jruby

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1814) hide show
  1. checksums.yaml +4 -4
  2. data/bin/rails +8 -0
  3. data/lib/rearview/version.rb +1 -1
  4. data/public/favicon.ico +0 -0
  5. data/public/help/alert.html +20 -0
  6. data/public/help/quick.html +34 -0
  7. data/public/monitors/index.json +3 -0
  8. data/public/monitors/outage.rb +2 -0
  9. data/public/rearview-src/css/rearview.css +1 -0
  10. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  11. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  12. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  13. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  14. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  15. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  16. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  17. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  18. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  19. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  20. data/public/rearview-src/img/livingsocial-logo-white.svg +107 -0
  21. data/public/rearview-src/img/login/company-logo.svg +107 -0
  22. data/public/rearview-src/img/noise-light.png +0 -0
  23. data/public/rearview-src/img/noise.png +0 -0
  24. data/public/rearview-src/img/rearview.svg +19 -0
  25. data/public/rearview-src/img/rearviewlogo.png +0 -0
  26. data/public/rearview-src/img/rearviewlogo_small.png +0 -0
  27. data/public/rearview-src/img/sample-monitor.png +0 -0
  28. data/public/rearview-src/js/app.build.js +15 -0
  29. data/public/rearview-src/js/app.js +295 -0
  30. data/public/rearview-src/js/collection/dashboard.js +41 -0
  31. data/public/rearview-src/js/collection/monitor.js +53 -0
  32. data/public/rearview-src/js/main.js +89 -0
  33. data/public/rearview-src/js/model/base.js +34 -0
  34. data/public/rearview-src/js/model/dashboard.js +47 -0
  35. data/public/rearview-src/js/model/monitor.js +67 -0
  36. data/public/rearview-src/js/model/user.js +81 -0
  37. data/public/rearview-src/js/route/index.js +47 -0
  38. data/public/rearview-src/js/util/highcharts-gray-theme.js +266 -0
  39. data/public/rearview-src/js/util/templar.js +178 -0
  40. data/public/rearview-src/js/view/addcategory.js +250 -0
  41. data/public/rearview-src/js/view/adddashboard.js +166 -0
  42. data/public/rearview-src/js/view/addmonitor.js +679 -0
  43. data/public/rearview-src/js/view/alert.js +47 -0
  44. data/public/rearview-src/js/view/alerttimeline.js +340 -0
  45. data/public/rearview-src/js/view/base.js +535 -0
  46. data/public/rearview-src/js/view/dashboard.js +493 -0
  47. data/public/rearview-src/js/view/dashboardtile.js +146 -0
  48. data/public/rearview-src/js/view/deletemonitor.js +68 -0
  49. data/public/rearview-src/js/view/ecosystem.js +90 -0
  50. data/public/rearview-src/js/view/expandedmonitor.js +706 -0
  51. data/public/rearview-src/js/view/header.js +43 -0
  52. data/public/rearview-src/js/view/primarynav.js +63 -0
  53. data/public/rearview-src/js/view/resetmonitor.js +101 -0
  54. data/public/rearview-src/js/view/secondarynav.js +45 -0
  55. data/public/rearview-src/js/view/smallmonitor.js +416 -0
  56. data/public/rearview-src/less/alert.less +45 -0
  57. data/public/rearview-src/less/dashboard.less +173 -0
  58. data/public/rearview-src/less/ecosystem.less +221 -0
  59. data/public/rearview-src/less/elements.less +168 -0
  60. data/public/rearview-src/less/expandedmonitor.less +283 -0
  61. data/public/rearview-src/less/header.less +76 -0
  62. data/public/rearview-src/less/login.less +1050 -0
  63. data/public/rearview-src/less/primarynav.less +151 -0
  64. data/public/rearview-src/less/rearview.less +1207 -0
  65. data/public/rearview-src/login/icons/rearview.svg +19 -0
  66. data/public/rearview-src/templates/addcategory.hbs +38 -0
  67. data/public/rearview-src/templates/adddashboard.hbs +26 -0
  68. data/public/rearview-src/templates/addmonitor.hbs +10 -0
  69. data/public/rearview-src/templates/alert.hbs +4 -0
  70. data/public/rearview-src/templates/alerttimeline.hbs +15 -0
  71. data/public/rearview-src/templates/dashboard.hbs +35 -0
  72. data/public/rearview-src/templates/dashboardtile.hbs +22 -0
  73. data/public/rearview-src/templates/deletemonitor.hbs +16 -0
  74. data/public/rearview-src/templates/expandedmonitor.hbs +191 -0
  75. data/public/rearview-src/templates/header.hbs +9 -0
  76. data/public/rearview-src/templates/primarynav.hbs +50 -0
  77. data/public/rearview-src/templates/resetmonitor.hbs +16 -0
  78. data/public/rearview-src/templates/schedulemonitor.hbs +78 -0
  79. data/public/rearview-src/templates/secondarynav.hbs +11 -0
  80. data/public/rearview-src/templates/setmetrics.hbs +53 -0
  81. data/public/rearview-src/templates/smallmonitor.hbs +52 -0
  82. data/public/rearview-src/templates/test.txt +1 -0
  83. data/public/rearview-src/test/spec/model/application.js +60 -0
  84. data/public/rearview-src/test/spec/model/job.js +109 -0
  85. data/public/rearview-src/test/spec/model/user.js +50 -0
  86. data/public/rearview-src/test/spec/view/base.js +58 -0
  87. data/public/rearview-src/vendor/backbone/js/backbone.js +1431 -0
  88. data/public/rearview-src/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +130 -0
  89. data/public/rearview-src/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +221 -0
  90. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.css +1109 -0
  91. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  92. data/public/rearview-src/vendor/bootstrap/css/bootstrap.css +6167 -0
  93. data/public/rearview-src/vendor/bootstrap/css/bootstrap.min.css +9 -0
  94. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  95. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  96. data/public/rearview-src/vendor/bootstrap/js/bootstrap.js +2280 -0
  97. data/public/rearview-src/vendor/bootstrap/js/bootstrap.min.js +6 -0
  98. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  99. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  100. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  101. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  102. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +274 -0
  103. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +841 -0
  104. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +14 -0
  105. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +14 -0
  106. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +14 -0
  107. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +14 -0
  108. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +14 -0
  109. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +14 -0
  110. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +13 -0
  111. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +14 -0
  112. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +14 -0
  113. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +13 -0
  114. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +13 -0
  115. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +15 -0
  116. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +16 -0
  117. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  118. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +14 -0
  119. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +14 -0
  120. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +14 -0
  121. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +14 -0
  122. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +14 -0
  123. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +14 -0
  124. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +14 -0
  125. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +14 -0
  126. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +15 -0
  127. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +14 -0
  128. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +13 -0
  129. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  130. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  131. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  132. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +48 -0
  133. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +4 -0
  134. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +26 -0
  135. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +29 -0
  136. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +235 -0
  137. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +1669 -0
  138. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +21 -0
  139. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +157 -0
  140. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +157 -0
  141. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +80 -0
  142. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +195 -0
  143. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +86 -0
  144. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +410 -0
  145. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +26 -0
  146. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +66 -0
  147. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +251 -0
  148. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +33 -0
  149. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +264 -0
  150. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  151. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  152. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  153. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1479 -0
  154. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  155. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  156. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  157. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  158. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  159. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  160. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  161. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  162. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  163. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  164. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  165. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  166. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  167. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  168. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  169. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  170. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  171. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  172. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  173. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  174. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  175. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  176. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  177. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  178. data/public/rearview-src/vendor/codemirror/LICENSE +23 -0
  179. data/public/rearview-src/vendor/codemirror/README.md +8 -0
  180. data/public/rearview-src/vendor/codemirror/demo/activeline.html +73 -0
  181. data/public/rearview-src/vendor/codemirror/demo/changemode.html +51 -0
  182. data/public/rearview-src/vendor/codemirror/demo/closetag.html +66 -0
  183. data/public/rearview-src/vendor/codemirror/demo/complete.html +71 -0
  184. data/public/rearview-src/vendor/codemirror/demo/emacs.html +60 -0
  185. data/public/rearview-src/vendor/codemirror/demo/folding.html +62 -0
  186. data/public/rearview-src/vendor/codemirror/demo/formatting.html +81 -0
  187. data/public/rearview-src/vendor/codemirror/demo/fullscreen.html +147 -0
  188. data/public/rearview-src/vendor/codemirror/demo/loadmode.html +40 -0
  189. data/public/rearview-src/vendor/codemirror/demo/marker.html +53 -0
  190. data/public/rearview-src/vendor/codemirror/demo/matchhighlighter.html +38 -0
  191. data/public/rearview-src/vendor/codemirror/demo/multiplex.html +60 -0
  192. data/public/rearview-src/vendor/codemirror/demo/mustache.html +58 -0
  193. data/public/rearview-src/vendor/codemirror/demo/preview.html +76 -0
  194. data/public/rearview-src/vendor/codemirror/demo/resize.html +42 -0
  195. data/public/rearview-src/vendor/codemirror/demo/runmode.html +50 -0
  196. data/public/rearview-src/vendor/codemirror/demo/search.html +85 -0
  197. data/public/rearview-src/vendor/codemirror/demo/theme.html +79 -0
  198. data/public/rearview-src/vendor/codemirror/demo/vim.html +53 -0
  199. data/public/rearview-src/vendor/codemirror/demo/visibletabs.html +53 -0
  200. data/public/rearview-src/vendor/codemirror/demo/xmlcomplete.html +71 -0
  201. data/public/rearview-src/vendor/codemirror/doc/baboon.png +0 -0
  202. data/public/rearview-src/vendor/codemirror/doc/baboon_vector.svg +153 -0
  203. data/public/rearview-src/vendor/codemirror/doc/compress.html +163 -0
  204. data/public/rearview-src/vendor/codemirror/doc/docs.css +165 -0
  205. data/public/rearview-src/vendor/codemirror/doc/internals.html +497 -0
  206. data/public/rearview-src/vendor/codemirror/doc/manual.html +1224 -0
  207. data/public/rearview-src/vendor/codemirror/doc/oldrelease.html +305 -0
  208. data/public/rearview-src/vendor/codemirror/doc/reporting.html +60 -0
  209. data/public/rearview-src/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  210. data/public/rearview-src/vendor/codemirror/index.html +472 -0
  211. data/public/rearview-src/vendor/codemirror/keymap/emacs.js +29 -0
  212. data/public/rearview-src/vendor/codemirror/keymap/vim.js +789 -0
  213. data/public/rearview-src/vendor/codemirror/lib/codemirror.css +173 -0
  214. data/public/rearview-src/vendor/codemirror/lib/codemirror.js +3143 -0
  215. data/public/rearview-src/vendor/codemirror/lib/util/closetag.js +164 -0
  216. data/public/rearview-src/vendor/codemirror/lib/util/dialog.css +27 -0
  217. data/public/rearview-src/vendor/codemirror/lib/util/dialog.js +70 -0
  218. data/public/rearview-src/vendor/codemirror/lib/util/foldcode.js +196 -0
  219. data/public/rearview-src/vendor/codemirror/lib/util/formatting.js +193 -0
  220. data/public/rearview-src/vendor/codemirror/lib/util/javascript-hint.js +134 -0
  221. data/public/rearview-src/vendor/codemirror/lib/util/loadmode.js +51 -0
  222. data/public/rearview-src/vendor/codemirror/lib/util/match-highlighter.js +44 -0
  223. data/public/rearview-src/vendor/codemirror/lib/util/multiplex.js +77 -0
  224. data/public/rearview-src/vendor/codemirror/lib/util/overlay.js +54 -0
  225. data/public/rearview-src/vendor/codemirror/lib/util/pig-hint.js +123 -0
  226. data/public/rearview-src/vendor/codemirror/lib/util/runmode-standalone.js +90 -0
  227. data/public/rearview-src/vendor/codemirror/lib/util/runmode.js +53 -0
  228. data/public/rearview-src/vendor/codemirror/lib/util/search.js +118 -0
  229. data/public/rearview-src/vendor/codemirror/lib/util/searchcursor.js +119 -0
  230. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.css +16 -0
  231. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.js +97 -0
  232. data/public/rearview-src/vendor/codemirror/lib/util/xml-hint.js +137 -0
  233. data/public/rearview-src/vendor/codemirror/mode/clike/clike.js +284 -0
  234. data/public/rearview-src/vendor/codemirror/mode/clike/index.html +102 -0
  235. data/public/rearview-src/vendor/codemirror/mode/clike/scala.html +766 -0
  236. data/public/rearview-src/vendor/codemirror/mode/clojure/clojure.js +206 -0
  237. data/public/rearview-src/vendor/codemirror/mode/clojure/index.html +67 -0
  238. data/public/rearview-src/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  239. data/public/rearview-src/vendor/codemirror/mode/coffeescript/coffeescript.js +346 -0
  240. data/public/rearview-src/vendor/codemirror/mode/coffeescript/index.html +728 -0
  241. data/public/rearview-src/vendor/codemirror/mode/commonlisp/commonlisp.js +101 -0
  242. data/public/rearview-src/vendor/codemirror/mode/commonlisp/index.html +165 -0
  243. data/public/rearview-src/vendor/codemirror/mode/css/css.js +448 -0
  244. data/public/rearview-src/vendor/codemirror/mode/css/index.html +58 -0
  245. data/public/rearview-src/vendor/codemirror/mode/css/test.js +501 -0
  246. data/public/rearview-src/vendor/codemirror/mode/diff/diff.js +32 -0
  247. data/public/rearview-src/vendor/codemirror/mode/diff/index.html +105 -0
  248. data/public/rearview-src/vendor/codemirror/mode/ecl/ecl.js +203 -0
  249. data/public/rearview-src/vendor/codemirror/mode/ecl/index.html +42 -0
  250. data/public/rearview-src/vendor/codemirror/mode/erlang/erlang.js +463 -0
  251. data/public/rearview-src/vendor/codemirror/mode/erlang/index.html +63 -0
  252. data/public/rearview-src/vendor/codemirror/mode/gfm/gfm.js +150 -0
  253. data/public/rearview-src/vendor/codemirror/mode/gfm/index.html +48 -0
  254. data/public/rearview-src/vendor/codemirror/mode/go/go.js +170 -0
  255. data/public/rearview-src/vendor/codemirror/mode/go/index.html +73 -0
  256. data/public/rearview-src/vendor/codemirror/mode/groovy/groovy.js +210 -0
  257. data/public/rearview-src/vendor/codemirror/mode/groovy/index.html +72 -0
  258. data/public/rearview-src/vendor/codemirror/mode/haskell/haskell.js +242 -0
  259. data/public/rearview-src/vendor/codemirror/mode/haskell/index.html +61 -0
  260. data/public/rearview-src/vendor/codemirror/mode/haxe/haxe.js +429 -0
  261. data/public/rearview-src/vendor/codemirror/mode/haxe/index.html +91 -0
  262. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/htmlembedded.js +72 -0
  263. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  264. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
  265. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  266. data/public/rearview-src/vendor/codemirror/mode/javascript/index.html +78 -0
  267. data/public/rearview-src/vendor/codemirror/mode/javascript/javascript.js +361 -0
  268. data/public/rearview-src/vendor/codemirror/mode/jinja2/index.html +38 -0
  269. data/public/rearview-src/vendor/codemirror/mode/jinja2/jinja2.js +42 -0
  270. data/public/rearview-src/vendor/codemirror/mode/less/index.html +740 -0
  271. data/public/rearview-src/vendor/codemirror/mode/less/less.js +266 -0
  272. data/public/rearview-src/vendor/codemirror/mode/lua/index.html +73 -0
  273. data/public/rearview-src/vendor/codemirror/mode/lua/lua.js +140 -0
  274. data/public/rearview-src/vendor/codemirror/mode/markdown/index.html +343 -0
  275. data/public/rearview-src/vendor/codemirror/mode/markdown/markdown.js +382 -0
  276. data/public/rearview-src/vendor/codemirror/mode/markdown/test.js +1084 -0
  277. data/public/rearview-src/vendor/codemirror/mode/mysql/index.html +42 -0
  278. data/public/rearview-src/vendor/codemirror/mode/mysql/mysql.js +186 -0
  279. data/public/rearview-src/vendor/codemirror/mode/ntriples/index.html +33 -0
  280. data/public/rearview-src/vendor/codemirror/mode/ntriples/ntriples.js +172 -0
  281. data/public/rearview-src/vendor/codemirror/mode/ocaml/index.html +130 -0
  282. data/public/rearview-src/vendor/codemirror/mode/ocaml/ocaml.js +114 -0
  283. data/public/rearview-src/vendor/codemirror/mode/pascal/LICENSE +7 -0
  284. data/public/rearview-src/vendor/codemirror/mode/pascal/index.html +49 -0
  285. data/public/rearview-src/vendor/codemirror/mode/pascal/pascal.js +94 -0
  286. data/public/rearview-src/vendor/codemirror/mode/perl/LICENSE +19 -0
  287. data/public/rearview-src/vendor/codemirror/mode/perl/index.html +63 -0
  288. data/public/rearview-src/vendor/codemirror/mode/perl/perl.js +816 -0
  289. data/public/rearview-src/vendor/codemirror/mode/php/index.html +49 -0
  290. data/public/rearview-src/vendor/codemirror/mode/php/php.js +148 -0
  291. data/public/rearview-src/vendor/codemirror/mode/pig/index.html +43 -0
  292. data/public/rearview-src/vendor/codemirror/mode/pig/pig.js +172 -0
  293. data/public/rearview-src/vendor/codemirror/mode/plsql/index.html +63 -0
  294. data/public/rearview-src/vendor/codemirror/mode/plsql/plsql.js +217 -0
  295. data/public/rearview-src/vendor/codemirror/mode/properties/index.html +41 -0
  296. data/public/rearview-src/vendor/codemirror/mode/properties/properties.js +63 -0
  297. data/public/rearview-src/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  298. data/public/rearview-src/vendor/codemirror/mode/python/index.html +123 -0
  299. data/public/rearview-src/vendor/codemirror/mode/python/python.js +338 -0
  300. data/public/rearview-src/vendor/codemirror/mode/r/LICENSE +24 -0
  301. data/public/rearview-src/vendor/codemirror/mode/r/index.html +74 -0
  302. data/public/rearview-src/vendor/codemirror/mode/r/r.js +141 -0
  303. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/changes.js +19 -0
  304. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  305. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  306. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  307. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.js +66 -0
  308. data/public/rearview-src/vendor/codemirror/mode/rst/index.html +526 -0
  309. data/public/rearview-src/vendor/codemirror/mode/rst/rst.js +326 -0
  310. data/public/rearview-src/vendor/codemirror/mode/ruby/LICENSE +24 -0
  311. data/public/rearview-src/vendor/codemirror/mode/ruby/index.html +172 -0
  312. data/public/rearview-src/vendor/codemirror/mode/ruby/ruby.js +195 -0
  313. data/public/rearview-src/vendor/codemirror/mode/rust/index.html +49 -0
  314. data/public/rearview-src/vendor/codemirror/mode/rust/rust.js +432 -0
  315. data/public/rearview-src/vendor/codemirror/mode/scheme/index.html +65 -0
  316. data/public/rearview-src/vendor/codemirror/mode/scheme/scheme.js +230 -0
  317. data/public/rearview-src/vendor/codemirror/mode/shell/index.html +50 -0
  318. data/public/rearview-src/vendor/codemirror/mode/shell/shell.js +118 -0
  319. data/public/rearview-src/vendor/codemirror/mode/sieve/LICENSE +23 -0
  320. data/public/rearview-src/vendor/codemirror/mode/sieve/index.html +81 -0
  321. data/public/rearview-src/vendor/codemirror/mode/sieve/sieve.js +156 -0
  322. data/public/rearview-src/vendor/codemirror/mode/smalltalk/index.html +56 -0
  323. data/public/rearview-src/vendor/codemirror/mode/smalltalk/smalltalk.js +139 -0
  324. data/public/rearview-src/vendor/codemirror/mode/smarty/index.html +83 -0
  325. data/public/rearview-src/vendor/codemirror/mode/smarty/smarty.js +148 -0
  326. data/public/rearview-src/vendor/codemirror/mode/sparql/index.html +41 -0
  327. data/public/rearview-src/vendor/codemirror/mode/sparql/sparql.js +143 -0
  328. data/public/rearview-src/vendor/codemirror/mode/stex/index.html +98 -0
  329. data/public/rearview-src/vendor/codemirror/mode/stex/stex.js +182 -0
  330. data/public/rearview-src/vendor/codemirror/mode/stex/test.js +343 -0
  331. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  332. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  333. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +384 -0
  334. data/public/rearview-src/vendor/codemirror/mode/tiki/index.html +83 -0
  335. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.css +26 -0
  336. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.js +309 -0
  337. data/public/rearview-src/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  338. data/public/rearview-src/vendor/codemirror/mode/vb/index.html +89 -0
  339. data/public/rearview-src/vendor/codemirror/mode/vb/vb.js +260 -0
  340. data/public/rearview-src/vendor/codemirror/mode/vbscript/index.html +43 -0
  341. data/public/rearview-src/vendor/codemirror/mode/vbscript/vbscript.js +26 -0
  342. data/public/rearview-src/vendor/codemirror/mode/velocity/index.html +104 -0
  343. data/public/rearview-src/vendor/codemirror/mode/velocity/velocity.js +146 -0
  344. data/public/rearview-src/vendor/codemirror/mode/verilog/index.html +211 -0
  345. data/public/rearview-src/vendor/codemirror/mode/verilog/verilog.js +194 -0
  346. data/public/rearview-src/vendor/codemirror/mode/xml/index.html +45 -0
  347. data/public/rearview-src/vendor/codemirror/mode/xml/xml.js +318 -0
  348. data/public/rearview-src/vendor/codemirror/mode/xquery/LICENSE +20 -0
  349. data/public/rearview-src/vendor/codemirror/mode/xquery/index.html +223 -0
  350. data/public/rearview-src/vendor/codemirror/mode/xquery/test/index.html +27 -0
  351. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testBase.js +42 -0
  352. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +16 -0
  353. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testMultiAttr.js +16 -0
  354. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testNamespaces.js +91 -0
  355. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +16 -0
  356. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testQuotes.js +19 -0
  357. data/public/rearview-src/vendor/codemirror/mode/xquery/xquery.js +451 -0
  358. data/public/rearview-src/vendor/codemirror/mode/yaml/index.html +68 -0
  359. data/public/rearview-src/vendor/codemirror/mode/yaml/yaml.js +95 -0
  360. data/public/rearview-src/vendor/codemirror/package.json +21 -0
  361. data/public/rearview-src/vendor/codemirror/test/driver.js +129 -0
  362. data/public/rearview-src/vendor/codemirror/test/index.html +168 -0
  363. data/public/rearview-src/vendor/codemirror/test/lint/lint.js +120 -0
  364. data/public/rearview-src/vendor/codemirror/test/lint/parse-js.js +1372 -0
  365. data/public/rearview-src/vendor/codemirror/test/mode_test.css +10 -0
  366. data/public/rearview-src/vendor/codemirror/test/mode_test.js +203 -0
  367. data/public/rearview-src/vendor/codemirror/test/phantom_driver.js +30 -0
  368. data/public/rearview-src/vendor/codemirror/test/run.js +32 -0
  369. data/public/rearview-src/vendor/codemirror/test/test.js +672 -0
  370. data/public/rearview-src/vendor/codemirror/theme/ambiance.css +81 -0
  371. data/public/rearview-src/vendor/codemirror/theme/blackboard.css +25 -0
  372. data/public/rearview-src/vendor/codemirror/theme/cobalt.css +18 -0
  373. data/public/rearview-src/vendor/codemirror/theme/eclipse.css +25 -0
  374. data/public/rearview-src/vendor/codemirror/theme/elegant.css +10 -0
  375. data/public/rearview-src/vendor/codemirror/theme/erlang-dark.css +21 -0
  376. data/public/rearview-src/vendor/codemirror/theme/lesser-dark.css +44 -0
  377. data/public/rearview-src/vendor/codemirror/theme/monokai.css +28 -0
  378. data/public/rearview-src/vendor/codemirror/theme/neat.css +9 -0
  379. data/public/rearview-src/vendor/codemirror/theme/night.css +21 -0
  380. data/public/rearview-src/vendor/codemirror/theme/rubyblue.css +21 -0
  381. data/public/rearview-src/vendor/codemirror/theme/vibrant-ink.css +27 -0
  382. data/public/rearview-src/vendor/codemirror/theme/xq-dark.css +46 -0
  383. data/public/rearview-src/vendor/handlebars/js/handlebars.js +1920 -0
  384. data/public/rearview-src/vendor/highcharts/examples/area-basic/index.htm +94 -0
  385. data/public/rearview-src/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  386. data/public/rearview-src/vendor/highcharts/examples/area-missing/index.htm +85 -0
  387. data/public/rearview-src/vendor/highcharts/examples/area-negative/index.htm +55 -0
  388. data/public/rearview-src/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  389. data/public/rearview-src/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  390. data/public/rearview-src/vendor/highcharts/examples/arearange/index.htm +62 -0
  391. data/public/rearview-src/vendor/highcharts/examples/areaspline/index.htm +85 -0
  392. data/public/rearview-src/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  393. data/public/rearview-src/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  394. data/public/rearview-src/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  395. data/public/rearview-src/vendor/highcharts/examples/column-basic/index.htm +97 -0
  396. data/public/rearview-src/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  397. data/public/rearview-src/vendor/highcharts/examples/column-negative/index.htm +55 -0
  398. data/public/rearview-src/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  399. data/public/rearview-src/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  400. data/public/rearview-src/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  401. data/public/rearview-src/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  402. data/public/rearview-src/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  403. data/public/rearview-src/vendor/highcharts/examples/columnrange/index.htm +87 -0
  404. data/public/rearview-src/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  405. data/public/rearview-src/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  406. data/public/rearview-src/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  407. data/public/rearview-src/vendor/highcharts/examples/combo/index.htm +102 -0
  408. data/public/rearview-src/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  409. data/public/rearview-src/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  410. data/public/rearview-src/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  411. data/public/rearview-src/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  412. data/public/rearview-src/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  413. data/public/rearview-src/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  414. data/public/rearview-src/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  415. data/public/rearview-src/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  416. data/public/rearview-src/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  417. data/public/rearview-src/vendor/highcharts/examples/line-basic/index.htm +81 -0
  418. data/public/rearview-src/vendor/highcharts/examples/line-labels/index.htm +66 -0
  419. data/public/rearview-src/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  420. data/public/rearview-src/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  421. data/public/rearview-src/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  422. data/public/rearview-src/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  423. data/public/rearview-src/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  424. data/public/rearview-src/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  425. data/public/rearview-src/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  426. data/public/rearview-src/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  427. data/public/rearview-src/vendor/highcharts/examples/polar/index.htm +79 -0
  428. data/public/rearview-src/vendor/highcharts/examples/scatter/index.htm +197 -0
  429. data/public/rearview-src/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  430. data/public/rearview-src/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  431. data/public/rearview-src/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  432. data/public/rearview-src/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  433. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  434. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  435. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  436. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  437. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  438. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  439. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  440. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  441. data/public/rearview-src/vendor/highcharts/exporting-server/java/install.txt +10 -0
  442. data/public/rearview-src/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  443. data/public/rearview-src/vendor/highcharts/exporting-server/php/index.php +112 -0
  444. data/public/rearview-src/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  445. data/public/rearview-src/vendor/highcharts/graphics/skies.jpg +0 -0
  446. data/public/rearview-src/vendor/highcharts/graphics/snow.png +0 -0
  447. data/public/rearview-src/vendor/highcharts/graphics/sun.png +0 -0
  448. data/public/rearview-src/vendor/highcharts/index.htm +79 -0
  449. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.js +13 -0
  450. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.src.js +327 -0
  451. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.js +16 -0
  452. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.src.js +385 -0
  453. data/public/rearview-src/vendor/highcharts/js/highcharts-more.js +35 -0
  454. data/public/rearview-src/vendor/highcharts/js/highcharts.js +249 -0
  455. data/public/rearview-src/vendor/highcharts/js/highcharts.src.js +15111 -0
  456. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.js +133 -0
  457. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.src.js +3113 -0
  458. data/public/rearview-src/vendor/highcharts/js/modules/data.js +11 -0
  459. data/public/rearview-src/vendor/highcharts/js/modules/data.src.js +277 -0
  460. data/public/rearview-src/vendor/highcharts/js/modules/exporting.js +23 -0
  461. data/public/rearview-src/vendor/highcharts/js/modules/exporting.src.js +736 -0
  462. data/public/rearview-src/vendor/highcharts/js/themes/dark-blue.js +263 -0
  463. data/public/rearview-src/vendor/highcharts/js/themes/dark-green.js +263 -0
  464. data/public/rearview-src/vendor/highcharts/js/themes/gray.js +262 -0
  465. data/public/rearview-src/vendor/highcharts/js/themes/grid.js +95 -0
  466. data/public/rearview-src/vendor/highcharts/js/themes/skies.js +89 -0
  467. data/public/rearview-src/vendor/jasmine/SpecRunner.html +53 -0
  468. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  469. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +680 -0
  470. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +82 -0
  471. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2600 -0
  472. data/public/rearview-src/vendor/jasmine/spec/PlayerSpec.js +58 -0
  473. data/public/rearview-src/vendor/jasmine/spec/SpecHelper.js +9 -0
  474. data/public/rearview-src/vendor/jasmine/src/Player.js +22 -0
  475. data/public/rearview-src/vendor/jasmine/src/Song.js +7 -0
  476. data/public/rearview-src/vendor/jquery/js/jquery.js +9440 -0
  477. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  478. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  479. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  480. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  481. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  482. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  483. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  484. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  485. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  486. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  487. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  488. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  489. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  490. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  491. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  492. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +785 -0
  493. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +7 -0
  494. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  495. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +378 -0
  496. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  497. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  498. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  499. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  500. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  501. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  502. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  503. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  504. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  505. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  506. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  507. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  508. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  509. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  510. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  511. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  512. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  513. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +23 -0
  514. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +25 -0
  515. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +23 -0
  516. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +23 -0
  517. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  518. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  519. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  520. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  521. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  522. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +19 -0
  523. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  524. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  525. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  526. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  527. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  528. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  529. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  530. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  531. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  532. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  533. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  534. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  535. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  536. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  537. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  538. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  539. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  540. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  541. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  542. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  543. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  544. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  545. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  546. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  547. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  548. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  549. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  550. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  551. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  552. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  553. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  554. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  555. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  556. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  557. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  558. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  559. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  560. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  561. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  562. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  563. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  564. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  565. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  566. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  567. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  568. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  569. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  570. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  571. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  572. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  573. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  574. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  575. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  576. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  577. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  578. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  579. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  580. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  581. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  582. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  583. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  584. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  585. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  586. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  587. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  588. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  589. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  590. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  591. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  592. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  593. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  594. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  595. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  596. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +81 -0
  597. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +100 -0
  598. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +1573 -0
  599. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +101 -0
  600. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +4835 -0
  601. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +244 -0
  602. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +2152 -0
  603. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +9597 -0
  604. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  605. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  606. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  607. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  608. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  609. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  610. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  611. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  612. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  613. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  614. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  615. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  616. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  617. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  618. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  619. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +648 -0
  620. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +12 -0
  621. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +25 -0
  622. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +93 -0
  623. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +178 -0
  624. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +406 -0
  625. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  626. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  627. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  628. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  629. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  630. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  631. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  632. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  633. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  634. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  635. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  636. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  637. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  638. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  639. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +7 -0
  640. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +5 -0
  641. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +5 -0
  642. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +5 -0
  643. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  644. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  645. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  646. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  647. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  648. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  649. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  650. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  651. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  652. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  653. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  654. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  655. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  656. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  657. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  658. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +649 -0
  659. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +12 -0
  660. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +25 -0
  661. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +93 -0
  662. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +178 -0
  663. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +406 -0
  664. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  665. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  666. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  667. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  668. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  669. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  670. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  671. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  672. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  673. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  674. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  675. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  676. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  677. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  678. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  679. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +7 -0
  680. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +5 -0
  681. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +5 -0
  682. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +5 -0
  683. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  684. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  685. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  686. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  687. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  688. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  689. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  690. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  691. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  692. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  693. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  694. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  695. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  696. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  697. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  698. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  699. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  700. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  701. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  702. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  703. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +1645 -0
  704. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
  705. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
  706. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
  707. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
  708. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +23 -0
  709. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
  710. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
  711. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
  712. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
  713. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +23 -0
  714. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
  715. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
  716. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
  717. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
  718. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
  719. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
  720. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
  721. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
  722. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
  723. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
  724. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +59 -0
  725. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
  726. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
  727. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +23 -0
  728. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
  729. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
  730. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
  731. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
  732. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +23 -0
  733. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
  734. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
  735. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
  736. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
  737. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
  738. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
  739. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
  740. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +21 -0
  741. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +23 -0
  742. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +23 -0
  743. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
  744. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +24 -0
  745. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +23 -0
  746. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
  747. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
  748. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +23 -0
  749. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
  750. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
  751. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +22 -0
  752. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +23 -0
  753. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
  754. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +22 -0
  755. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
  756. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
  757. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
  758. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
  759. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
  760. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
  761. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
  762. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
  763. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
  764. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
  765. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
  766. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
  767. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
  768. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
  769. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
  770. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
  771. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
  772. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +24 -0
  773. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
  774. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
  775. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
  776. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
  777. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +6562 -0
  778. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +320 -0
  779. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +2038 -0
  780. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +958 -0
  781. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +372 -0
  782. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +82 -0
  783. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +113 -0
  784. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +67 -0
  785. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +65 -0
  786. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +97 -0
  787. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +30 -0
  788. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +76 -0
  789. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +50 -0
  790. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +63 -0
  791. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +318 -0
  792. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +74 -0
  793. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +64 -0
  794. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +47 -0
  795. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +1289 -0
  796. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +169 -0
  797. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +521 -0
  798. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  799. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  800. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  801. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  802. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  803. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  804. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  805. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  806. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  807. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  808. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  809. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  810. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  811. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  812. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  813. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  814. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  815. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  816. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  817. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  818. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  819. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  820. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  821. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  822. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  823. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  824. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  825. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  826. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  827. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  828. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  829. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  830. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  831. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  832. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  833. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  834. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  835. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  836. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  837. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  838. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  839. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  840. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  841. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  842. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  843. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  844. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  845. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  846. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  847. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  848. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  849. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  850. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  851. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  852. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  853. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  854. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  855. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  856. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  857. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  858. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  859. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  860. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  861. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  862. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  863. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  864. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  865. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  866. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  867. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  868. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  869. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  870. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  871. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  872. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +7 -0
  873. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  874. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  875. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  876. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  877. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  878. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  879. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  880. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  881. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  882. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  883. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  884. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  885. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  886. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  887. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  888. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  889. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  890. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  891. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  892. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  893. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +7935 -0
  894. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +7 -0
  895. data/public/rearview-src/vendor/jquery/plugins/jquery.validate.js +51 -0
  896. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  897. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +2162 -0
  898. data/public/rearview-src/vendor/less/js/less.js +11 -0
  899. data/public/rearview-src/vendor/parsley/js/parsley.js +421 -0
  900. data/public/rearview-src/vendor/parsley/js/parsley.min.js +27 -0
  901. data/public/rearview-src/vendor/require/js/require.js +11408 -0
  902. data/public/rearview-src/vendor/require/plugins/domready/domready.js +129 -0
  903. data/public/rearview-src/vendor/timeline/examples/example.json +38 -0
  904. data/public/rearview-src/vendor/timeline/examples/timeline_json.html +143 -0
  905. data/public/rearview-src/vendor/timeline/timeline.css +130 -0
  906. data/public/rearview-src/vendor/timeline/timeline.js +5055 -0
  907. data/public/rearview-src/vendor/underscore/js/underscore.js +1227 -0
  908. data/public/rearview-src/vendor/underscore/plugins/underscore-string/js/underscore.string.js +644 -0
  909. data/public/rearview-src/vendor/xdate/js/xdate.js +802 -0
  910. data/public/rearview/build.txt +295 -0
  911. data/public/rearview/css/rearview.css +1 -0
  912. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  913. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  914. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  915. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  916. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  917. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  918. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  919. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  920. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  921. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  922. data/public/rearview/img/livingsocial-logo-white.svg +107 -0
  923. data/public/rearview/img/login/company-logo.svg +107 -0
  924. data/public/rearview/img/noise-light.png +0 -0
  925. data/public/rearview/img/noise.png +0 -0
  926. data/public/rearview/img/rearview.svg +19 -0
  927. data/public/rearview/img/rearviewlogo.png +0 -0
  928. data/public/rearview/img/rearviewlogo_small.png +0 -0
  929. data/public/rearview/img/sample-monitor.png +0 -0
  930. data/public/rearview/js/app.build.js +0 -0
  931. data/public/rearview/js/app.js +1 -0
  932. data/public/rearview/js/collection/dashboard.js +1 -0
  933. data/public/rearview/js/collection/monitor.js +1 -0
  934. data/public/rearview/js/main.js +402 -0
  935. data/public/rearview/js/model/base.js +1 -0
  936. data/public/rearview/js/model/dashboard.js +1 -0
  937. data/public/rearview/js/model/monitor.js +1 -0
  938. data/public/rearview/js/model/user.js +1 -0
  939. data/public/rearview/js/route/index.js +1 -0
  940. data/public/rearview/js/util/highcharts-gray-theme.js +1 -0
  941. data/public/rearview/js/util/templar.js +1 -0
  942. data/public/rearview/js/view/addcategory.js +1 -0
  943. data/public/rearview/js/view/adddashboard.js +1 -0
  944. data/public/rearview/js/view/addmonitor.js +1 -0
  945. data/public/rearview/js/view/alert.js +1 -0
  946. data/public/rearview/js/view/alerttimeline.js +1 -0
  947. data/public/rearview/js/view/base.js +1 -0
  948. data/public/rearview/js/view/dashboard.js +1 -0
  949. data/public/rearview/js/view/dashboardtile.js +1 -0
  950. data/public/rearview/js/view/deletemonitor.js +1 -0
  951. data/public/rearview/js/view/ecosystem.js +1 -0
  952. data/public/rearview/js/view/expandedmonitor.js +1 -0
  953. data/public/rearview/js/view/header.js +1 -0
  954. data/public/rearview/js/view/primarynav.js +1 -0
  955. data/public/rearview/js/view/resetmonitor.js +1 -0
  956. data/public/rearview/js/view/secondarynav.js +1 -0
  957. data/public/rearview/js/view/smallmonitor.js +1 -0
  958. data/public/rearview/less/alert.less +45 -0
  959. data/public/rearview/less/dashboard.less +173 -0
  960. data/public/rearview/less/ecosystem.less +221 -0
  961. data/public/rearview/less/elements.less +168 -0
  962. data/public/rearview/less/expandedmonitor.less +283 -0
  963. data/public/rearview/less/header.less +76 -0
  964. data/public/rearview/less/login.less +1050 -0
  965. data/public/rearview/less/primarynav.less +151 -0
  966. data/public/rearview/less/rearview.less +1207 -0
  967. data/public/rearview/login/icons/rearview.svg +19 -0
  968. data/public/rearview/templates/addcategory.hbs +38 -0
  969. data/public/rearview/templates/adddashboard.hbs +26 -0
  970. data/public/rearview/templates/addmonitor.hbs +10 -0
  971. data/public/rearview/templates/alert.hbs +4 -0
  972. data/public/rearview/templates/alerttimeline.hbs +15 -0
  973. data/public/rearview/templates/dashboard.hbs +35 -0
  974. data/public/rearview/templates/dashboardtile.hbs +22 -0
  975. data/public/rearview/templates/deletemonitor.hbs +16 -0
  976. data/public/rearview/templates/expandedmonitor.hbs +191 -0
  977. data/public/rearview/templates/header.hbs +9 -0
  978. data/public/rearview/templates/primarynav.hbs +50 -0
  979. data/public/rearview/templates/resetmonitor.hbs +16 -0
  980. data/public/rearview/templates/schedulemonitor.hbs +78 -0
  981. data/public/rearview/templates/secondarynav.hbs +11 -0
  982. data/public/rearview/templates/setmetrics.hbs +53 -0
  983. data/public/rearview/templates/smallmonitor.hbs +52 -0
  984. data/public/rearview/templates/test.txt +1 -0
  985. data/public/rearview/test/spec/model/application.js +1 -0
  986. data/public/rearview/test/spec/model/job.js +1 -0
  987. data/public/rearview/test/spec/model/user.js +1 -0
  988. data/public/rearview/test/spec/view/base.js +1 -0
  989. data/public/rearview/vendor/backbone/js/backbone.js +6 -0
  990. data/public/rearview/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +1 -0
  991. data/public/rearview/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +15 -0
  992. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.css +1088 -0
  993. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  994. data/public/rearview/vendor/bootstrap/css/bootstrap.css +5209 -0
  995. data/public/rearview/vendor/bootstrap/css/bootstrap.min.css +9 -0
  996. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  997. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  998. data/public/rearview/vendor/bootstrap/js/bootstrap.js +249 -0
  999. data/public/rearview/vendor/bootstrap/js/bootstrap.min.js +7 -0
  1000. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  1001. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  1002. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  1003. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  1004. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +271 -0
  1005. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +21 -0
  1006. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +1 -0
  1007. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +1 -0
  1008. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +1 -0
  1009. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +1 -0
  1010. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +1 -0
  1011. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +1 -0
  1012. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +1 -0
  1013. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +1 -0
  1014. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +1 -0
  1015. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +1 -0
  1016. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +1 -0
  1017. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +1 -0
  1018. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +1 -0
  1019. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  1020. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +1 -0
  1021. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +1 -0
  1022. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +1 -0
  1023. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +1 -0
  1024. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +1 -0
  1025. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +1 -0
  1026. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +1 -0
  1027. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +1 -0
  1028. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +1 -0
  1029. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +1 -0
  1030. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +1 -0
  1031. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  1032. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  1033. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  1034. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +1 -0
  1035. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +5 -0
  1036. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +1 -0
  1037. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +1 -0
  1038. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +170 -0
  1039. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +37 -0
  1040. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +1 -0
  1041. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +1 -0
  1042. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +1 -0
  1043. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +1 -0
  1044. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +1 -0
  1045. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +1 -0
  1046. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +1 -0
  1047. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +1 -0
  1048. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +1 -0
  1049. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +1 -0
  1050. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +1 -0
  1051. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +1 -0
  1052. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  1053. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  1054. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  1055. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1457 -0
  1056. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  1057. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  1058. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  1059. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  1060. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  1061. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  1062. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  1063. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  1064. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  1065. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  1066. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  1067. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  1068. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  1069. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  1070. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  1071. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  1072. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  1073. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  1074. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  1075. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  1076. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  1077. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  1078. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  1079. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  1080. data/public/rearview/vendor/codemirror/LICENSE +23 -0
  1081. data/public/rearview/vendor/codemirror/README.md +8 -0
  1082. data/public/rearview/vendor/codemirror/demo/activeline.html +73 -0
  1083. data/public/rearview/vendor/codemirror/demo/changemode.html +51 -0
  1084. data/public/rearview/vendor/codemirror/demo/closetag.html +66 -0
  1085. data/public/rearview/vendor/codemirror/demo/complete.html +71 -0
  1086. data/public/rearview/vendor/codemirror/demo/emacs.html +60 -0
  1087. data/public/rearview/vendor/codemirror/demo/folding.html +62 -0
  1088. data/public/rearview/vendor/codemirror/demo/formatting.html +81 -0
  1089. data/public/rearview/vendor/codemirror/demo/fullscreen.html +147 -0
  1090. data/public/rearview/vendor/codemirror/demo/loadmode.html +40 -0
  1091. data/public/rearview/vendor/codemirror/demo/marker.html +53 -0
  1092. data/public/rearview/vendor/codemirror/demo/matchhighlighter.html +38 -0
  1093. data/public/rearview/vendor/codemirror/demo/multiplex.html +60 -0
  1094. data/public/rearview/vendor/codemirror/demo/mustache.html +58 -0
  1095. data/public/rearview/vendor/codemirror/demo/preview.html +76 -0
  1096. data/public/rearview/vendor/codemirror/demo/resize.html +42 -0
  1097. data/public/rearview/vendor/codemirror/demo/runmode.html +50 -0
  1098. data/public/rearview/vendor/codemirror/demo/search.html +85 -0
  1099. data/public/rearview/vendor/codemirror/demo/theme.html +79 -0
  1100. data/public/rearview/vendor/codemirror/demo/vim.html +53 -0
  1101. data/public/rearview/vendor/codemirror/demo/visibletabs.html +53 -0
  1102. data/public/rearview/vendor/codemirror/demo/xmlcomplete.html +71 -0
  1103. data/public/rearview/vendor/codemirror/doc/baboon.png +0 -0
  1104. data/public/rearview/vendor/codemirror/doc/baboon_vector.svg +153 -0
  1105. data/public/rearview/vendor/codemirror/doc/compress.html +163 -0
  1106. data/public/rearview/vendor/codemirror/doc/docs.css +138 -0
  1107. data/public/rearview/vendor/codemirror/doc/internals.html +497 -0
  1108. data/public/rearview/vendor/codemirror/doc/manual.html +1224 -0
  1109. data/public/rearview/vendor/codemirror/doc/oldrelease.html +305 -0
  1110. data/public/rearview/vendor/codemirror/doc/reporting.html +60 -0
  1111. data/public/rearview/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  1112. data/public/rearview/vendor/codemirror/index.html +472 -0
  1113. data/public/rearview/vendor/codemirror/keymap/emacs.js +1 -0
  1114. data/public/rearview/vendor/codemirror/keymap/vim.js +1 -0
  1115. data/public/rearview/vendor/codemirror/lib/codemirror.css +149 -0
  1116. data/public/rearview/vendor/codemirror/lib/codemirror.js +2 -0
  1117. data/public/rearview/vendor/codemirror/lib/util/closetag.js +20 -0
  1118. data/public/rearview/vendor/codemirror/lib/util/dialog.css +24 -0
  1119. data/public/rearview/vendor/codemirror/lib/util/dialog.js +1 -0
  1120. data/public/rearview/vendor/codemirror/lib/util/foldcode.js +5 -0
  1121. data/public/rearview/vendor/codemirror/lib/util/formatting.js +1 -0
  1122. data/public/rearview/vendor/codemirror/lib/util/javascript-hint.js +1 -0
  1123. data/public/rearview/vendor/codemirror/lib/util/loadmode.js +1 -0
  1124. data/public/rearview/vendor/codemirror/lib/util/match-highlighter.js +1 -0
  1125. data/public/rearview/vendor/codemirror/lib/util/multiplex.js +1 -0
  1126. data/public/rearview/vendor/codemirror/lib/util/overlay.js +1 -0
  1127. data/public/rearview/vendor/codemirror/lib/util/pig-hint.js +1 -0
  1128. data/public/rearview/vendor/codemirror/lib/util/runmode-standalone.js +1 -0
  1129. data/public/rearview/vendor/codemirror/lib/util/runmode.js +1 -0
  1130. data/public/rearview/vendor/codemirror/lib/util/search.js +1 -0
  1131. data/public/rearview/vendor/codemirror/lib/util/searchcursor.js +1 -0
  1132. data/public/rearview/vendor/codemirror/lib/util/simple-hint.css +16 -0
  1133. data/public/rearview/vendor/codemirror/lib/util/simple-hint.js +1 -0
  1134. data/public/rearview/vendor/codemirror/lib/util/xml-hint.js +1 -0
  1135. data/public/rearview/vendor/codemirror/mode/clike/clike.js +1 -0
  1136. data/public/rearview/vendor/codemirror/mode/clike/index.html +102 -0
  1137. data/public/rearview/vendor/codemirror/mode/clike/scala.html +766 -0
  1138. data/public/rearview/vendor/codemirror/mode/clojure/clojure.js +1 -0
  1139. data/public/rearview/vendor/codemirror/mode/clojure/index.html +67 -0
  1140. data/public/rearview/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  1141. data/public/rearview/vendor/codemirror/mode/coffeescript/coffeescript.js +1 -0
  1142. data/public/rearview/vendor/codemirror/mode/coffeescript/index.html +728 -0
  1143. data/public/rearview/vendor/codemirror/mode/commonlisp/commonlisp.js +1 -0
  1144. data/public/rearview/vendor/codemirror/mode/commonlisp/index.html +165 -0
  1145. data/public/rearview/vendor/codemirror/mode/css/css.js +1 -0
  1146. data/public/rearview/vendor/codemirror/mode/css/index.html +58 -0
  1147. data/public/rearview/vendor/codemirror/mode/css/test.js +1 -0
  1148. data/public/rearview/vendor/codemirror/mode/diff/diff.js +1 -0
  1149. data/public/rearview/vendor/codemirror/mode/diff/index.html +105 -0
  1150. data/public/rearview/vendor/codemirror/mode/ecl/ecl.js +1 -0
  1151. data/public/rearview/vendor/codemirror/mode/ecl/index.html +42 -0
  1152. data/public/rearview/vendor/codemirror/mode/erlang/erlang.js +1 -0
  1153. data/public/rearview/vendor/codemirror/mode/erlang/index.html +63 -0
  1154. data/public/rearview/vendor/codemirror/mode/gfm/gfm.js +1 -0
  1155. data/public/rearview/vendor/codemirror/mode/gfm/index.html +48 -0
  1156. data/public/rearview/vendor/codemirror/mode/go/go.js +1 -0
  1157. data/public/rearview/vendor/codemirror/mode/go/index.html +73 -0
  1158. data/public/rearview/vendor/codemirror/mode/groovy/groovy.js +1 -0
  1159. data/public/rearview/vendor/codemirror/mode/groovy/index.html +72 -0
  1160. data/public/rearview/vendor/codemirror/mode/haskell/haskell.js +1 -0
  1161. data/public/rearview/vendor/codemirror/mode/haskell/index.html +61 -0
  1162. data/public/rearview/vendor/codemirror/mode/haxe/haxe.js +1 -0
  1163. data/public/rearview/vendor/codemirror/mode/haxe/index.html +91 -0
  1164. data/public/rearview/vendor/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
  1165. data/public/rearview/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  1166. data/public/rearview/vendor/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
  1167. data/public/rearview/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  1168. data/public/rearview/vendor/codemirror/mode/javascript/index.html +78 -0
  1169. data/public/rearview/vendor/codemirror/mode/javascript/javascript.js +1 -0
  1170. data/public/rearview/vendor/codemirror/mode/jinja2/index.html +38 -0
  1171. data/public/rearview/vendor/codemirror/mode/jinja2/jinja2.js +1 -0
  1172. data/public/rearview/vendor/codemirror/mode/less/index.html +740 -0
  1173. data/public/rearview/vendor/codemirror/mode/less/less.js +1 -0
  1174. data/public/rearview/vendor/codemirror/mode/lua/index.html +73 -0
  1175. data/public/rearview/vendor/codemirror/mode/lua/lua.js +1 -0
  1176. data/public/rearview/vendor/codemirror/mode/markdown/index.html +343 -0
  1177. data/public/rearview/vendor/codemirror/mode/markdown/markdown.js +1 -0
  1178. data/public/rearview/vendor/codemirror/mode/markdown/test.js +1 -0
  1179. data/public/rearview/vendor/codemirror/mode/mysql/index.html +42 -0
  1180. data/public/rearview/vendor/codemirror/mode/mysql/mysql.js +1 -0
  1181. data/public/rearview/vendor/codemirror/mode/ntriples/index.html +33 -0
  1182. data/public/rearview/vendor/codemirror/mode/ntriples/ntriples.js +1 -0
  1183. data/public/rearview/vendor/codemirror/mode/ocaml/index.html +130 -0
  1184. data/public/rearview/vendor/codemirror/mode/ocaml/ocaml.js +1 -0
  1185. data/public/rearview/vendor/codemirror/mode/pascal/LICENSE +7 -0
  1186. data/public/rearview/vendor/codemirror/mode/pascal/index.html +49 -0
  1187. data/public/rearview/vendor/codemirror/mode/pascal/pascal.js +1 -0
  1188. data/public/rearview/vendor/codemirror/mode/perl/LICENSE +19 -0
  1189. data/public/rearview/vendor/codemirror/mode/perl/index.html +63 -0
  1190. data/public/rearview/vendor/codemirror/mode/perl/perl.js +1 -0
  1191. data/public/rearview/vendor/codemirror/mode/php/index.html +49 -0
  1192. data/public/rearview/vendor/codemirror/mode/php/php.js +1 -0
  1193. data/public/rearview/vendor/codemirror/mode/pig/index.html +43 -0
  1194. data/public/rearview/vendor/codemirror/mode/pig/pig.js +1 -0
  1195. data/public/rearview/vendor/codemirror/mode/plsql/index.html +63 -0
  1196. data/public/rearview/vendor/codemirror/mode/plsql/plsql.js +1 -0
  1197. data/public/rearview/vendor/codemirror/mode/properties/index.html +41 -0
  1198. data/public/rearview/vendor/codemirror/mode/properties/properties.js +1 -0
  1199. data/public/rearview/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  1200. data/public/rearview/vendor/codemirror/mode/python/index.html +123 -0
  1201. data/public/rearview/vendor/codemirror/mode/python/python.js +1 -0
  1202. data/public/rearview/vendor/codemirror/mode/r/LICENSE +24 -0
  1203. data/public/rearview/vendor/codemirror/mode/r/index.html +74 -0
  1204. data/public/rearview/vendor/codemirror/mode/r/r.js +1 -0
  1205. data/public/rearview/vendor/codemirror/mode/rpm/changes/changes.js +1 -0
  1206. data/public/rearview/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  1207. data/public/rearview/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  1208. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  1209. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.js +1 -0
  1210. data/public/rearview/vendor/codemirror/mode/rst/index.html +526 -0
  1211. data/public/rearview/vendor/codemirror/mode/rst/rst.js +1 -0
  1212. data/public/rearview/vendor/codemirror/mode/ruby/LICENSE +24 -0
  1213. data/public/rearview/vendor/codemirror/mode/ruby/index.html +172 -0
  1214. data/public/rearview/vendor/codemirror/mode/ruby/ruby.js +1 -0
  1215. data/public/rearview/vendor/codemirror/mode/rust/index.html +49 -0
  1216. data/public/rearview/vendor/codemirror/mode/rust/rust.js +1 -0
  1217. data/public/rearview/vendor/codemirror/mode/scheme/index.html +65 -0
  1218. data/public/rearview/vendor/codemirror/mode/scheme/scheme.js +1 -0
  1219. data/public/rearview/vendor/codemirror/mode/shell/index.html +50 -0
  1220. data/public/rearview/vendor/codemirror/mode/shell/shell.js +1 -0
  1221. data/public/rearview/vendor/codemirror/mode/sieve/LICENSE +23 -0
  1222. data/public/rearview/vendor/codemirror/mode/sieve/index.html +81 -0
  1223. data/public/rearview/vendor/codemirror/mode/sieve/sieve.js +6 -0
  1224. data/public/rearview/vendor/codemirror/mode/smalltalk/index.html +56 -0
  1225. data/public/rearview/vendor/codemirror/mode/smalltalk/smalltalk.js +1 -0
  1226. data/public/rearview/vendor/codemirror/mode/smarty/index.html +83 -0
  1227. data/public/rearview/vendor/codemirror/mode/smarty/smarty.js +1 -0
  1228. data/public/rearview/vendor/codemirror/mode/sparql/index.html +41 -0
  1229. data/public/rearview/vendor/codemirror/mode/sparql/sparql.js +1 -0
  1230. data/public/rearview/vendor/codemirror/mode/stex/index.html +98 -0
  1231. data/public/rearview/vendor/codemirror/mode/stex/stex.js +1 -0
  1232. data/public/rearview/vendor/codemirror/mode/stex/test.js +1 -0
  1233. data/public/rearview/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  1234. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  1235. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +17 -0
  1236. data/public/rearview/vendor/codemirror/mode/tiki/index.html +83 -0
  1237. data/public/rearview/vendor/codemirror/mode/tiki/tiki.css +22 -0
  1238. data/public/rearview/vendor/codemirror/mode/tiki/tiki.js +1 -0
  1239. data/public/rearview/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  1240. data/public/rearview/vendor/codemirror/mode/vb/index.html +89 -0
  1241. data/public/rearview/vendor/codemirror/mode/vb/vb.js +1 -0
  1242. data/public/rearview/vendor/codemirror/mode/vbscript/index.html +43 -0
  1243. data/public/rearview/vendor/codemirror/mode/vbscript/vbscript.js +1 -0
  1244. data/public/rearview/vendor/codemirror/mode/velocity/index.html +104 -0
  1245. data/public/rearview/vendor/codemirror/mode/velocity/velocity.js +1 -0
  1246. data/public/rearview/vendor/codemirror/mode/verilog/index.html +211 -0
  1247. data/public/rearview/vendor/codemirror/mode/verilog/verilog.js +1 -0
  1248. data/public/rearview/vendor/codemirror/mode/xml/index.html +45 -0
  1249. data/public/rearview/vendor/codemirror/mode/xml/xml.js +1 -0
  1250. data/public/rearview/vendor/codemirror/mode/xquery/LICENSE +20 -0
  1251. data/public/rearview/vendor/codemirror/mode/xquery/index.html +223 -0
  1252. data/public/rearview/vendor/codemirror/mode/xquery/test/index.html +27 -0
  1253. data/public/rearview/vendor/codemirror/mode/xquery/test/testBase.js +1 -0
  1254. data/public/rearview/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +1 -0
  1255. data/public/rearview/vendor/codemirror/mode/xquery/test/testMultiAttr.js +1 -0
  1256. data/public/rearview/vendor/codemirror/mode/xquery/test/testNamespaces.js +1 -0
  1257. data/public/rearview/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +1 -0
  1258. data/public/rearview/vendor/codemirror/mode/xquery/test/testQuotes.js +1 -0
  1259. data/public/rearview/vendor/codemirror/mode/xquery/xquery.js +24 -0
  1260. data/public/rearview/vendor/codemirror/mode/yaml/index.html +68 -0
  1261. data/public/rearview/vendor/codemirror/mode/yaml/yaml.js +1 -0
  1262. data/public/rearview/vendor/codemirror/package.json +21 -0
  1263. data/public/rearview/vendor/codemirror/test/driver.js +1 -0
  1264. data/public/rearview/vendor/codemirror/test/index.html +168 -0
  1265. data/public/rearview/vendor/codemirror/test/lint/lint.js +1 -0
  1266. data/public/rearview/vendor/codemirror/test/lint/parse-js.js +60 -0
  1267. data/public/rearview/vendor/codemirror/test/mode_test.css +9 -0
  1268. data/public/rearview/vendor/codemirror/test/mode_test.js +1 -0
  1269. data/public/rearview/vendor/codemirror/test/phantom_driver.js +1 -0
  1270. data/public/rearview/vendor/codemirror/test/run.js +32 -0
  1271. data/public/rearview/vendor/codemirror/test/test.js +1 -0
  1272. data/public/rearview/vendor/codemirror/theme/ambiance.css +67 -0
  1273. data/public/rearview/vendor/codemirror/theme/blackboard.css +23 -0
  1274. data/public/rearview/vendor/codemirror/theme/cobalt.css +17 -0
  1275. data/public/rearview/vendor/codemirror/theme/eclipse.css +24 -0
  1276. data/public/rearview/vendor/codemirror/theme/elegant.css +10 -0
  1277. data/public/rearview/vendor/codemirror/theme/erlang-dark.css +20 -0
  1278. data/public/rearview/vendor/codemirror/theme/lesser-dark.css +37 -0
  1279. data/public/rearview/vendor/codemirror/theme/monokai.css +23 -0
  1280. data/public/rearview/vendor/codemirror/theme/neat.css +9 -0
  1281. data/public/rearview/vendor/codemirror/theme/night.css +19 -0
  1282. data/public/rearview/vendor/codemirror/theme/rubyblue.css +19 -0
  1283. data/public/rearview/vendor/codemirror/theme/vibrant-ink.css +24 -0
  1284. data/public/rearview/vendor/codemirror/theme/xq-dark.css +42 -0
  1285. data/public/rearview/vendor/handlebars/js/handlebars.js +2 -0
  1286. data/public/rearview/vendor/highcharts/examples/area-basic/index.htm +94 -0
  1287. data/public/rearview/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  1288. data/public/rearview/vendor/highcharts/examples/area-missing/index.htm +85 -0
  1289. data/public/rearview/vendor/highcharts/examples/area-negative/index.htm +55 -0
  1290. data/public/rearview/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  1291. data/public/rearview/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  1292. data/public/rearview/vendor/highcharts/examples/arearange/index.htm +62 -0
  1293. data/public/rearview/vendor/highcharts/examples/areaspline/index.htm +85 -0
  1294. data/public/rearview/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  1295. data/public/rearview/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  1296. data/public/rearview/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  1297. data/public/rearview/vendor/highcharts/examples/column-basic/index.htm +97 -0
  1298. data/public/rearview/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  1299. data/public/rearview/vendor/highcharts/examples/column-negative/index.htm +55 -0
  1300. data/public/rearview/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  1301. data/public/rearview/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  1302. data/public/rearview/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  1303. data/public/rearview/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  1304. data/public/rearview/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  1305. data/public/rearview/vendor/highcharts/examples/columnrange/index.htm +87 -0
  1306. data/public/rearview/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  1307. data/public/rearview/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  1308. data/public/rearview/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  1309. data/public/rearview/vendor/highcharts/examples/combo/index.htm +102 -0
  1310. data/public/rearview/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  1311. data/public/rearview/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  1312. data/public/rearview/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  1313. data/public/rearview/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  1314. data/public/rearview/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  1315. data/public/rearview/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  1316. data/public/rearview/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  1317. data/public/rearview/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  1318. data/public/rearview/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  1319. data/public/rearview/vendor/highcharts/examples/line-basic/index.htm +81 -0
  1320. data/public/rearview/vendor/highcharts/examples/line-labels/index.htm +66 -0
  1321. data/public/rearview/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  1322. data/public/rearview/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  1323. data/public/rearview/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  1324. data/public/rearview/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  1325. data/public/rearview/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  1326. data/public/rearview/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  1327. data/public/rearview/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  1328. data/public/rearview/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  1329. data/public/rearview/vendor/highcharts/examples/polar/index.htm +79 -0
  1330. data/public/rearview/vendor/highcharts/examples/scatter/index.htm +197 -0
  1331. data/public/rearview/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  1332. data/public/rearview/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  1333. data/public/rearview/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  1334. data/public/rearview/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  1335. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  1336. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  1337. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  1338. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  1339. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  1340. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  1341. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  1342. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  1343. data/public/rearview/vendor/highcharts/exporting-server/java/install.txt +10 -0
  1344. data/public/rearview/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  1345. data/public/rearview/vendor/highcharts/exporting-server/php/index.php +112 -0
  1346. data/public/rearview/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  1347. data/public/rearview/vendor/highcharts/graphics/skies.jpg +0 -0
  1348. data/public/rearview/vendor/highcharts/graphics/snow.png +0 -0
  1349. data/public/rearview/vendor/highcharts/graphics/sun.png +0 -0
  1350. data/public/rearview/vendor/highcharts/index.htm +79 -0
  1351. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.js +10 -0
  1352. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.src.js +10 -0
  1353. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.js +11 -0
  1354. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.src.js +11 -0
  1355. data/public/rearview/vendor/highcharts/js/highcharts-more.js +9 -0
  1356. data/public/rearview/vendor/highcharts/js/highcharts.js +12 -0
  1357. data/public/rearview/vendor/highcharts/js/highcharts.src.js +12 -0
  1358. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.js +23 -0
  1359. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.src.js +29 -0
  1360. data/public/rearview/vendor/highcharts/js/modules/data.js +9 -0
  1361. data/public/rearview/vendor/highcharts/js/modules/data.src.js +9 -0
  1362. data/public/rearview/vendor/highcharts/js/modules/exporting.js +10 -0
  1363. data/public/rearview/vendor/highcharts/js/modules/exporting.src.js +10 -0
  1364. data/public/rearview/vendor/highcharts/js/themes/dark-blue.js +1 -0
  1365. data/public/rearview/vendor/highcharts/js/themes/dark-green.js +1 -0
  1366. data/public/rearview/vendor/highcharts/js/themes/gray.js +1 -0
  1367. data/public/rearview/vendor/highcharts/js/themes/grid.js +1 -0
  1368. data/public/rearview/vendor/highcharts/js/themes/skies.js +1 -0
  1369. data/public/rearview/vendor/jasmine/SpecRunner.html +53 -0
  1370. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  1371. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +1 -0
  1372. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +80 -0
  1373. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2 -0
  1374. data/public/rearview/vendor/jasmine/spec/PlayerSpec.js +1 -0
  1375. data/public/rearview/vendor/jasmine/spec/SpecHelper.js +1 -0
  1376. data/public/rearview/vendor/jasmine/src/Player.js +1 -0
  1377. data/public/rearview/vendor/jasmine/src/Song.js +1 -0
  1378. data/public/rearview/vendor/jquery/js/jquery.js +24 -0
  1379. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  1380. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1381. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1382. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1383. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1384. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1385. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1386. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1387. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1388. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1389. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1390. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1391. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1392. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1393. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1394. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +732 -0
  1395. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +6 -0
  1396. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  1397. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +1 -0
  1398. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  1399. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  1400. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  1401. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  1402. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  1403. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  1404. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  1405. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  1406. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  1407. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  1408. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  1409. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  1410. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  1411. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  1412. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  1413. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  1414. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  1415. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +1 -0
  1416. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +1 -0
  1417. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +1 -0
  1418. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +1 -0
  1419. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  1420. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  1421. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  1422. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  1423. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  1424. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +16 -0
  1425. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  1426. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  1427. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  1428. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  1429. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  1430. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  1431. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  1432. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  1433. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  1434. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  1435. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  1436. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  1437. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  1438. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  1439. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  1440. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  1441. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  1442. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  1443. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  1444. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  1445. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  1446. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  1447. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  1448. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  1449. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  1450. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  1451. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  1452. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  1453. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  1454. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  1455. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  1456. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  1457. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  1458. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  1459. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  1460. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  1461. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  1462. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  1463. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  1464. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  1465. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  1466. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  1467. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  1468. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  1469. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  1470. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  1471. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  1472. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  1473. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  1474. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  1475. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  1476. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  1477. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  1478. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  1479. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  1480. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  1481. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  1482. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  1483. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  1484. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  1485. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  1486. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  1487. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  1488. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  1489. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  1490. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  1491. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  1492. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  1493. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  1494. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  1495. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  1496. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  1497. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  1498. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +14 -0
  1499. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +14 -0
  1500. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +11 -0
  1501. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +13 -0
  1502. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +34 -0
  1503. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +178 -0
  1504. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +37 -0
  1505. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +24 -0
  1506. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  1507. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  1508. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1509. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1510. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1511. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1512. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1513. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1514. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1515. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1516. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  1517. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  1518. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  1519. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  1520. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  1521. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +599 -0
  1522. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +659 -0
  1523. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +269 -0
  1524. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +73 -0
  1525. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +174 -0
  1526. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +380 -0
  1527. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  1528. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1529. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1530. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1531. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1532. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1533. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1534. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1535. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1536. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  1537. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  1538. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  1539. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  1540. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  1541. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +6 -0
  1542. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +4 -0
  1543. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +4 -0
  1544. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +4 -0
  1545. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  1546. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1547. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1548. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1549. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1550. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1551. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1552. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1553. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1554. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1555. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1556. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1557. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1558. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1559. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1560. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +600 -0
  1561. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +659 -0
  1562. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +269 -0
  1563. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +73 -0
  1564. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +174 -0
  1565. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +380 -0
  1566. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  1567. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1568. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1569. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1570. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1571. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1572. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1573. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1574. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1575. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1576. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  1577. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  1578. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  1579. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  1580. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  1581. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +6 -0
  1582. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +4 -0
  1583. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +4 -0
  1584. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +4 -0
  1585. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  1586. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  1587. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  1588. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  1589. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  1590. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  1591. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  1592. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  1593. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  1594. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  1595. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  1596. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  1597. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  1598. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  1599. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  1600. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  1601. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  1602. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  1603. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  1604. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  1605. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +7 -0
  1606. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +1 -0
  1607. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +1 -0
  1608. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +1 -0
  1609. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +1 -0
  1610. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +1 -0
  1611. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +1 -0
  1612. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +1 -0
  1613. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +1 -0
  1614. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +1 -0
  1615. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +1 -0
  1616. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +1 -0
  1617. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +1 -0
  1618. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +1 -0
  1619. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +1 -0
  1620. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +1 -0
  1621. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +1 -0
  1622. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +1 -0
  1623. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +1 -0
  1624. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +1 -0
  1625. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +1 -0
  1626. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +1 -0
  1627. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +1 -0
  1628. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +1 -0
  1629. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +1 -0
  1630. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +1 -0
  1631. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +1 -0
  1632. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +1 -0
  1633. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +1 -0
  1634. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +1 -0
  1635. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +1 -0
  1636. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +1 -0
  1637. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +1 -0
  1638. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +1 -0
  1639. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +1 -0
  1640. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +1 -0
  1641. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +1 -0
  1642. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +1 -0
  1643. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +1 -0
  1644. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +1 -0
  1645. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +1 -0
  1646. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +1 -0
  1647. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +1 -0
  1648. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +1 -0
  1649. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +1 -0
  1650. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +1 -0
  1651. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +1 -0
  1652. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +1 -0
  1653. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +1 -0
  1654. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +1 -0
  1655. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +1 -0
  1656. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +1 -0
  1657. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +1 -0
  1658. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +1 -0
  1659. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +1 -0
  1660. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +1 -0
  1661. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +1 -0
  1662. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +1 -0
  1663. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +1 -0
  1664. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +1 -0
  1665. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +1 -0
  1666. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +1 -0
  1667. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +1 -0
  1668. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +1 -0
  1669. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +1 -0
  1670. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +1 -0
  1671. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +1 -0
  1672. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +1 -0
  1673. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +1 -0
  1674. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +1 -0
  1675. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +1 -0
  1676. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +1 -0
  1677. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +1 -0
  1678. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +1 -0
  1679. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +19 -0
  1680. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +12 -0
  1681. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +16 -0
  1682. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +17 -0
  1683. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +18 -0
  1684. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +15 -0
  1685. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +15 -0
  1686. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +15 -0
  1687. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +15 -0
  1688. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +15 -0
  1689. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +15 -0
  1690. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +15 -0
  1691. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +15 -0
  1692. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +15 -0
  1693. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +15 -0
  1694. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +15 -0
  1695. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +15 -0
  1696. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +15 -0
  1697. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +23 -0
  1698. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +15 -0
  1699. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +12 -0
  1700. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  1701. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  1702. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  1703. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  1704. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  1705. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  1706. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  1707. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  1708. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  1709. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  1710. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  1711. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  1712. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  1713. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  1714. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  1715. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  1716. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  1717. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  1718. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  1719. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  1720. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  1721. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  1722. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  1723. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  1724. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  1725. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  1726. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  1727. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  1728. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  1729. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  1730. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  1731. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  1732. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  1733. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  1734. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  1735. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  1736. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  1737. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  1738. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  1739. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  1740. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  1741. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  1742. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  1743. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  1744. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  1745. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  1746. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  1747. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  1748. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  1749. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  1750. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  1751. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  1752. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  1753. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  1754. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  1755. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  1756. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  1757. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  1758. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  1759. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  1760. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  1761. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  1762. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  1763. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  1764. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  1765. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  1766. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  1767. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  1768. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  1769. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  1770. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  1771. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  1772. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  1773. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  1774. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +8 -0
  1775. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  1776. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  1777. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  1778. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  1779. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  1780. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  1781. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  1782. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  1783. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  1784. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  1785. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  1786. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  1787. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  1788. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  1789. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  1790. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  1791. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  1792. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  1793. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  1794. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  1795. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +10 -0
  1796. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +10 -0
  1797. data/public/rearview/vendor/jquery/plugins/jquery.validate.js +14 -0
  1798. data/public/rearview/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  1799. data/public/rearview/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +11 -0
  1800. data/public/rearview/vendor/less/js/less.js +13 -0
  1801. data/public/rearview/vendor/parsley/js/parsley.js +1 -0
  1802. data/public/rearview/vendor/parsley/js/parsley.min.js +1 -0
  1803. data/public/rearview/vendor/require/js/require.js +31 -0
  1804. data/public/rearview/vendor/require/plugins/domready/domready.js +7 -0
  1805. data/public/rearview/vendor/timeline/examples/example.json +38 -0
  1806. data/public/rearview/vendor/timeline/examples/timeline_json.html +143 -0
  1807. data/public/rearview/vendor/timeline/timeline.css +114 -0
  1808. data/public/rearview/vendor/timeline/timeline.js +45 -0
  1809. data/public/rearview/vendor/underscore/js/underscore.js +5 -0
  1810. data/public/rearview/vendor/underscore/plugins/underscore-string/js/underscore.string.js +10 -0
  1811. data/public/rearview/vendor/xdate/js/xdate.js +1 -0
  1812. data/script/rails +8 -0
  1813. data/tasks/rearview.rake +9 -0
  1814. metadata +1814 -3
@@ -0,0 +1,295 @@
1
+
2
+ css/rearview.css
3
+ ----------------
4
+ css/rearview.css
5
+
6
+ vendor/bootstrap/css/bootstrap-responsive.css
7
+ ----------------
8
+ vendor/bootstrap/css/bootstrap-responsive.css
9
+
10
+ vendor/bootstrap/css/bootstrap-responsive.min.css
11
+ ----------------
12
+ vendor/bootstrap/css/bootstrap-responsive.min.css
13
+
14
+ vendor/bootstrap/css/bootstrap.css
15
+ ----------------
16
+ vendor/bootstrap/css/bootstrap.css
17
+
18
+ vendor/bootstrap/css/bootstrap.min.css
19
+ ----------------
20
+ vendor/bootstrap/css/bootstrap.min.css
21
+
22
+ vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css
23
+ ----------------
24
+ vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css
25
+
26
+ vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css
27
+ ----------------
28
+ vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css
29
+
30
+ vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css
31
+ ----------------
32
+ vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css
33
+
34
+ vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css
35
+ ----------------
36
+ vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css
37
+
38
+ vendor/bootstrap/plugins/font-awesome/css/font-awesome.css
39
+ ----------------
40
+ vendor/bootstrap/plugins/font-awesome/css/font-awesome.css
41
+
42
+ vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css
43
+ ----------------
44
+ vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css
45
+
46
+ vendor/codemirror/doc/docs.css
47
+ ----------------
48
+ vendor/codemirror/doc/docs.css
49
+
50
+ vendor/codemirror/lib/codemirror.css
51
+ ----------------
52
+ vendor/codemirror/lib/codemirror.css
53
+
54
+ vendor/codemirror/lib/util/dialog.css
55
+ ----------------
56
+ vendor/codemirror/lib/util/dialog.css
57
+
58
+ vendor/codemirror/lib/util/simple-hint.css
59
+ ----------------
60
+ vendor/codemirror/lib/util/simple-hint.css
61
+
62
+ vendor/codemirror/mode/rpm/spec/spec.css
63
+ ----------------
64
+ vendor/codemirror/mode/rpm/spec/spec.css
65
+
66
+ vendor/codemirror/mode/tiddlywiki/tiddlywiki.css
67
+ ----------------
68
+ vendor/codemirror/mode/tiddlywiki/tiddlywiki.css
69
+
70
+ vendor/codemirror/mode/tiki/tiki.css
71
+ ----------------
72
+ vendor/codemirror/mode/tiki/tiki.css
73
+
74
+ vendor/codemirror/test/mode_test.css
75
+ ----------------
76
+ vendor/codemirror/test/mode_test.css
77
+
78
+ vendor/codemirror/theme/ambiance.css
79
+ ----------------
80
+ vendor/codemirror/theme/ambiance.css
81
+
82
+ vendor/codemirror/theme/blackboard.css
83
+ ----------------
84
+ vendor/codemirror/theme/blackboard.css
85
+
86
+ vendor/codemirror/theme/cobalt.css
87
+ ----------------
88
+ vendor/codemirror/theme/cobalt.css
89
+
90
+ vendor/codemirror/theme/eclipse.css
91
+ ----------------
92
+ vendor/codemirror/theme/eclipse.css
93
+
94
+ vendor/codemirror/theme/elegant.css
95
+ ----------------
96
+ vendor/codemirror/theme/elegant.css
97
+
98
+ vendor/codemirror/theme/erlang-dark.css
99
+ ----------------
100
+ vendor/codemirror/theme/erlang-dark.css
101
+
102
+ vendor/codemirror/theme/lesser-dark.css
103
+ ----------------
104
+ vendor/codemirror/theme/lesser-dark.css
105
+
106
+ vendor/codemirror/theme/monokai.css
107
+ ----------------
108
+ vendor/codemirror/theme/monokai.css
109
+
110
+ vendor/codemirror/theme/neat.css
111
+ ----------------
112
+ vendor/codemirror/theme/neat.css
113
+
114
+ vendor/codemirror/theme/night.css
115
+ ----------------
116
+ vendor/codemirror/theme/night.css
117
+
118
+ vendor/codemirror/theme/rubyblue.css
119
+ ----------------
120
+ vendor/codemirror/theme/rubyblue.css
121
+
122
+ vendor/codemirror/theme/vibrant-ink.css
123
+ ----------------
124
+ vendor/codemirror/theme/vibrant-ink.css
125
+
126
+ vendor/codemirror/theme/xq-dark.css
127
+ ----------------
128
+ vendor/codemirror/theme/xq-dark.css
129
+
130
+ vendor/jasmine/lib/jasmine-1.3.1/jasmine.css
131
+ ----------------
132
+ vendor/jasmine/lib/jasmine-1.3.1/jasmine.css
133
+
134
+ vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css
135
+ ----------------
136
+ vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css
137
+
138
+ vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css
139
+ ----------------
140
+ vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css
141
+
142
+ vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css
143
+ ----------------
144
+ vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css
145
+
146
+ vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css
147
+ ----------------
148
+ vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css
149
+
150
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css
151
+ ----------------
152
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css
153
+
154
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css
155
+ ----------------
156
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css
157
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css
158
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css
159
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css
160
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css
161
+
162
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css
163
+ ----------------
164
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css
165
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css
166
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css
167
+
168
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css
169
+ ----------------
170
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css
171
+
172
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css
173
+ ----------------
174
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css
175
+
176
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css
177
+ ----------------
178
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css
179
+
180
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css
181
+ ----------------
182
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css
183
+
184
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css
185
+ ----------------
186
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css
187
+
188
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css
189
+ ----------------
190
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css
191
+
192
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css
193
+ ----------------
194
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css
195
+
196
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css
197
+ ----------------
198
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css
199
+
200
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css
201
+ ----------------
202
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css
203
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css
204
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css
205
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css
206
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css
207
+
208
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css
209
+ ----------------
210
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css
211
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css
212
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css
213
+
214
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css
215
+ ----------------
216
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css
217
+
218
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css
219
+ ----------------
220
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css
221
+
222
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css
223
+ ----------------
224
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css
225
+
226
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css
227
+ ----------------
228
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css
229
+
230
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css
231
+ ----------------
232
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css
233
+
234
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css
235
+ ----------------
236
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css
237
+
238
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css
239
+ ----------------
240
+ vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css
241
+
242
+ vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css
243
+ ----------------
244
+ vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css
245
+
246
+ vendor/timeline/timeline.css
247
+ ----------------
248
+ vendor/timeline/timeline.css
249
+
250
+ js/main.js
251
+ ----------------
252
+ vendor/jquery/js/jquery.js
253
+ vendor/underscore/js/underscore.js
254
+ vendor/backbone/js/backbone.js
255
+ vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js
256
+ js/util/templar.js
257
+ vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js
258
+ js/route/index.js
259
+ vendor/handlebars/js/handlebars.js
260
+ vendor/highcharts/js/highcharts.js
261
+ vendor/underscore/plugins/underscore-string/js/underscore.string.js
262
+ js/util/highcharts-gray-theme.js
263
+ vendor/xdate/js/xdate.js
264
+ js/view/base.js
265
+ js/view/alert.js
266
+ js/view/primarynav.js
267
+ js/view/header.js
268
+ js/model/base.js
269
+ js/model/monitor.js
270
+ vendor/codemirror/lib/codemirror.js
271
+ vendor/codemirror/mode/ruby/ruby.js
272
+ vendor/jquery/plugins/jquery.validate.js
273
+ vendor/parsley/js/parsley.min.js
274
+ js/view/addmonitor.js
275
+ js/collection/monitor.js
276
+ js/view/smallmonitor.js
277
+ js/view/deletemonitor.js
278
+ js/view/expandedmonitor.js
279
+ js/view/resetmonitor.js
280
+ vendor/timeline/timeline.js
281
+ js/view/alerttimeline.js
282
+ js/view/dashboard.js
283
+ js/model/dashboard.js
284
+ js/view/adddashboard.js
285
+ js/view/addcategory.js
286
+ js/view/dashboardtile.js
287
+ js/view/ecosystem.js
288
+ js/view/secondarynav.js
289
+ js/model/user.js
290
+ js/collection/dashboard.js
291
+ vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js
292
+ vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js
293
+ vendor/bootstrap/js/bootstrap.js
294
+ js/app.js
295
+ js/main.js
@@ -0,0 +1 @@
1
+ html{height:100%}body{background:#373737;height:100%}hr{border-color:#b6b3a6}@font-face{font-family:'ProximaBold';src:url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot?') format('eot'),url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff') format('woff'),url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf') format('truetype')}@font-face{font-family:'ProximaRegular';src:url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot?') format('eot'),url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff') format('woff'),url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf') format('truetype')}.ls-rearview .nav-primary .navbar-inner{border-bottom:1px solid #000;background:#171717;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#171717),color-stop(1,#555));background:-ms-linear-gradient(bottom,#171717,#555);background:-moz-linear-gradient(center bottom,#171717 0,#555 100%)}.ls-rearview .nav-primary.navbar .nav>.active>a,.ls-rearview .nav-primary.navbar .nav>.active>a:hover,.ls-rearview .nav-primary.navbar .nav>.active>a:focus{background:#2d4249;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2d4249),color-stop(1,#52676e));background:-ms-linear-gradient(bottom,#2d4249,#52676e);background:-moz-linear-gradient(center bottom,#2d4249 0,#52676e 100%);font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .nav-primary.navbar .nav>li>.dropdown-menu:after{top:-8px}.ls-rearview .nav-primary.navbar .nav>li>.dropdown-menu:before{border:0;content:none;display:none}.ls-rearview .nav-primary.navbar .nav>li>a{color:#9d9a94;text-shadow:none;text-transform:uppercase;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .nav-primary.navbar .nav>li.active a{color:#fff}.ls-rearview .nav-primary.navbar .brand{margin-top:-5px;padding-bottom:0;color:#fff;text-shadow:none;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:20px}.ls-rearview .nav-primary.navbar .brand img{vertical-align:-6px;margin-right:8px}.ls-rearview .nav-primary.navbar .dropdown-menu{padding:0;border:2px solid #fff;background:rgba(0,0,0,0.75);box-shadow:0 0 7px #333;-moz-box-shadow:0 0 7px #333;-webkit-box-shadow:0 0 7px #333}.ls-rearview .nav-primary.navbar .dropdown-menu a{color:#fff;line-height:30px;text-transform:uppercase}.ls-rearview .nav-primary.navbar .dropdown-menu li{background:0;border-bottom:1px solid black;border-top:1px solid #555}.ls-rearview .nav-primary.navbar .dropdown-menu li:first-child{border-top:0}.ls-rearview .nav-primary.navbar .dropdown-menu li:last-child{border-bottom:0}.ls-rearview .nav-primary.navbar .dropdown-menu li:first-child a:hover{border-radius:5px 5px 0 0}.ls-rearview .nav-primary.navbar .dropdown-menu li:last-child a:hover{border-radius:0 0 5px 5px}.ls-rearview .footer-action-bar .navbar-inner{background:#f5f4ee;border:0}.ls-rearview .footer-action-bar .navbar-inner a{text-transform:uppercase}.ls-rearview .navbar .nav li.dropdown.open>.dropdown-toggle,.ls-rearview .navbar .nav li.dropdown.active>.dropdown-toggle,.ls-rearview .navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background:#2d4249;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2d4249),color-stop(1,#52676e));background:-ms-linear-gradient(bottom,#2d4249,#52676e);background:-moz-linear-gradient(center bottom,#2d4249 0,#52676e 100%)}.ls-rearview .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#a29f99;border-bottom-color:#a29f99}.ls-rearview .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.ls-rearview .navbar .nav li.dropdown.active>.dropdown-toggle .caret,.ls-rearview .navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#b9ced5;border-bottom-color:#b9ced5}.ls-rearview .header{margin:2em 0 1em 0;padding:14px 20px 0 20px;background:#f5f4ee;box-shadow:0 18px 60px #000;-moz-box-shadow:0 18px 60px #000;-webkit-box-shadow:0 18px 60px #000}.ls-rearview .header hr{margin:0;border-top:1px solid #b7b3a6;border-bottom:1px solid #b7b3a6;border-radius:4px}.ls-rearview .header .current-application-title{float:left;width:80%;overflow:hidden;white-space:nowrap}.ls-rearview .header .current-application-title h2{text-transform:uppercase}.ls-rearview .header .current-application-title h2,.ls-rearview .header .current-application-title h3{display:inline;vertical-align:baseline;color:#444240;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:30px}.ls-rearview .header .current-application-title h3{color:#7f7c78;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:20px}.ls-rearview .header .go-back{line-height:38px;text-decoration:none;cursor:pointer;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:18px}.ls-rearview .header .go-back strong{font-weight:normal;font-size:38px;vertical-align:sub}.ls-rearview .header .date{padding:16px 0 0 0;float:right;text-align:right;width:20%;color:#666;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .header .date strong{color:#444;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .modal{width:880px;margin-top:-284px;margin-left:-440px;overflow:visible;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .modal h1{margin:0;padding:12px;color:#666;background:#c9c7c3;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview .modal h2{margin:0;color:#666;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:22px}.ls-rearview .modal .hero-unit{margin-bottom:10px;padding:16px;background:#faf9f6;border:1px solid #dedddc;border-radius:2px}.ls-rearview .modal .hero-unit fieldset.bottom{margin-bottom:0}.ls-rearview .modal .hero-unit.expressions-metrics,.ls-rearview .modal .hero-unit.test-graph{margin-right:16px;width:287px;float:left}.ls-rearview .modal .hero-unit.expressions-metrics .output,.ls-rearview .modal .hero-unit.test-graph .output{display:block;float:none}.ls-rearview .modal .hero-unit.expressions-metrics .output textarea,.ls-rearview .modal .hero-unit.test-graph .output textarea{width:100%}.ls-rearview .modal .hero-unit.expressions-metrics{width:480px}.ls-rearview .modal .hero-unit.test-graph{margin-right:0}.ls-rearview .modal .modal-header{padding:14px}.ls-rearview .modal .modal-header .close,.ls-rearview .modal .modal-header .back{margin:-17px;padding:0;position:absolute;top:0;left:0;background:url(../img/close-button.png) no-repeat 0 0;height:38px;width:38px;text-indent:-9000px;opacity:.9;z-index:10000}.ls-rearview .modal .modal-header .back{margin:-15px;display:none;border:0;background:url(../img/back-button.png) no-repeat 0 0}.ls-rearview .modal .modal-header .close:hover,.ls-rearview .modal .modal-header .back:hover{opacity:1}.ls-rearview .modal .modal-body{padding-top:0;max-height:480px}.ls-rearview .modal .modal-footer{background:#e4e3e1}.ls-rearview .modal form{margin:0}.ls-rearview .modal fieldset.set-schedule{margin-right:16px;margin-bottom:10px;float:none;display:block}.ls-rearview .modal fieldset.day-month-picker{margin-right:0;margin-bottom:10px;float:left;display:block}.ls-rearview .modal fieldset.pager-duty,.ls-rearview .modal fieldset.test-in-graph{margin-right:0}.ls-rearview .modal fieldset.pager-duty textarea,.ls-rearview .modal fieldset.description textarea,.ls-rearview .modal fieldset.monitor-name input{width:378px}.ls-rearview .modal fieldset.expressions textarea,.ls-rearview .modal fieldset.metrics textarea{width:458px}.ls-rearview .modal.modal-large .hero-unit.expressions-metrics{float:left}.ls-rearview .modal.modal-large .hero-unit.test-graph{margin-left:530px;float:none;width:auto!important}.ls-rearview .graph{margin-bottom:12px;border:2px solid #999;border-radius:2px;background:#333;min-height:150px;overflow:hidden}.ls-rearview .graph .highcharts-container{top:0!important}.ls-rearview .graph .highcharts-container .highcharts-loading{margin:0!important;padding:0;position:absolute;top:0!important;left:0!important;opacity:.8!important;height:100%!important;width:100%!important;background:#000!important}.ls-rearview .graph .highcharts-container .highcharts-loading span{top:35%!important;color:#999;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview input[type=text],.ls-rearview textarea,.ls-rearview select{background:#333;border:1px solid #b6b3a6;color:#adabac}.ls-rearview input.input-minutes-back{width:73px}.ls-rearview input.date-picker{width:114px}.ls-rearview .previous-errors select{width:155px}.ls-rearview fieldset{margin-right:16px;float:left;display:inline-block}.ls-rearview .form-horizontal .controls{margin-left:76px}.ls-rearview .form-horizontal .control-label{float:left;padding-top:5px;text-align:right;width:0}.ls-rearview .monitor-panel{width:90%}.ls-rearview .monitor-wrap{margin:0;padding:0 0 90px 0;overflow:visible;width:100%;position:relative;z-index:1;-webkit-perspective:0;-moz-perspective:0;perspective:0}.ls-rearview .monitor-wrap .monitor-grid{margin:0}.ls-rearview .monitor-wrap .monitor-grid .row-fluid{display:block}.ls-rearview .monitor-wrap .monitor-grid .small-monitor:last{margin-right:0;padding-right:0}.ls-rearview .monitor-wrap .edit-monitor-wrap{display:block;height:inherit;width:100%;z-index:100;top:0;right:4000px;position:absolute;transition:right .4s;-moz-transition:right .4s;-webkit-transition:right .4s}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor{background:#545954;border-radius:7px;margin:0 6%;padding:8px 7px;min-height:500px}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor .data-view{background:#767a76;border-radius:4px;float:left;width:66%}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor .metrics-schedule{background:#767a76;border-radius:4px}.ls-rearview .monitor-wrap .edit-monitor-wrap.active{right:0}.ls-rearview .small-monitor-wrap{position:relative;z-index:1}.ls-rearview .small-monitor{margin-bottom:20px;margin-top:0;border-radius:4px;-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-o-transition:-o-transform 1s;transition:transform 1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform-origin:right center;-moz-transform-origin:right center;-o-transform-origin:right center;transform-origin:right center}.ls-rearview .small-monitor h1{margin:0 0 0 3px;color:#fff;line-height:22px;float:left;display:inline-block;cursor:pointer;width:60%;overflow:hidden;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:16px}.ls-rearview .small-monitor h1 span{display:block;width:9999999px}.ls-rearview .small-monitor .btn-group{margin:3px auto 0 auto;width:180px;display:block}.ls-rearview .small-monitor .graph{margin:0;position:relative;overflow:hidden;min-height:220px}.ls-rearview .small-monitor .btn-group.activate{margin:0 auto;display:inline-block;float:right;width:52px}.ls-rearview .small-monitor .header-controls{margin:0 0 3px 0}.ls-rearview .small-monitor .overlay{margin:0;padding:0;position:absolute;top:0;left:0;height:100%;width:100%;background:#000;opacity:.7}.ls-rearview .small-monitor .overlay h1{margin-top:75px;color:#999;width:100%;height:100%;text-align:center;line-height:36px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview .small-monitor figure{margin:0;display:block;border-radius:4px}.ls-rearview .small-monitor .back,.ls-rearview .small-monitor .front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.ls-rearview .small-monitor .back{position:absolute;left:0;top:0;width:100%;background:#f5f4ee;-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg)}.ls-rearview .small-monitor .back fieldset{display:block;height:100%;width:100%;padding:0;margin:0}.ls-rearview .small-monitor .back .description{border:2px solid #999;margin:3px 3px 48px 3px;min-height:200px;overflow:auto;background:#333}.ls-rearview .small-monitor .back p{margin:3px 7px;color:#adabac;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .small-monitor .back .btn-wrap{margin:4px;position:absolute;right:0;bottom:0}.ls-rearview .small-monitor .front{padding:3px;background:#545954}.ls-rearview .small-monitor *{-webkit-transform-style:preserve-3d}.ls-rearview .small-monitor.flipped{-webkit-transform:translateX(-100%) rotateY(-180deg);-moz-transform:translateX(-100%) rotateY(-180deg);-ms-transform:translateX(-100%) rotateY(-180deg);-o-transform:translateX(-100%) rotateY(-180deg);transform:translateX(-100%) rotateY(-180deg)}.ls-rearview .small-monitor.active .graph,.ls-rearview .small-monitor.active .header-controls{visibility:hidden;-webkit-backface-visibility:hidden}.ls-rearview .expanded-monitor{margin:0 6%;padding:2px;position:relative;background:#545954;border-radius:5px;color:#fff;min-height:400px;min-width:900px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .expanded-monitor .expressions{width:50%}.ls-rearview .expanded-monitor .metrics-test{width:48%}.ls-rearview .expanded-monitor .metrics-test .metrics{margin-bottom:10px;display:block;clear:both;width:100%}.ls-rearview .expanded-monitor .metrics-test .test-in-graph{margin-right:0}.ls-rearview .expanded-monitor .metrics-test .save-changes hr{border-color:#b6b3a6}.ls-rearview .expanded-monitor .data-view{margin:3px 3px 10px 3px;padding:3px;float:left;width:66%;background:#767a76;border-radius:4px}.ls-rearview .expanded-monitor .metrics-schedule{margin:3px}.ls-rearview .expanded-monitor .metrics-schedule fieldset.pager-duty{margin-right:0}.ls-rearview .expanded-monitor .metrics-schedule fieldset.pager-duty textarea,.ls-rearview .expanded-monitor .metrics-schedule fieldset.description textarea{width:320px}.ls-rearview .expanded-monitor .metrics-schedule .day-month-picker .btn-group{margin-bottom:10px}.ls-rearview .expanded-monitor .metrics-schedule .button-view{margin:10px 0 0 0;padding:3px;background:#767a76;border-radius:4px}.ls-rearview .expanded-monitor label{margin-bottom:3px;color:#b6b3a6;font-size:14px;text-transform:uppercase}.ls-rearview .expanded-monitor label i{font-size:10px;font-style:normal}.ls-rearview .expanded-monitor .name-field{margin-bottom:3px;display:none}.ls-rearview .expanded-monitor .name-field input{margin-bottom:0}.ls-rearview .expanded-monitor textarea:focus,.ls-rearview .expanded-monitor input[type="text"]:focus,.ls-rearview .expanded-monitor input[type="password"]:focus,.ls-rearview .expanded-monitor input[type="datetime"]:focus,.ls-rearview .expanded-monitor input[type="datetime-local"]:focus,.ls-rearview .expanded-monitor input[type="date"]:focus,.ls-rearview .expanded-monitor input[type="month"]:focus,.ls-rearview .expanded-monitor input[type="time"]:focus,.ls-rearview .expanded-monitor input[type="week"]:focus,.ls-rearview .expanded-monitor input[type="number"]:focus,.ls-rearview .expanded-monitor input[type="email"]:focus,.ls-rearview .expanded-monitor input[type="url"]:focus,.ls-rearview .expanded-monitor input[type="search"]:focus,.ls-rearview .expanded-monitor input[type="tel"]:focus,.ls-rearview .expanded-monitor input[type="color"]:focus,.ls-rearview .expanded-monitor .uneditable-input:focus{border-color:#b6b3a6;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(182,179,166,0.7);outline:0 none}.ls-rearview .authentication-stats{margin:0 auto;width:100%}.ls-rearview .authentication-stats label{padding:5px 7px;display:inline-block;cursor:text}.ls-rearview .authentication-stats label:hover{padding:4px 6px;border:1px solid #b6b3a6;min-width:220px;background:#333;border-radius:3px;color:#adabac}.ls-rearview .authentication-stats .graph{margin:0 3px 3px 0;padding:3px;height:200px;border:3px solid #b6b3a6;border-radius:4px;background:#000;overflow:hidden;clear:both}.ls-rearview .alerts-output{padding:3px;float:right;width:32%}.ls-rearview .alerts-output .output-view{margin:0;min-height:135px;width:97%}.ls-rearview .alerts-history{color:#f5f4ed;min-height:133px}.ls-rearview .alerts-history ul{margin:0;padding:3px;overflow:auto;min-height:133px;border:3px solid #b6b3a6;border-radius:4px;background:#373737}.ls-rearview .alerts-history li{margin-bottom:26px;position:relative}.ls-rearview .alerts-history button{margin-top:4px;position:absolute;top:0;right:0}.ls-rearview .alerts-history h1{margin:0;line-height:30px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:16px}.ls-rearview .alerts-history h2,.ls-rearview .alerts-history p{margin:0;line-height:16px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:12px}.ls-rearview .alerts-history label{background-image:url("/public/img/alerts_icon.png");background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs{margin-bottom:0;border-bottom:0;clear:both}.ls-rearview .nav-tabs li{margin-bottom:0;margin-left:10px}.ls-rearview .nav-tabs a{padding-top:4px;padding-bottom:4px;background:#656a65;border:0;color:#7e8079;text-transform:uppercase}.ls-rearview .nav-tabs .active a{background:#767a76;border:0;color:#b6b3a6}.ls-rearview .nav-tabs a:hover{background:#767a76;color:#b6b3a6}.ls-rearview .tab-content{padding:10px;background:#767a76;border-radius:4px}.ls-rearview .tab-content form{margin-bottom:0}.ls-rearview .metrics-test{width:488px;float:right}.ls-rearview .small-monitor.red .front{border:0;background:#735854;text-shadow:none}.ls-rearview .expanded-monitor.red{border:0;background:#735854;text-shadow:none}.ls-rearview .expanded-monitor.red .data-view,.ls-rearview .expanded-monitor.red .button-view,.ls-rearview .expanded-monitor.red .tab-content{background:#8f7976}.ls-rearview .expanded-monitor.red .nav-tabs a{background:#816965;color:#917f79}.ls-rearview .expanded-monitor.red .nav-tabs a:hover,.ls-rearview .expanded-monitor.red .nav-tabs .active a{background:#8f7976;color:#b6b3a6}.ls-rearview .nav-tabs .active a.metrics-tab,.ls-rearview .expanded-monitor .nav-tabs a.metrics-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.metrics-tab{background-image:url("/public/img/metrics_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs .active a.schedule-tab,.ls-rearview .expanded-monitor .nav-tabs a.schedule-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.schedule-tab{background-image:url("/public/img/schedule_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs .active a.alerts-tab,.ls-rearview .expanded-monitor .nav-tabs a.alerts-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.alerts-tab{background-image:url("/public/img/alerts_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:18px}.ls-rearview .nav-tabs .active a.output-tab,.ls-rearview .expanded-monitor .nav-tabs a.output-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.output-tab{background-image:url("/public/img/metrics_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:22px}.ls-rearview .metrics-schedule .expressions textarea{width:396px;min-height:200px}.ls-rearview .metrics-schedule .metrics-test .metrics textarea{width:459px}.ls-rearview .CodeMirror.error{border-color:#b94a48!important;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 6px rgba(213,147,146,0.8);outline:0 none}.ls-rearview .expressions-metrics .metrics.error label,.ls-rearview .expressions-metrics .expressions.error label{color:#b94a48}.ls-rearview .expressions-metrics .metrics .CodeMirror,.ls-rearview .expressions-metrics .expressions .CodeMirror{width:471px;display:block;visibility:visible;border:1px solid #b6b3a6;border-radius:3px;transition:border .2s linear 0s,box-shadow .2s linear 0s}.ls-rearview .expressions-metrics .metrics .CodeMirror-scroll,.ls-rearview .expressions-metrics .expressions .CodeMirror-scroll{border-radius:3px;height:100px}.ls-rearview .expressions-metrics .metrics .fullscreen .CodeMirror-scroll,.ls-rearview .expressions-metrics .expressions .fullscreen .CodeMirror-scroll{height:100%}.ls-rearview .expressions-metrics fieldset{margin-bottom:16px}.ls-rearview .expressions-metrics fieldset i{font-style:normal;font-weight:normal;font-size:10px}.ls-rearview .metrics-schedule .metrics .CodeMirror,.ls-rearview .metrics-schedule .expressions .CodeMirror{border-radius:3px;display:block;visibility:visible}.ls-rearview .metrics-schedule .metrics .CodeMirror-scroll{border-radius:3px;height:100px}.ls-rearview .metrics-schedule .expressions .CodeMirror-scroll{border-radius:3px;height:196px}.ls-rearview .metrics-schedule .metrics .fullscreen .CodeMirror-scroll,.ls-rearview .metrics-schedule .expressions .fullscreen .CodeMirror-scroll{height:100%}.ls-rearview .ecosystem-application-wrap{z-index:1;position:relative;-webkit-perspective:0;-moz-perspective:0;-o-perspective:0;perspective:0}.ls-rearview .ecosystem-application-wrap .application-tile{margin:0 0 20px 20px;float:left;width:200px;height:200px;cursor:pointer;border-radius:4px;-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-o-transition:-o-transform 1s;transition:transform 1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform-origin:right center;-moz-transform-origin:right center;-o-transform-origin:right center;transform-origin:right center}.ls-rearview .ecosystem-application-wrap .application-tile.flipped{-webkit-transform:translateX(-100%) rotateY(-180deg);-moz-transform:translateX(-100%) rotateY(-180deg);-ms-transform:translateX(-100%) rotateY(-180deg);-o-transform:translateX(-100%) rotateY(-180deg);transform:translateX(-100%) rotateY(-180deg)}.ls-rearview .ecosystem-application-wrap .application-tile figure{margin:0;display:block;height:100%;width:100%;border-radius:4px;position:absolute;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.ls-rearview .ecosystem-application-wrap .application-tile .front{background:#545954}.ls-rearview .ecosystem-application-wrap .application-tile .front p{line-height:40px;text-align:center;color:#fff;text-transform:uppercase;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:18px}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset{margin:0;position:absolute;bottom:0;width:100%;float:right;opacity:0;-webkit-transition:opacity .3s ease-in-out;-moz-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset .btn-wrap{position:absolute;bottom:0;right:0;width:100%}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset button{margin-bottom:5px;margin-right:5px;float:right}.ls-rearview .ecosystem-application-wrap .application-tile .front:hover fieldset{opacity:1}.ls-rearview .ecosystem-application-wrap .application-tile .back{background:#f5f4ee;-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-ms-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg)}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset{margin:5px}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset input{width:176px}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset .btn-wrap{position:absolute;bottom:0;right:0;width:100%}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset button{margin-bottom:5px;margin-right:5px;float:right}.ls-rearview .ecosystem-application-wrap .application-tile.flipped .front button,.ls-rearview .ecosystem-application-wrap .application-tile.flipped .front:hover button{visibility:hidden;opacity:0}.ls-rearview .ecosystem-application-wrap .application-tile.red .front{background:#735854}.ls-rearview .add-application .application-name{width:100%}.ls-rearview .add-application .application-name input[type='text']{width:98%}.ls-rearview .alert-wrap{top:-100px;height:auto;left:0;margin-top:0;margin-left:0;display:block;position:fixed;width:100%!important;z-index:1058;-webkit-transition:all 1s;-moz-transition-duration:1s;-webkit-transition-duration:1s;transition-duration:1s}.ls-rearview .alert-wrap.active{-webkit-transform:translateY(150px)!important;-moz-transform:translateY(150px)!important;-ms-transform:translateY(150px)!important;-o-transform:translateY(150px)!important;transform:translateY(150px)!important}.ls-rearview .alert{text-align:center;margin:0 25%;border-radius:4px!important;border:none!important;background-color:rgba(0,0,0,0.7)!important;color:#efc338!important;text-shadow:none;line-height:30px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:17px}.ls-rearview .alert-error{color:#cc3e3a!important}.ls-rearview .alert-success{color:#6ea933!important}.ls-rearview .alert-success .close{color:#6ea933!important;opacity:.7!important}.ls-rearview textarea:focus,.ls-rearview input[type="text"]:focus,.ls-rearview input[type="password"]:focus,.ls-rearview input[type="datetime"]:focus,.ls-rearview input[type="datetime-local"]:focus,.ls-rearview input[type="date"]:focus,.ls-rearview input[type="month"]:focus,.ls-rearview input[type="time"]:focus,.ls-rearview input[type="week"]:focus,.ls-rearview input[type="number"]:focus,.ls-rearview input[type="email"]:focus,.ls-rearview input[type="url"]:focus,.ls-rearview input[type="search"]:focus,.ls-rearview input[type="tel"]:focus,.ls-rearview input[type="color"]:focus,.ls-rearview .uneditable-input:focus{border-color:rgba(140,134,110,0.8);box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(75,75,75,0.7);outline:0 none}.ls-rearview .control-group.error input,.ls-rearview .control-group.error select,.ls-rearview .control-group.error textarea{border-color:#b94a48;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(185,74,74,0.7)}.ls-rearview .btn-inverse,.ls-rearview .btn-inverse.active,.ls-rearview .btn-inverse:active{color:#b6b3a6}.ls-rearview .CodeMirror-wrap{border-radius:3px!important}.ls-rearview .CodeMirror-wrap pre{white-space:pre-wrap!important;word-break:break-all!important;word-wrap:break-word!important}.ls-rearview .CodeMirror-wrap .CodeMirror-scroll{background:#000}.ls-rearview .CodeMirror-wrap .CodeMirror-gutter{border-top-left-radius:3px;border-bottom-left-radius:3px}.ls-rearview .fullscreen{margin:0;padding:0;display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:9999;border:0 solid #bbb;opacity:1}.ls-rearview .tooltip .tooltip-arrow{display:none!important}.ls-rearview .tooltip .tooltip-inner{max-width:none!important}.ls-rearview .ui-widget{font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:12px;background:#000!important}.ls-rearview .ui-widget .ui-slider{margin-top:7px}.ls-rearview .ui-widget .ui-timepicker-div dt{font-weight:normal!important}
@@ -0,0 +1,249 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ This is a custom SVG webfont generated by Fontspring.
6
+ Designer : Mark Simonson
7
+ Foundry : Mark Simonson
8
+ Foundry URL : httpwwwmarksimonsoncom
9
+ </metadata>
10
+ <defs>
11
+ <font id="webfont66L2sXE3" horiz-adv-x="256" >
12
+ <font-face units-per-em="1000" ascent="775" descent="-225" />
13
+ <missing-glyph horiz-adv-x="500" />
14
+ <glyph unicode=" " />
15
+ <glyph unicode="!" d="M201 600q0 -5 -1 -24t-2 -47t-2.5 -62t-3.5 -69.5t-3.5 -69.5t-2.5 -62q-1 -23 -17.5 -39t-41.5 -16q-23 0 -39.5 16t-17.5 39q-1 28 -3 62t-3.5 69.5t-3.5 69.5t-3 62t-2 47t-1 24q0 31 21.5 52t53.5 21q31 0 51.5 -21t20.5 -52zM209 70q0 -16 -6.5 -30.5t-17.5 -25.5 t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25 17.5t-17 25.5t-6.5 30.5q0 33 23.5 57t56.5 24t57 -24t24 -57z" />
16
+ <glyph unicode="&#x22;" horiz-adv-x="406" d="M362 608q0 -5 -4 -31t-10 -59l-12 -67l-10 -56q-2 -11 -11 -18.5t-23 -7.5q-11 0 -20 7.5t-11 18.5l-10 56l-12 67t-10 59t-4 31q0 29 20 49t49 20t48.5 -20t19.5 -49zM182 608q0 -5 -4 -30.5t-10 -58.5l-12 -67l-10 -56q-2 -12 -11.5 -19.5t-22.5 -7.5q-11 0 -20.5 7.5 t-11.5 19.5l-10 56l-12 67t-10 58.5t-4 30.5q0 29 20 49t49 20q28 0 48.5 -20t20.5 -49z" />
17
+ <glyph unicode="#" horiz-adv-x="618" d="M589 455q0 -16 -11.5 -27.5t-27.5 -11.5h-73l-55 -166h50q16 0 27.5 -12t11.5 -29t-11.5 -28.5t-27.5 -11.5h-77l-48 -145q-5 -14 -17 -22t-26 -8q-20 0 -32.5 12.5t-12.5 30.5v6.5t2 7.5l41 118h-95l-49 -146q-5 -14 -17 -22t-26 -8q-20 -1 -32 12.5t-12 30.5q0 9 2 14 l40 119h-43q-17 0 -28.5 12t-11.5 30q0 16 11.5 27.5t28.5 11.5h71l54 166h-46q-16 0 -27.5 12t-11.5 29q0 16 11.5 27.5t27.5 11.5h74l48 147q5 13 16.5 21t25.5 8q20 0 32.5 -13t12.5 -30q0 -5 -2 -13l-39 -120h94l48 146q5 14 17 22t26 8q20 0 32.5 -13t12.5 -30 q0 -6 -2 -14l-41 -119h46q16 0 27.5 -12t11.5 -29zM383 416h-94l-54 -166h93z" />
18
+ <glyph unicode="$" horiz-adv-x="614" d="M579 202q0 -42 -13.5 -78t-40.5 -63.5t-68 -45.5t-96 -24v-51q0 -19 -13.5 -32.5t-32.5 -13.5q-21 0 -35 13.5t-14 32.5v50q-30 3 -62 10t-61 18t-51.5 26t-34.5 33q-5 8 -7.5 15.5t-2.5 16.5q0 28 20 47t46 19q21 0 39 -12q24 -17 52.5 -29t61.5 -18v158q-39 10 -77 23 t-69 35.5t-50 56.5t-19 85q0 38 14.5 72t42.5 61t67.5 45t90.5 23v53q0 19 14 32.5t35 13.5q19 0 32.5 -13.5t13.5 -32.5v-55q22 -3 48 -8.5t50 -14.5t44 -21.5t31 -28.5q10 -15 10 -31q0 -14 -6 -26t-16 -20.5t-23 -13.5t-26 -5q-9 0 -19 3q-22 6 -46 19.5t-47 18.5v-141 q39 -10 77.5 -23.5t70 -36t51 -57t19.5 -85.5zM266 429v122q-34 -5 -52 -22t-18 -43q0 -11 5 -19.5t14 -15.5t22 -12.5t29 -9.5zM435 186q0 12 -5.5 22t-15.5 17.5t-23.5 13.5t-29.5 11v-134q18 4 32 11t23.5 16t14 20t4.5 23z" />
19
+ <glyph unicode="%" horiz-adv-x="757" d="M365 509q0 -35 -12 -65t-34.5 -52t-53.5 -34.5t-70 -12.5q-38 0 -69.5 12.5t-53.5 34.5t-34 52t-12 65t12 66t34 53.5t53.5 35.5t69.5 13q39 0 70 -13t53.5 -35.5t34.5 -53.5t12 -66zM211 8q-9 -14 -26 -14q-14 0 -23.5 9t-9.5 22q0 9 5 17l394 617q9 14 26 14 q13 0 23 -9.5t10 -22.5q0 -8 -5 -16zM732 153q0 -35 -12 -65t-34.5 -52.5t-54 -35t-69.5 -12.5t-69.5 12.5t-53.5 35t-34 52.5t-12 65t12 66t34 53.5t53.5 35.5t69.5 13t69.5 -13t54 -35.5t34.5 -53.5t12 -66zM116 509q0 -39 22.5 -62.5t56.5 -23.5q17 0 31.5 6t25 17.5 t16.5 27t6 35.5q0 42 -22 65.5t-57 23.5q-34 0 -56.5 -23.5t-22.5 -65.5zM483 153q0 -20 6 -36.5t16.5 -27.5t25 -17t31.5 -6t32 6t25.5 17t16.5 27.5t6 36.5q0 42 -22.5 65.5t-57.5 23.5t-57 -23.5t-22 -65.5z" />
20
+ <glyph unicode="&#x26;" horiz-adv-x="646" d="M509 134q8 -9 17.5 -18t18 -19t14 -21t5.5 -24q0 -22 -16 -40.5t-41 -18.5q-13 0 -25 6.5t-22.5 15.5t-19 19t-14.5 16q-38 -29 -83 -45.5t-99 -16.5q-46 0 -86 12t-70 36t-47 60.5t-17 84.5q0 38 11.5 67.5t31.5 52.5t45.5 40.5t54.5 31.5q-20 37 -32 73.5t-12 70.5 t14 63t39.5 50.5t60.5 34t77 12.5q35 0 67 -9.5t56 -27.5t38 -44.5t14 -59.5q0 -38 -14 -66t-37 -49.5t-52.5 -37.5t-60.5 -30q16 -23 31 -41.5l29 -35l27.5 -32l26.5 -31.5q13 20 24 41t20 42q6 14 19.5 23t29.5 9q23 0 39 -16.5t16 -37.5q0 -11 -8 -30q-6 -13 -14.5 -28 t-18.5 -29.5l-19.5 -28.5t-17.5 -24zM159 193q0 -24 8.5 -43.5t22.5 -33t32.5 -21t39.5 -7.5q26 0 50 9t46 25l-47.5 53l-35 41t-29 37.5l-29.5 41.5q-26 -19 -42 -43t-16 -59zM320 585q-15 0 -27.5 -5.5t-22 -15t-15 -22.5t-5.5 -28q0 -20 8 -43t21 -47q21 10 39 21 t31.5 23.5t21.5 27.5t8 33q0 26 -17 41t-42 15z" />
21
+ <glyph unicode="'" horiz-adv-x="225" d="M182 608q0 -5 -4 -30.5t-10 -58.5l-12 -67l-10 -56q-2 -12 -11.5 -19.5t-22.5 -7.5q-11 0 -20.5 7.5t-11.5 19.5l-10 56l-12 67t-10 58.5t-4 30.5q0 29 20 49t49 20q28 0 48.5 -20t20.5 -49z" />
22
+ <glyph unicode="(" horiz-adv-x="297" d="M266 -126q0 -23 -15.5 -41t-39.5 -18q-11 0 -21.5 4.5t-17.5 14.5q-30 41 -54 90t-41.5 102t-26.5 108t-9 109q0 53 9.5 108.5t26.5 108.5t41 102.5t54 90.5q7 9 17.5 13.5t21.5 4.5q25 0 40 -18t15 -39q0 -14 -6 -26q-20 -40 -35 -80.5t-25.5 -82.5t-16 -87.5 t-5.5 -94.5q0 -99 21 -181t61 -161q6 -14 6 -27z" />
23
+ <glyph unicode=")" horiz-adv-x="297" d="M257 243q0 -54 -9.5 -109t-26.5 -108t-41.5 -102t-54.5 -90q-7 -10 -17.5 -14.5t-21.5 -4.5q-24 0 -39.5 18t-15.5 41q0 13 6 27q40 79 61 161t21 181q0 49 -5.5 94.5t-16 87.5t-25.5 82.5t-35 80.5q-6 12 -6 26q0 21 15 39t39 18q11 0 22 -4.5t18 -13.5q30 -41 54 -90 t41.5 -102.5t27 -108.5t9.5 -109z" />
24
+ <glyph unicode="*" horiz-adv-x="351" d="M177 683q11 0 20.5 -9t8.5 -21l-4 -86l71 45q8 5 16 5q10 0 20 -8t10 -23q0 -19 -15 -26l-75 -39l75 -39q15 -8 15 -25q0 -13 -9 -22t-22 -9q-8 0 -15 4l-71 46l4 -86q1 -12 -8.5 -21t-22.5 -9t-22 9t-8 21l4 86l-73 -46q-7 -5 -15 -5q-10 0 -20 8.5t-10 22.5q0 8 4 15 t12 11l75 39l-75 39q-16 8 -16 25q0 14 9.5 23t21.5 9q8 0 15 -4l72 -46l-4 86q-1 12 8.5 21t23.5 9z" />
25
+ <glyph unicode="+" horiz-adv-x="504" d="M481 339q0 -18 -11 -29.5t-27 -11.5h-147v-166q0 -18 -12.5 -30.5t-31.5 -12.5q-18 0 -30.5 12.5t-12.5 30.5v166h-147q-17 0 -28 11.5t-11 29.5q0 16 11 27t28 11h147v159q0 17 12.5 29.5t32.5 12.5q17 0 29.5 -12.5t12.5 -29.5v-159h147q16 0 27 -11t11 -27z" />
26
+ <glyph unicode="," d="M215 49q0 -48 -21.5 -91.5t-59.5 -77.5q-10 -10 -26 -10q-13 0 -25.5 8.5t-12.5 23.5q0 13 10 22q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
27
+ <glyph unicode="-" horiz-adv-x="300" d="M276 243q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146q22 0 37.5 -15.5t15.5 -37.5z" />
28
+ <glyph unicode="." d="M209 70q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57z" />
29
+ <glyph unicode="/" horiz-adv-x="329" d="M314 650q0 -5 -2 -13l-211 -633q-5 -14 -17 -22t-26 -8q-19 0 -31.5 12.5t-12.5 29.5q0 6 3 14l211 633q5 14 16.5 22t26.5 8q19 0 31 -13t12 -30z" />
30
+ <glyph unicode="0" horiz-adv-x="620" d="M586 333q0 -65 -16.5 -126.5t-50.5 -110.5t-86 -78.5t-123 -29.5q-72 0 -124 29.5t-85.5 78.5t-50 110.5t-16.5 126.5q0 64 16.5 126t50 110.5t85.5 78t124 29.5q71 0 123 -29.5t86 -78t50.5 -110.5t16.5 -126zM441 333q0 46 -7 86t-23 69t-40.5 46t-60.5 17t-61 -17 t-41 -46t-23 -69t-7 -86t7 -86t23 -69.5t41 -46.5t61 -17t60.5 17t40.5 46.5t23 69.5t7 86z" />
31
+ <glyph unicode="1" horiz-adv-x="411" d="M345 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v420l-75 -77q-16 -16 -39 -16t-41 17t-18 42q0 24 18 42l154 156q24 24 60 24q34 0 58.5 -23.5t24.5 -57.5v-527v0z" />
32
+ <glyph unicode="2" horiz-adv-x="600" d="M555 64q0 -27 -18 -45.5t-43 -18.5h-386q-26 0 -46.5 19.5t-20.5 49.5q0 17 8 33t22 27l156.5 119t101.5 88t54.5 68.5t16.5 59.5q0 22 -9 38t-24 27t-34.5 16.5t-40.5 5.5q-40 0 -74 -10.5t-63 -30.5q-19 -13 -41 -13q-25 0 -43.5 18.5t-18.5 45.5q0 15 9 29 q12 19 37.5 35t57 27.5t66.5 18t67 6.5q53 0 99.5 -14.5t81 -42t54.5 -67t20 -89.5q0 -43 -17.5 -83.5t-51 -81.5t-83.5 -84t-115 -90h217q25 0 43 -18t18 -43z" />
33
+ <glyph unicode="3" horiz-adv-x="587" d="M546 184q0 -43 -18.5 -79t-53 -62t-83 -40.5t-108.5 -14.5q-36 0 -73.5 6.5t-70.5 18t-58.5 27.5t-37.5 36q-8 13 -8 27q0 27 20 45t45 18q19 0 35 -10q33 -20 70.5 -31t72.5 -11q61 0 93.5 23.5t32.5 61.5q0 20 -8 34.5t-24.5 24t-41.5 14t-60 4.5q-20 -3 -36 0.5 t-28 11.5t-18.5 21t-6.5 30q0 26 18 44t47 18q33 -2 60 1.5t46.5 12t30 22.5t10.5 35q0 20 -9.5 35t-26 24.5t-39.5 14.5t-49 5q-35 0 -67.5 -9.5t-61.5 -28.5q-14 -10 -34 -10q-23 0 -42.5 17t-19.5 43t21 43q42 33 96 52t123 19q58 0 105 -12.5t79.5 -36t50 -57 t17.5 -75.5q0 -32 -12.5 -57.5t-33 -45t-46.5 -32t-54 -17.5q25 -3 53 -14t50.5 -31t37.5 -49t15 -66z" />
34
+ <glyph unicode="4" horiz-adv-x="597" d="M578 200q0 -26 -18 -44t-43 -18h-31v-74q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v74h-251q-30 0 -51.5 22t-21.5 56q0 26 13 46l223 352q17 27 47 43t62 16q23 4 44.5 0.5t38.5 -13.5t27.5 -27t10.5 -40v-330h31q25 0 43 -18.5t18 -44.5zM344 263v278 l-180 -278h180z" />
35
+ <glyph unicode="5" horiz-adv-x="608" d="M573 219q0 -53 -19 -96t-54 -73t-84.5 -46t-109.5 -16q-33 0 -68.5 5.5t-68 15.5t-57.5 25t-37 35q-8 14 -8 29q0 28 21 46t47 18q18 0 37 -11q29 -18 63 -27.5t70 -9.5q30 0 53 8t38.5 21.5t24 31.5t8.5 38q0 22 -8 40.5t-23.5 31.5t-38 20t-50.5 7q-31 0 -58 -7 t-54 -25q-25 -17 -55 -17q-33 0 -52.5 19.5t-19.5 48.5v256q0 33 23.5 56.5t56.5 23.5h323q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-261v-163q24 24 62.5 40t84.5 16q42 0 81 -15t68.5 -42.5t47 -67.5t17.5 -91z" />
36
+ <glyph unicode="6" horiz-adv-x="608" d="M577 217q0 -49 -18.5 -91t-52 -72.5t-80.5 -48t-104 -17.5q-76 0 -130.5 27.5t-89.5 74t-51.5 109t-16.5 133.5q0 76 21 139t60.5 109t97.5 71.5t132 25.5q24 0 51 -3.5t51 -11.5t43.5 -20t28.5 -28q7 -14 7 -27q0 -29 -21 -45.5t-44 -16.5q-16 0 -29 7q-19 10 -40 14.5 t-47 4.5q-37 0 -67.5 -14.5t-52.5 -40t-34.5 -60t-12.5 -74.5v-7t1 -7q12 17 29.5 32.5t40 27.5t48.5 19t53 7q45 0 86 -14t72.5 -41.5t50 -68t18.5 -93.5zM433 212q0 26 -10.5 45t-27.5 31t-39.5 18t-46.5 6q-38 0 -72 -16.5t-58 -46.5q2 -24 10.5 -48t24.5 -43.5 t40.5 -31.5t59.5 -12q29 0 51 8.5t37 22.5t23 31.5t8 35.5z" />
37
+ <glyph unicode="7" horiz-adv-x="545" d="M531 595q0 -16 -6 -28l-232 -530q-8 -20 -26.5 -31.5t-40.5 -11.5q-32 0 -51.5 21.5t-19.5 48.5q0 13 6 27l199 451h-280q-26 0 -44 18.5t-18 45.5q0 25 18 43t44 18h382q26 0 47.5 -20t21.5 -52z" />
38
+ <glyph unicode="8" horiz-adv-x="606" d="M571 173q0 -47 -22 -81.5t-59.5 -57.5t-86 -34.5t-100.5 -11.5q-53 0 -101 11.5t-85.5 34.5t-59.5 57.5t-22 81.5q0 30 11 57t30.5 48.5t45.5 38t56 27.5q-28 10 -52 24t-42 33t-28 44t-10 56q0 47 22.5 80.5t59.5 54.5t82.5 31t92.5 10q46 0 92 -10t82.5 -31t59.5 -54.5 t23 -80.5q0 -31 -10.5 -56t-28.5 -44t-42 -33t-52 -24q30 -11 56 -27.5t45.5 -38t31 -48.5t11.5 -57zM415 479q0 18 -8.5 32t-23.5 24t-35.5 15t-44.5 5q-25 0 -45.5 -5t-35.5 -15t-23.5 -24t-8.5 -32q0 -19 12 -32.5t29 -23.5t37 -15.5t35 -7.5q15 2 34.5 7.5t37 15.5 t29 23.5t11.5 32.5zM427 191q0 21 -13.5 36.5t-33 26.5t-41 17.5t-36.5 8.5q-16 -2 -37 -8.5t-40.5 -17.5t-33 -26.5t-13.5 -36.5q0 -18 9.5 -33t26 -25.5t39.5 -16.5t49 -6q25 0 48 6t39.5 16.5t26.5 25.5t10 33z" />
39
+ <glyph unicode="9" horiz-adv-x="608" d="M573 334q0 -76 -21 -139.5t-60.5 -109t-97.5 -71t-132 -25.5q-24 0 -51 3.5t-51 11t-43.5 19.5t-28.5 28q-8 14 -8 28t6 25.5t15.5 19.5t21 12.5t23.5 4.5q16 0 29 -7q19 -10 40 -14.5t47 -4.5q37 0 67.5 14.5t52.5 40t34.5 60t12.5 74.5v7t-1 7q-12 -17 -29.5 -32.5 t-40 -27.5t-48.5 -19t-53 -7q-45 0 -86 14t-72.5 41.5t-50 68t-18.5 93.5q0 49 18.5 90.5t52 72.5t80.5 48.5t104 17.5q76 0 130.5 -27.5t89.5 -74t51.5 -109.5t16.5 -133zM428 417q-2 24 -10.5 48t-24.5 43.5t-40.5 31.5t-59.5 12q-29 0 -51 -8.5t-37 -22.5t-23 -31.5 t-8 -35.5q0 -26 10.5 -45t27.5 -31t39.5 -18t46.5 -6q38 0 72 16.5t58 46.5z" />
40
+ <glyph unicode=":" horiz-adv-x="251" d="M209 409q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57zM209 70q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57z" />
41
+ <glyph unicode=";" d="M209 409q0 -16 -6.5 -30.5t-17.5 -26t-26 -18t-31 -6.5q-17 0 -31.5 6.5t-25.5 18t-17.5 26t-6.5 30.5q0 33 24 57t57 24t57 -24t24 -57zM215 49q0 -48 -21.5 -91.5t-59.5 -77.5q-10 -10 -26 -10q-13 0 -25.5 8.5t-12.5 23.5q0 13 10 22q20 16 34.5 37t19.5 41 q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
42
+ <glyph unicode="&#x3c;" horiz-adv-x="504" d="M480 153q0 -20 -13.5 -31t-28.5 -11q-9 0 -16 3l-361 161q-17 8 -27.5 24.5t-10.5 36.5q0 18 10.5 34t27.5 24l361 162q7 3 16 3q16 0 29 -11.5t13 -31.5q0 -12 -6.5 -23t-18.5 -16l-335 -143l335 -142q12 -5 18.5 -15.5t6.5 -23.5z" />
43
+ <glyph unicode="=" horiz-adv-x="504" d="M481 429q0 -17 -11.5 -29t-27.5 -12h-380q-16 0 -27.5 12t-11.5 29q0 16 11.5 27.5t27.5 11.5h380q16 0 27.5 -11.5t11.5 -27.5zM481 241q0 -17 -11 -28.5t-27 -11.5h-382q-16 0 -27 11.5t-11 28.5q0 16 11 27t27 11h382q16 0 27 -11t11 -27z" />
44
+ <glyph unicode="&#x3e;" horiz-adv-x="504" d="M481 336q0 -20 -10.5 -36.5t-27.5 -24.5l-361 -161q-8 -3 -16 -3q-16 0 -29 11.5t-13 30.5q0 13 6.5 23.5t18.5 15.5l335 142l-335 143q-13 5 -19.5 16t-6.5 23q-1 20 12.5 31.5t30.5 11.5q8 0 16 -3l361 -162q17 -8 27.5 -24t10.5 -34z" />
45
+ <glyph unicode="?" horiz-adv-x="456" d="M436 519q0 -37 -12.5 -63t-31 -45.5t-40 -35l-40 -30t-31 -30t-12.5 -36.5q0 -10 1.5 -14.5t1.5 -12.5q0 -19 -14 -36t-42 -17q-14 0 -27 6t-23 17.5t-15.5 29t-5.5 40.5q0 30 11 51.5t27 38.5t35 30t35 25.5t27 26t11 30.5q0 23 -18 40t-60 17q-23 0 -43.5 -7t-38.5 -19 t-42 -12t-41.5 15.5t-17.5 42.5q0 15 6 27q10 20 32.5 35t50 24.5t56.5 14.5t53 5q48 0 86.5 -11.5t65.5 -32.5t41.5 -50t14.5 -64zM307 70q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57z" />
46
+ <glyph unicode="@" horiz-adv-x="783" d="M747 332q0 -63 -18.5 -109.5t-47.5 -77t-64 -45.5t-68 -15q-45 0 -68.5 23t-28.5 54q-27 -35 -65.5 -56t-79.5 -21q-36 0 -65 12.5t-49 35t-30.5 53.5t-10.5 67q0 50 19 94.5t50.5 78t72 53t84.5 19.5q45 0 77 -19t48 -48l3 14q4 19 19.5 31.5t35.5 12.5q24 0 39.5 -16 t15.5 -37v-6t-1 -5l-39 -185q-1 -5 -2 -12t-1 -12q0 -23 10.5 -34t26.5 -11q15 0 31.5 9t30.5 28.5t23 50t9 73.5q0 59 -19.5 108t-55.5 84.5t-87 55t-114 19.5q-71 0 -135 -29t-113 -77.5t-77.5 -112.5t-28.5 -134q0 -59 21.5 -109.5t59 -88t89 -59t112.5 -21.5 q47 0 88.5 12t79.5 34q3 2 9 2q7 0 13.5 -5t6.5 -13q0 -9 -8 -14q-44 -26 -93 -40t-100 -14q-68 0 -126 24t-100.5 66.5t-66.5 100t-24 123.5q0 80 33 151.5t87.5 125.5t126.5 85.5t150 31.5q72 0 130 -24.5t99 -66.5t63.5 -97.5t22.5 -117.5zM487 357q-4 8 -11 17t-17 16.5 t-23.5 12.5t-29.5 5q-30 0 -55.5 -12.5t-43.5 -32.5t-28.5 -46.5t-10.5 -53.5q0 -39 22.5 -63.5t60.5 -24.5q20 0 36.5 6t30.5 15.5t25 21t19 22.5z" />
47
+ <glyph unicode="A" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208z" />
48
+ <glyph unicode="B" horiz-adv-x="663" d="M622 180q0 -38 -12.5 -70.5t-37 -57t-60.5 -38.5t-84 -14h-282q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h271q48 0 84 -14t60 -37.5t36 -54.5t12 -64q0 -32 -9 -58t-25 -45.5t-36.5 -32t-44.5 -17.5q27 -4 50 -18.5t40.5 -36t27.5 -50t10 -59.5z M464 472q0 32 -21 52.5t-57 20.5h-178v-145h178q36 0 57 20t21 52zM477 200q0 16 -5.5 30t-16.5 24.5t-27 17t-37 6.5h-183v-155h183q41 0 63.5 20.5t22.5 56.5z" />
49
+ <glyph unicode="C" horiz-adv-x="687" d="M389 678q86 0 145.5 -32t97.5 -78q14 -17 14 -39q0 -27 -20 -45.5t-48 -18.5q-14 0 -27.5 6t-24.5 17q-29 30 -64 47t-73 17q-45 0 -83.5 -16.5t-66.5 -46t-43.5 -69.5t-15.5 -87t15.5 -87.5t43.5 -69.5t66.5 -45.5t83.5 -16.5q38 0 73.5 16t63.5 47q11 11 25 17t29 6 q27 0 46 -18t19 -44q0 -11 -3 -21t-11 -18q-38 -46 -97 -78.5t-145 -32.5q-75 0 -140 25t-112.5 70.5t-75 109t-27.5 140.5t27.5 140.5t75 109t112.5 70.5t140 25z" />
50
+ <glyph unicode="D" horiz-adv-x="718" d="M683 333q0 -75 -26 -136.5t-72.5 -105t-112 -67.5t-143.5 -24h-183q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h183q78 0 143.5 -24t112 -67.5t72.5 -105.5t26 -137zM538 333q0 44 -13.5 82.5t-39.5 66.5t-65.5 44t-90.5 16h-121v-417h121q49 0 88 16.5 t66 45t41 66.5t14 80z" />
51
+ <glyph unicode="E" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43z" />
52
+ <glyph unicode="F" horiz-adv-x="571" d="M544 604q0 -26 -18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-212q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v523q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5z" />
53
+ <glyph unicode="G" horiz-adv-x="720" d="M673 176q0 -45 -25.5 -80.5t-66 -59.5t-91 -36.5t-101.5 -12.5q-73 0 -137.5 24.5t-113 69.5t-76.5 109t-28 143t28 143t76.5 109t113 69t137.5 24q81 0 139.5 -28t97.5 -70q8 -9 12.5 -20.5t4.5 -22.5q0 -26 -20.5 -45t-46.5 -19q-28 0 -48 20q-29 28 -65 43.5t-74 15.5 q-45 0 -83.5 -16.5t-66.5 -46t-43.5 -69.5t-15.5 -87t15.5 -87.5t43.5 -69.5t66.5 -45.5t83.5 -16.5q22 0 43 4.5t40 11.5t34 16.5t25 18.5v80h-121q-26 0 -43.5 18t-17.5 45q0 26 17.5 43.5t43.5 17.5h183q33 0 56.5 -23.5t23.5 -56.5v-113v0z" />
54
+ <glyph unicode="H" horiz-adv-x="731" d="M666 65q0 -29 -21 -50t-51 -21q-29 0 -50 21t-21 50v215h-315v-216q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-198h315v198q0 29 21 49.5t52 20.5q29 0 49.5 -20.5t20.5 -49.5v-538v0z" />
55
+ <glyph unicode="I" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0z" />
56
+ <glyph unicode="J" horiz-adv-x="486" d="M420 219q0 -59 -17.5 -102.5t-48.5 -72t-74.5 -42.5t-94.5 -14q-19 0 -42.5 2.5t-46 9.5t-41.5 17.5t-29 27.5q-8 13 -8 29q0 27 19.5 45t44.5 18q8 0 17 -3q17 -5 35.5 -12.5t39.5 -7.5q48 0 76 29t28 78v382q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-384v0z " />
57
+ <glyph unicode="K" horiz-adv-x="636" d="M569 63q0 -26 -20 -47.5t-49 -21.5q-16 0 -30 6.5t-24 20.5l-186 246l-52 -62v-141q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-234l220 278q9 12 23 18t28 6q27 0 47.5 -19t20.5 -46q0 -24 -15 -42 l-178 -210l201 -251q14 -19 14 -40z" />
58
+ <glyph unicode="L" horiz-adv-x="523" d="M496 64q0 -27 -18 -45.5t-43 -18.5h-289q-33 0 -56.5 23.5t-23.5 56.5v523q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-478h227q25 0 43 -18t18 -43z" />
59
+ <glyph unicode="M" horiz-adv-x="855" d="M789 65q0 -29 -21 -50t-51 -21q-29 0 -50 21t-21 50v402l-180 -447q-5 -11 -15.5 -18.5t-24.5 -7.5q-13 0 -23 7.5t-15 18.5l-180 447v-403q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v523q0 33 23.5 56.5t56.5 23.5q49 5 88 -8t57 -57l136 -338l136 338 q12 29 38 47t59 18q24 4 47 1t41.5 -12.5t29.5 -26.5t11 -42v-522v0z" />
60
+ <glyph unicode="N" horiz-adv-x="729" d="M663 80q0 -17 -6.5 -32.5t-18.5 -27.5t-28 -19t-35 -7q-20 0 -39 9.5t-32 26.5l-296 405v-371q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v518q0 18 7 34t19.5 29t29.5 20.5t37 7.5q23 0 43.5 -10t34.5 -29l284 -386v355q0 29 21 49.5t51 20.5 q29 0 49.5 -20.5t20.5 -49.5v-523v0z" />
61
+ <glyph unicode="O" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87z" />
62
+ <glyph unicode="P" horiz-adv-x="624" d="M602 452q0 -44 -15 -83t-43.5 -68t-70 -46.5t-95.5 -17.5h-170v-173q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v523q0 33 23.5 56.5t56.5 23.5h232q54 0 96 -17t70.5 -46.5t43 -68.5t14.5 -83zM457 452q0 42 -28 66t-70 24h-151v-180h151q42 0 70 24t28 66 z" />
63
+ <glyph unicode="Q" horiz-adv-x="765" d="M731 333q0 -71 -22.5 -131t-64.5 -105l12 -14q14 -17 14 -40q0 -24 -18 -44t-46 -20q-29 0 -49 23l-17 19q-35 -16 -74.5 -24.5t-83.5 -8.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5 t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17q35 0 70 11l-37 43q-8 8 -11 18t-3 21q0 24 18 44t46 20q29 0 48 -22l38 -44q17 27 25.5 59.5t8.5 68.5z" />
64
+ <glyph unicode="R" horiz-adv-x="643" d="M602 452q0 -44 -12.5 -78t-33.5 -58.5t-47 -40t-53 -21.5l92 -156q9 -17 9 -34q0 -26 -19 -48t-51 -22q-19 0 -35 9.5t-26 26.5l-114 207h-104v-173q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v523q0 33 23.5 56.5t56.5 23.5h232q52 0 93.5 -16t70.5 -45 t44.5 -68.5t15.5 -85.5zM357 542h-149v-180h149q43 0 71.5 24t28.5 66t-28.5 66t-71.5 24z" />
65
+ <glyph unicode="S" horiz-adv-x="600" d="M570 202q0 -46 -16.5 -85t-49.5 -67.5t-83.5 -45t-117.5 -16.5q-36 0 -75 6t-74.5 17t-63 27t-41.5 37q-11 16 -11 34q0 29 20.5 47.5t46.5 18.5q10 0 20 -2.5t18 -8.5q34 -23 76 -37.5t91 -14.5q29 0 51 6t36.5 16.5t21.5 24t7 27.5q0 22 -16.5 36t-43.5 23.5t-61.5 17 t-70.5 17.5t-70.5 24t-61.5 36t-43.5 54.5t-16.5 79.5q0 42 17.5 78.5t50 64.5t79.5 44t106 16q28 0 62.5 -4.5t66.5 -14t59 -23.5t41 -32q12 -15 12 -34q0 -29 -22.5 -46.5t-48.5 -17.5q-19 0 -36 10q-35 20 -72.5 29t-74.5 9q-46 0 -70.5 -18.5t-24.5 -48.5 q0 -20 16.5 -32.5t43.5 -21.5t61.5 -16.5t70 -17.5t70 -24.5t61.5 -37t43.5 -55t16.5 -79.5z" />
66
+ <glyph unicode="T" horiz-adv-x="582" d="M563 604q0 -26 -18 -44t-43 -18h-139v-477q0 -29 -21 -50t-51 -21q-29 0 -50 21t-21 50v477h-139q-26 0 -44 18.5t-18 45.5q0 25 18 43t44 18h421q25 0 43 -18.5t18 -44.5z" />
67
+ <glyph unicode="U" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0z" />
68
+ <glyph unicode="V" horiz-adv-x="684" d="M657 599q0 -13 -5 -26l-194 -504q-13 -34 -43.5 -54.5t-65.5 -20.5h-14q-35 0 -65.5 20.5t-43.5 54.5l-195 504q-5 10 -5 26q0 27 20.5 50.5t54.5 23.5q23 0 43 -13t28 -36l170 -470l169 470q8 22 27.5 35.5t42.5 13.5q34 0 55 -22.5t21 -51.5z" />
69
+ <glyph unicode="W" horiz-adv-x="918" d="M897 605q0 -11 -3 -20l-149 -521q-9 -31 -34.5 -50.5t-57.5 -19.5h-2q-33 0 -58 19.5t-33 50.5l-101 394l-100 -394q-8 -31 -33.5 -50.5t-56.5 -19.5h-2q-32 0 -58 19.5t-35 50.5l-150 522q-3 9 -3 19q0 29 21 51.5t55 22.5q26 0 46.5 -16t27.5 -42l106 -436l114 436 q6 23 25 37.5t45 14.5q23 0 41.5 -14.5t24.5 -37.5l114 -436l104 435q6 26 27.5 42.5t48.5 16.5q34 0 55 -22.5t21 -51.5z" />
70
+ <glyph unicode="X" horiz-adv-x="668" d="M611 63q0 -12 -4.5 -24t-13.5 -22t-22 -16.5t-29 -6.5q-17 0 -32 8t-25 22l-151 220l-152 -221q-10 -14 -24.5 -21.5t-31.5 -7.5q-27 0 -48 18.5t-21 49.5q0 11 3 20.5t9 18.5l170 241l-158 226q-11 15 -11 36q0 26 18.5 47t50.5 21q37 0 59 -31l136 -202l134 201 q21 32 59 32q29 0 50 -20t21 -47q0 -22 -12 -38l-157 -224l170 -241q12 -18 12 -39z" />
71
+ <glyph unicode="Y" horiz-adv-x="645" d="M597 607q0 -19 -10 -35l-193 -299v-209q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v209l-195 300q-10 14 -10 34q0 24 19 44.5t49 20.5q17 0 32.5 -8t25.5 -24l150 -241l147 240q10 16 25.5 24.5t33.5 8.5q31 0 49.5 -20t18.5 -45z" />
72
+ <glyph unicode="Z" horiz-adv-x="592" d="M556 64q0 -27 -18 -45.5t-43 -18.5h-381q-30 0 -54 22.5t-24 57.5q0 26 15 47l306 415h-259q-26 0 -44 18.5t-18 45.5q0 25 18 43t44 18h377q29 0 51 -22t22 -56q0 -29 -17 -52l-303 -412h267q25 0 43 -18t18 -43z" />
73
+ <glyph unicode="[" horiz-adv-x="280" d="M269 -147q0 -18 -12 -30.5t-29 -12.5h-101q-33 0 -56.5 23.5t-23.5 56.5v708q0 33 23.5 56.5t56.5 23.5h101q17 0 29 -12.5t12 -30.5q0 -17 -12 -29.5t-29 -12.5h-90v-698h90q17 0 29 -12.5t12 -29.5z" />
74
+ <glyph unicode="\" horiz-adv-x="329" d="M314 16q0 -16 -12 -29t-32 -13q-14 0 -25.5 8t-16.5 22l-211 633q-2 3 -2 6.5v6.5q0 17 12 30t32 13q14 0 25.5 -8t16.5 -22l211 -633q1 -4 1.5 -7t0.5 -7z" />
75
+ <glyph unicode="]" horiz-adv-x="280" d="M233 -110q0 -33 -23.5 -56.5t-56.5 -23.5h-100q-17 0 -29.5 12.5t-12.5 30.5q0 17 12.5 29.5t29.5 12.5h89v698h-89q-17 0 -29.5 12.5t-12.5 31.5q0 17 12.5 29t29.5 12h100q33 0 56.5 -23.5t23.5 -56.5v-708v0z" />
76
+ <glyph unicode="^" horiz-adv-x="441" d="M401 369q0 -15 -11.5 -28.5t-31.5 -13.5q-12 0 -23 6.5t-16 18.5l-99 228l-98 -228q-5 -12 -16 -18.5t-23 -6.5q-19 0 -31 12t-12 29q0 9 4 17l116 249q8 18 25 28.5t38 10.5q19 0 35.5 -11t24.5 -28l115 -249q3 -8 3 -16z" />
77
+ <glyph unicode="_" horiz-adv-x="564" d="M573 -82q0 -18 -12 -30.5t-29 -12.5h-499q-17 0 -29.5 12.5t-12.5 30.5q0 17 12.5 29.5t29.5 12.5h499q17 0 29 -12.5t12 -29.5z" />
78
+ <glyph unicode="`" horiz-adv-x="251" d="M214 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
79
+ <glyph unicode="a" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5z" />
80
+ <glyph unicode="b" horiz-adv-x="586" d="M553 241q0 -60 -16.5 -107.5t-45 -79.5t-67.5 -49t-85 -17q-44 0 -82 19t-67 55v-5q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-190q29 37 67.5 55.5t81.5 18.5q46 0 85.5 -17.5t68 -50.5t44.5 -80 t16 -106zM422 241q0 31 -9 57t-25 45t-38.5 29t-50.5 10q-31 0 -62 -16t-47 -40v-171q16 -23 47 -38.5t62 -15.5q28 0 50.5 10t38.5 28.5t25 44t9 57.5z" />
81
+ <glyph unicode="c" horiz-adv-x="499" d="M461 77q0 -11 -5 -22t-15 -19q-26 -21 -64 -34.5t-89 -13.5q-56 0 -103 18.5t-81 52.5t-53 80.5t-19 102.5q0 55 19 101.5t53 80.5t81 52.5t103 18.5q28 0 54.5 -5t48.5 -13.5t38.5 -20.5t24.5 -27q6 -11 6 -23q0 -26 -19.5 -40t-40.5 -14q-19 0 -35 10t-34 15t-37 5 q-29 0 -53 -10t-41.5 -28.5t-27 -44.5t-9.5 -57q0 -32 9.5 -57.5t27 -44.5t41.5 -29t53 -10q39 0 72 21q16 10 34 10q23 0 42 -15t19 -40z" />
82
+ <glyph unicode="d" horiz-adv-x="586" d="M523 57q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v5q-29 -36 -67 -55t-82 -19q-46 0 -85 17t-67.5 49t-45 79.5t-16.5 107.5q0 59 16 106t44.5 80t68 50.5t85.5 17.5q43 0 81.5 -18.5t67.5 -55.5v189q0 26 18.5 44.5t46.5 18.5q26 0 44.5 -18.5 t18.5 -44.5v-553zM395 156v171q-16 24 -47 39.5t-63 15.5q-27 0 -49.5 -10t-38.5 -29t-25 -45t-9 -57t9 -57t25 -44.5t38.5 -28.5t49.5 -10q32 0 63 15.5t47 39.5z" />
83
+ <glyph unicode="e" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238z" />
84
+ <glyph unicode="f" horiz-adv-x="327" d="M368 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5t-26 3.5q-26 0 -43 -17t-17 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26 q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5t8 -23.5z" />
85
+ <glyph unicode="g" horiz-adv-x="585" d="M522 33q0 -69 -24 -113.5t-62 -70t-84 -35.5t-91 -10q-22 0 -50 3t-55 10t-49 18.5t-33 28.5q-8 13 -8 28q0 23 16 38t37 15q14 0 27 -7q26 -16 54.5 -23t60.5 -7q23 0 46.5 5.5t43 19.5t31.5 37.5t12 59.5v49q-29 -36 -66.5 -56t-82.5 -20t-84 16t-67.5 47t-45 77 t-16.5 106q0 59 16 105t44.5 77.5t67.5 47.5t85 16q44 0 82 -18.5t67 -55.5v5q0 26 18.5 44.5t46.5 18.5q26 0 44.5 -18.5t18.5 -44.5v-393zM394 171v156q-8 12 -20 22t-26.5 17.5t-30.5 11.5t-32 4q-27 0 -49.5 -9t-38.5 -26.5t-25 -42t-9 -55.5t9 -55.5t25 -42t38.5 -26.5 t49.5 -9q16 0 32 4t30.5 11.5t26.5 17.5t20 22z" />
86
+ <glyph unicode="h" horiz-adv-x="580" d="M517 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v237q0 25 -6.5 42t-18 27t-28 14.5t-37.5 4.5q-18 0 -34.5 -5t-30.5 -13t-25.5 -18t-19.5 -21v-268q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18 q26 0 44 -18t18 -44v-191q12 14 28.5 27.5t38.5 24t47.5 17t55.5 6.5q80 0 118.5 -40.5t38.5 -111.5v-286v0z" />
87
+ <glyph unicode="i" horiz-adv-x="253" d="M126 686q32 0 54 -21.5t22 -53.5t-22 -54t-54 -22q-31 0 -53.5 22t-22.5 54t22.5 53.5t53.5 21.5zM190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370z" />
88
+ <glyph unicode="j" horiz-adv-x="253" d="M126 686q32 0 54 -21.5t22 -53.5t-22 -54t-54 -22q-31 0 -53.5 22t-22.5 54t22.5 53.5t53.5 21.5zM190 -13q0 -83 -42.5 -133t-129.5 -50q-27 0 -48.5 3t-36 10t-22 18.5t-7.5 27.5q0 22 15 36.5t35 14.5q11 0 18.5 -3t24.5 -3q29 0 47.5 19t18.5 60v440q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-440z" />
89
+ <glyph unicode="k" horiz-adv-x="535" d="M477 58q0 -23 -17.5 -43.5t-45.5 -20.5q-15 0 -29.5 6.5t-23.5 20.5l-113 165l-58 -62v-67q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-343l171 202q17 20 43 20q24 0 42 -18t18 -42q0 -21 -14 -38 l-112 -128l127 -170q12 -17 12 -36z" />
90
+ <glyph unicode="l" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-554v0z" />
91
+ <glyph unicode="m" horiz-adv-x="852" d="M790 57q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v248q0 34 -16.5 55.5t-55.5 21.5q-34 0 -60 -18t-40 -38v-269q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v248q0 34 -16.5 55.5t-55.5 21.5q-33 0 -59.5 -18.5t-40.5 -38.5v-268 q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-7q7 11 22.5 24t36.5 24.5t46 19t53 7.5q54 0 87 -23t47 -65q10 16 27 32t38.5 28.5t47 20t53.5 7.5q67 0 104.5 -35.5t37.5 -110.5v-292v0z" />
92
+ <glyph unicode="n" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v235q0 51 -24 70.5t-65 19.5q-19 0 -35.5 -5t-30.5 -13t-25 -18t-19 -21v-268q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-7 q12 14 28.5 27.5t38 24t47 17t55.5 6.5q80 0 118.5 -41.5t38.5 -112.5v-284v0z" />
93
+ <glyph unicode="o" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5z" />
94
+ <glyph unicode="p" horiz-adv-x="583" d="M553 242q0 -60 -16 -107.5t-44.5 -80t-68 -49.5t-85.5 -17q-43 0 -81.5 18t-67.5 56v-190q0 -26 -18.5 -44t-45.5 -18q-26 0 -44.5 18t-18.5 44v555q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-5q28 35 66 54t83 19q46 0 85.5 -17t68 -49t44.5 -79.5t16 -107.5zM421 242 q0 31 -9 57t-25 44.5t-38.5 28.5t-49.5 10q-31 0 -62 -16t-47 -39v-171q16 -23 47 -39t62 -16q27 0 49.5 10t38.5 29t25 44.5t9 57.5z" />
95
+ <glyph unicode="q" horiz-adv-x="583" d="M521 -127q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v189q-29 -38 -67.5 -56t-81.5 -18q-47 0 -86 17t-67.5 49.5t-44.5 80t-16 107.5t16 107.5t44.5 79.5t67.5 49t86 17q45 0 83 -19t66 -54v4q0 26 18.5 44.5t46.5 18.5q26 0 44.5 -18.5t18.5 -44.5 v-553zM393 156v171q-8 12 -20 22t-27 17.5t-31 11.5t-31 4q-27 0 -49.5 -10t-38.5 -28.5t-25 -44.5t-9 -57q0 -32 9 -57.5t25 -44.5t38.5 -29t49.5 -10q15 0 31 4.5t31 12t27 17.5t20 21z" />
96
+ <glyph unicode="r" horiz-adv-x="360" d="M350 435q0 -29 -17.5 -45t-43.5 -20q-29 -4 -55.5 -16t-43.5 -35v-262q0 -26 -18 -44.5t-44 -18.5h-2q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-10q9 12 19.5 24.5t23.5 22.5t28 16.5t33 6.5q28 0 42 -15t14 -37z" />
97
+ <glyph unicode="s" horiz-adv-x="477" d="M446 143q0 -33 -14 -61.5t-40.5 -49t-65.5 -32.5t-89 -12q-24 0 -53 4t-56.5 12t-50.5 20t-34 28q-9 12 -9 27q0 23 16.5 38t36.5 15q15 0 26 -7q29 -17 63.5 -28t66.5 -11q42 0 61.5 14.5t19.5 37.5q0 20 -21.5 30t-53 16.5l-69 14.5t-69 24t-53 44t-21.5 76 q0 30 13 57.5t38.5 48.5t62 33.5t84.5 12.5q24 0 50.5 -3.5t51 -11t44.5 -18.5t30 -26q8 -11 8 -25q0 -20 -15 -34t-35 -14q-14 0 -24 6q-23 14 -51.5 21.5t-57.5 7.5q-35 0 -55.5 -14t-20.5 -34q0 -18 21 -27t53 -15.5t69 -15t69 -25.5t53 -46t21 -78z" />
98
+ <glyph unicode="t" horiz-adv-x="338" d="M327 46q0 -12 -4.5 -22.5t-15.5 -18.5t-31 -12.5t-51 -4.5q-67 0 -102 33.5t-35 98.5v252h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v75q0 26 18.5 44.5t46.5 18.5q26 0 44.5 -18.5t18.5 -44.5v-75h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-218 q0 -29 14.5 -41t29.5 -12h5.5h5.5q27 0 41.5 -16t14.5 -39z" />
99
+ <glyph unicode="u" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0z" />
100
+ <glyph unicode="v" horiz-adv-x="513" d="M491 425q0 -13 -4 -22l-141 -349q-11 -27 -35 -43.5t-53 -16.5h-2q-29 0 -53.5 16.5t-35.5 43.5l-141 349q-5 12 -5 23q0 23 18 42.5t47 19.5q19 0 34.5 -10.5t22.5 -28.5l113 -302l113 301q7 19 23 29.5t35 10.5q29 0 46.5 -19.5t17.5 -43.5z" />
101
+ <glyph unicode="w" horiz-adv-x="769" d="M750 428q0 -9 -3 -18l-108 -354q-8 -27 -31.5 -44.5t-51.5 -17.5h-2q-29 0 -52.5 17t-31.5 45l-85 273l-85 -273q-8 -27 -31.5 -44.5t-52.5 -17.5h-2q-29 0 -52.5 17.5t-31.5 44.5l-108 354q-3 9 -3 18q0 23 17.5 42t46.5 19q20 0 37.5 -12.5t22.5 -32.5l79 -286l91 280 q8 23 27.5 37t45.5 14q23 0 42.5 -14t27.5 -37l91 -280l79 286q5 20 22.5 32.5t38.5 12.5q28 0 45.5 -18.5t17.5 -42.5z" />
102
+ <glyph unicode="x" horiz-adv-x="504" d="M455 52q0 -21 -15.5 -39.5t-42.5 -18.5q-14 0 -27 6t-21 19l-97 144l-99 -145q-17 -24 -46 -24q-24 0 -41.5 17.5t-17.5 40.5q0 18 10 32l113 164l-103 151q-10 14 -10 32q0 21 16.5 39t42.5 18q31 0 49 -26l86 -128l84 127q8 13 21.5 20t28.5 7q26 0 42.5 -17.5 t16.5 -39.5q0 -18 -10 -32l-104 -151l114 -164q10 -14 10 -32z" />
103
+ <glyph unicode="y" horiz-adv-x="513" d="M491 427q0 -14 -4 -23l-195 -483q-26 -63 -69 -90t-97 -27q-17 0 -31 4t-24.5 11.5t-16.5 18t-6 23.5q0 23 16.5 39.5t43.5 16.5h8t8 1q16 3 28.5 11t19.5 23l18 41l-165 412q-4 9 -4 21q0 23 17.5 43t46.5 20q19 0 35 -11t24 -31l112 -300l112 300q7 19 24 30.5t37 11.5 q29 0 45.5 -19.5t16.5 -42.5z" />
104
+ <glyph unicode="z" horiz-adv-x="479" d="M442 57q0 -24 -16 -40.5t-38 -16.5h-289q-25 0 -44 18.5t-19 46.5q0 11 3.5 21t10.5 19l210 267h-169q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h285q23 0 42 -17.5t19 -44.5q0 -24 -13 -40l-213 -270h177q22 0 38 -16t16 -38z" />
105
+ <glyph unicode="{" horiz-adv-x="288" d="M277 -148q0 -17 -11.5 -29.5t-37.5 -12.5h-18q-30 0 -58 11t-49.5 31.5t-34.5 50t-13 66.5v172q0 18 -5 34t-19 24q-17 11 -25.5 19.5t-8.5 25.5t8.5 25.5t25.5 19.5q14 8 19 24t5 34v171q0 37 13 66.5t34.5 50.5t49.5 32t58 11h18q26 0 37.5 -12.5t11.5 -29.5 q0 -18 -11.5 -30.5t-37.5 -12.5h-18q-26 0 -44 -20t-18 -54v-185q0 -32 -10.5 -55.5t-35.5 -34.5q25 -11 35.5 -34.5t10.5 -55.5v-184q0 -34 18 -54.5t44 -20.5h18q26 0 37.5 -12.5t11.5 -30.5z" />
106
+ <glyph unicode="|" horiz-adv-x="216" d="M151 16q0 -17 -12.5 -29.5t-30.5 -12.5q-17 0 -29.5 12.5t-12.5 29.5v636q0 17 12.5 29t31.5 12q17 0 29 -12t12 -29v-636v0z" />
107
+ <glyph unicode="}" horiz-adv-x="288" d="M291 244q0 -17 -8.5 -25.5t-25.5 -19.5q-14 -8 -19 -24t-5 -34v-172q0 -37 -13 -66.5t-34.5 -50t-49.5 -31.5t-58 -11h-18q-26 0 -37.5 12.5t-11.5 29.5q0 18 11.5 30.5t37.5 12.5h18q26 0 44 20.5t18 54.5v184q0 32 10.5 55.5t35.5 34.5q-25 11 -35.5 34.5t-10.5 55.5 v185q0 34 -18 54t-44 20h-18q-26 0 -37.5 12.5t-11.5 30.5q0 17 11.5 29.5t37.5 12.5h18q30 0 58 -11t49.5 -32t34.5 -50.5t13 -66.5v-171q0 -18 5 -34t19 -24q17 -11 25.5 -19.5t8.5 -25.5z" />
108
+ <glyph unicode="~" horiz-adv-x="510" d="M480 615q-5 -40 -14 -76.5t-25.5 -64.5t-42.5 -45t-63 -17q-33 0 -53 13t-33 32.5t-20.5 42.5l-14.5 42.5t-15.5 32.5t-23.5 13q-12 0 -21.5 -11t-16.5 -29.5t-12 -42.5t-8 -50q-2 -17 -14 -27.5t-29 -10.5q-23 0 -33.5 14.5t-10.5 33.5q5 39 14.5 75.5t26.5 64t42 44.5 t62 17q32 0 52.5 -13t33.5 -33t20.5 -42.5l14.5 -42.5t15.5 -33t23.5 -13q13 0 22.5 11t16.5 29.5t12 43.5t8 52q2 16 14 26.5t29 10.5q21 0 32 -14t11 -33z" />
109
+ <glyph unicode="&#xa0;" />
110
+ <glyph unicode="&#xa1;" d="M207 414q0 -33 -23.5 -57t-56.5 -24t-57 24t-24 57q0 16 6.5 30.5t17.5 25.5t25.5 17.5t31.5 6.5q16 0 31 -6.5t25.5 -17.5t17 -25.5t6.5 -30.5zM201 -116q0 -31 -21.5 -52t-53.5 -21q-31 0 -51.5 21t-20.5 52q0 5 1 24t2 47t2.5 62t3.5 69.5t3.5 69.5t2.5 62 q1 23 17.5 39t41.5 16q23 0 39.5 -16t17.5 -39q1 -28 3 -62t3.5 -69.5t3.5 -69.5t3 -62t2 -47t1 -24z" />
111
+ <glyph unicode="&#xa2;" horiz-adv-x="499" d="M461 77q0 -10 -5 -22q-13 -25 -48.5 -41.5t-74.5 -22.5v-46q0 -19 -13 -32t-32 -13q-20 0 -33.5 13t-13.5 32v47q-47 7 -85 28.5t-66 54t-43 75t-15 92.5q0 49 15 91.5t43 75t66 54t85 28.5v29q0 19 13.5 32t33.5 13q19 0 32 -13t13 -32v-28q41 -6 75.5 -23t46.5 -42 q5 -12 5 -21q0 -26 -19.5 -40t-40.5 -14q-5 0 -8.5 0.5t-7.5 1.5q-14 5 -25.5 11.5t-25.5 10.5v-269q13 4 25 11t26 11q7 3 16 3q23 0 42 -15t19 -40zM241 111v261q-36 -15 -57 -48.5t-21 -81.5t21 -82t57 -49z" />
112
+ <glyph unicode="&#xa3;" horiz-adv-x="550" d="M524 60q0 -20 -10.5 -34t-28.5 -22.5t-42 -12.5t-52 -4q-33 0 -56.5 7t-43.5 15l-39 15t-42 7q-17 0 -38 -5.5t-43 -15.5q-6 -3 -12.5 -4t-12.5 -1q-23 0 -38 15.5t-15 37.5q0 14 7 27t22 23q35 23 55 50.5t20 56.5q0 14 -3.5 27.5t-8.5 26.5h-86q-17 0 -28.5 12 t-11.5 30q0 16 11.5 27.5t28.5 11.5h34l-17.5 26.5t-15 28t-10 31t-3.5 34.5q0 48 21 86t55.5 65t78 41.5t88.5 14.5q34 0 66.5 -6t60 -17t47.5 -27t28 -35q2 -5 3 -10.5t1 -11.5q0 -28 -18.5 -44t-43.5 -16q-14 0 -25 4q-16 6 -28 14.5t-23 15.5t-23 12t-28 5 q-22 0 -41 -6.5t-33.5 -19t-22.5 -30t-8 -38.5q0 -19 4.5 -34.5t11.5 -29.5t15.5 -27l17.5 -26h111q16 0 27.5 -12t11.5 -29t-11.5 -28.5t-27.5 -11.5h-80q0 -5 0.5 -9.5t0.5 -9.5q0 -35 -18.5 -64.5t-45.5 -46.5q11 4 24.5 5.5t24.5 1.5q22 0 38 -5t30.5 -11.5t29 -11.5 t33.5 -5q8 0 16 1.5t16 3.5t15.5 3.5t15.5 1.5q24 0 44 -17t20 -46z" />
113
+ <glyph unicode="&#xa4;" horiz-adv-x="623" d="M582 116q0 -20 -15.5 -36.5t-38.5 -16.5q-22 0 -37 15l-43 42q-29 -17 -63 -25.5t-74 -8.5q-41 0 -75 9t-63 26l-41 -42q-8 -8 -18 -11.5t-20 -3.5q-20 0 -36.5 15t-16.5 37t15 37l41 41q-20 30 -30 65.5t-10 73.5t10 73.5t30 65.5l-42 43q-15 15 -15 36q0 20 15 36.5 t38 16.5t38 -15l44 -44q28 16 62 25t74 9t73.5 -9t62.5 -25l44 44q15 15 37 15q21 0 37.5 -15t16.5 -38q0 -22 -15 -37l-41 -41q20 -30 30.5 -66t10.5 -74q0 -39 -11 -75t-31 -66l41 -40q16 -16 16 -36zM439 333q0 27 -8.5 51t-24.5 42t-40 28.5t-55 10.5q-30 0 -54 -10.5 t-40 -28.5t-24.5 -42t-8.5 -51t8.5 -51t24.5 -42.5t40 -29t54 -10.5q31 0 55 10.5t40 29t24.5 42.5t8.5 51z" />
114
+ <glyph unicode="&#xa5;" horiz-adv-x="645" d="M629 153q0 -16 -11 -27t-27 -11h-197v-51q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v51h-196q-16 0 -27 11.5t-11 28.5q0 16 11 27t27 11h196v80h-195q-17 0 -28 11.5t-11 29.5q0 16 11 27t28 11h143l-143 221q-10 14 -10 34q0 23 18.5 44t48.5 21 q17 0 33 -8.5t26 -23.5l150 -241l147 240q10 16 25.5 24.5t33.5 8.5q31 0 49.5 -20t18.5 -45q0 -19 -10 -35l-142 -220h146q16 0 27 -11.5t11 -28.5t-11 -28t-27 -11h-197v-80h197q16 0 27 -11.5t11 -28.5z" />
115
+ <glyph unicode="&#xa6;" horiz-adv-x="216" d="M151 407q0 -17 -12.5 -29.5t-30.5 -12.5q-17 0 -29.5 12.5t-12.5 29.5v245q0 17 12.5 29t31.5 12q17 0 29 -12t12 -29v-245zM151 16q0 -17 -12.5 -29.5t-30.5 -12.5q-17 0 -29.5 12.5t-12.5 29.5v245q0 17 12.5 29t31.5 12q17 0 29 -12t12 -29v-245z" />
116
+ <glyph unicode="&#xa7;" horiz-adv-x="484" d="M446 75q0 -37 -15.5 -66t-43.5 -49t-66.5 -30.5t-83.5 -10.5q-28 0 -57.5 4.5t-55.5 13t-47 20.5t-32 27q-10 11 -10 26q0 20 14 34.5t32 14.5q16 0 27 -8q26 -18 60 -31t69 -13q39 0 63 14.5t24 43.5q0 24 -21.5 36t-53 20.5t-69 17t-69 25t-53 43.5t-21.5 74 q0 25 9 45.5t23 36.5t31.5 26.5t34.5 16.5q-48 18 -73 49.5t-25 76.5q0 31 14.5 57.5t40.5 46t62.5 30.5t80.5 11q35 0 68 -6t59 -16.5t41.5 -25t15.5 -32.5q0 -20 -13.5 -33t-32.5 -13q-14 0 -24 7q-25 15 -53 22.5t-56 7.5q-37 0 -58.5 -14t-21.5 -40q0 -21 21 -31.5 t53 -18l69 -15.5t69 -24t53 -44t21 -75q0 -42 -21 -75t-62 -53q36 -16 59.5 -44.5t23.5 -78.5zM321 302q0 16 -7 28t-18.5 20.5t-26.5 14t-31 9.5q-46 -11 -62 -30t-16 -44q0 -18 9 -29.5t23.5 -20t33 -13.5t37.5 -9q29 13 43.5 30.5t14.5 43.5z" />
117
+ <glyph unicode="&#xa8;" horiz-adv-x="295" d="M321 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM109 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
118
+ <glyph unicode="&#xa9;" horiz-adv-x="778" d="M734 334q0 -71 -27 -134t-74 -110t-109.5 -74t-134.5 -27q-71 0 -134 27t-110 74t-74 110t-27 134q0 72 27 134.5t74 109.5t110 74t134 27q72 0 134.5 -27t109.5 -74t74 -109.5t27 -134.5zM698 334q0 64 -24.5 120t-66.5 98t-98 66.5t-120 24.5q-63 0 -119.5 -24.5 t-98.5 -66.5t-66.5 -98t-24.5 -120q0 -63 24.5 -119.5t66.5 -98.5t98.5 -66.5t119.5 -24.5q64 0 120 24.5t98 66.5t66.5 98.5t24.5 119.5zM535 190q0 -8 -6 -14q-26 -25 -60 -39t-75 -14q-43 0 -81 16t-66 44.5t-44.5 67t-16.5 84.5t16.5 84.5t44.5 66.5t66 43.5t81 15.5 q41 0 74.5 -13.5t59.5 -37.5q6 -6 6 -14t-6 -15t-16 -7q-9 0 -15 6q-20 19 -47 30t-56 11q-33 0 -62.5 -12.5t-51.5 -35t-35 -53.5t-13 -69q0 -37 13 -68.5t35 -54.5t51.5 -36t62.5 -13q30 0 57.5 11t47.5 31q4 6 14 6q9 0 15.5 -6t6.5 -15z" />
119
+ <glyph unicode="&#xaa;" horiz-adv-x="385" d="M335 365q0 -19 -13 -32t-32 -13q-17 -3 -32 8t-15 29v1q-14 -15 -39 -27.5t-63 -12.5q-20 0 -39.5 6.5t-35.5 19.5t-25.5 32.5t-9.5 45.5t9.5 45t25.5 31.5t35.5 18.5t39.5 6q38 0 63 -11.5t39 -26.5v40q0 25 -19 39.5t-50 14.5q-17 0 -35.5 -6.5t-35.5 -17.5 q-8 -5 -16 -5q-12 0 -23.5 9.5t-11.5 25.5q0 9 5 17q8 12 24.5 21t36 14.5t39 8t33.5 2.5q28 0 54 -6t46 -20t32.5 -38.5t12.5 -60.5v-158zM243 404v36q-10 13 -27.5 20t-36.5 7q-23 0 -40 -11.5t-17 -33.5q0 -23 17 -35t40 -12q19 0 36.5 7.5t27.5 21.5z" />
120
+ <glyph unicode="&#xab;" horiz-adv-x="527" d="M447 102q0 -16 -11.5 -30.5t-31.5 -14.5q-19 0 -31 14l-100 112q-11 13 -16.5 28t-5.5 31t6 31.5t17 28.5l99 110q12 13 30 13q17 0 30.5 -12t13.5 -31q0 -17 -10 -28l-100 -111l100 -112q10 -11 10 -29zM257 102q0 -16 -11.5 -30.5t-31.5 -14.5q-19 0 -31 14l-100 112 q-22 25 -22 59t23 60l99 110q12 13 30 13q17 0 30.5 -12t13.5 -31q0 -17 -10 -28l-100 -111l100 -112q10 -11 10 -29z" />
121
+ <glyph unicode="&#xac;" horiz-adv-x="515" d="M475 235q0 -17 -12 -28.5t-29 -11.5t-28.5 11.5t-11.5 28.5v153h-332q-16 0 -27.5 12t-11.5 29q0 16 11.5 27.5t27.5 11.5h333q33 0 56.5 -23.5t23.5 -56.5v-153v0z" />
122
+ <glyph unicode="&#xad;" horiz-adv-x="300" d="M223 296q22 0 37.5 -15.5t15.5 -37.5q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146v0z" />
123
+ <glyph unicode="&#xae;" horiz-adv-x="494" d="M459 465q0 -44 -16.5 -82.5t-45 -67.5t-67.5 -45.5t-83 -16.5t-82.5 16.5t-67.5 45.5t-45.5 67.5t-16.5 82.5t16.5 83t45.5 67.5t67.5 45t82.5 16.5t83 -16.5t67.5 -45t45 -67.5t16.5 -83zM427 465q0 37 -14 70t-38.5 57.5t-57.5 38.5t-70 14q-38 0 -70.5 -14t-57 -38.5 t-38.5 -57.5t-14 -70t14 -70t38.5 -57.5t57 -38.5t70.5 -14q37 0 70 14t57.5 38.5t38.5 57.5t14 70zM344 512q0 -20 -7.5 -34t-18 -22.5t-21 -12t-15.5 -3.5l50 -73q4 -5 4 -12q0 -8 -5.5 -12.5t-12.5 -4.5q-10 0 -16 10l-60 91h-42v-86q0 -7 -5 -11.5t-13 -4.5 q-7 0 -11.5 4.5t-4.5 11.5v201q0 14 9.5 23t23.5 9h66q31 0 55 -20t24 -54zM309 512q0 20 -14 32t-30 12h-65v-86h65q16 0 30 11.5t14 30.5z" />
124
+ <glyph unicode="&#xaf;" horiz-adv-x="363" d="M363 599q0 -16 -10.5 -26.5t-24.5 -10.5h-293q-14 0 -24.5 10.5t-10.5 26.5q0 14 10.5 24.5t24.5 10.5h293q14 0 24.5 -10.5t10.5 -24.5z" />
125
+ <glyph unicode="&#xb0;" horiz-adv-x="311" d="M290 541q0 -28 -10.5 -52.5t-29 -42.5t-43 -28.5t-52.5 -10.5t-52.5 10.5t-43 28.5t-29 42.5t-10.5 52.5t10.5 53t29 43.5t43 29t52.5 10.5t52.5 -10.5t43 -29t29 -43.5t10.5 -53zM221 541q0 28 -19.5 47.5t-46.5 19.5q-28 0 -46.5 -19.5t-18.5 -47.5q0 -27 18.5 -46 t46.5 -19q27 0 46.5 19t19.5 46z" />
126
+ <glyph unicode="&#xb1;" horiz-adv-x="504" d="M481 366q0 -17 -11 -28.5t-27 -11.5h-147v-167q0 -18 -12.5 -30.5t-31.5 -12.5q-18 0 -30.5 12.5t-12.5 30.5v167h-148q-16 0 -27 11.5t-11 28.5q0 16 11 27t27 11h148v161q0 17 12.5 29.5t32.5 12.5q17 0 29.5 -12.5t12.5 -29.5v-161h147q16 0 27 -11t11 -27zM481 40 q0 -17 -11 -28.5t-27 -11.5h-382q-16 0 -27 11.5t-11 28.5q0 16 11 27t27 11h382q16 0 27 -11t11 -27z" />
127
+ <glyph unicode="&#xb2;" horiz-adv-x="397" d="M366 461q0 -17 -11 -28.5t-26 -11.5h-251q-16 0 -27 11.5t-11 29.5q0 11 5 21t15 17l99.5 71.5t62 52t31.5 39t9 32.5q0 14 -5.5 24.5t-14.5 17t-21.5 10t-26.5 3.5q-23 0 -45 -7.5t-40 -20.5q-11 -8 -25 -8q-15 0 -26.5 10.5t-11.5 27.5q0 12 7 22q8 13 25.5 23t38 17 t42 10t37.5 3q34 0 63.5 -8t51.5 -24t34 -39.5t12 -53.5q0 -24 -10.5 -47.5t-32 -48t-54 -51t-75.5 -57.5h144q15 0 26 -11t11 -26z" />
128
+ <glyph unicode="&#xb3;" horiz-adv-x="397" d="M363 532q0 -53 -45.5 -85.5t-120.5 -32.5q-26 0 -54 5t-51 14.5t-37.5 22.5t-14.5 30t12.5 28.5t28.5 11.5q11 0 22 -6q22 -15 46 -22t45 -7q35 0 54 13t19 34q0 29 -25 39t-63 10h-15q-14 0 -25 8.5t-11 28.5q0 19 11 28t25 9h14q40 0 61 9.5t21 35.5q0 23 -20.5 33.5 t-52.5 10.5q-21 0 -42.5 -6t-40.5 -20q-10 -7 -23 -7q-14 0 -24.5 10.5t-10.5 26.5q0 9 6 20q15 22 55 37.5t90 15.5q77 0 118 -30t41 -79q0 -18 -7.5 -33.5t-19.5 -27.5t-28 -19.5t-34 -10.5q15 -1 32 -7.5t31.5 -18.5t23.5 -29.5t9 -39.5z" />
129
+ <glyph unicode="&#xb4;" horiz-adv-x="251" d="M196 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
130
+ <glyph unicode="&#xb5;" horiz-adv-x="593" d="M580 47q0 -26 -15 -43t-47 -17q-17 0 -35.5 4t-35.5 14t-31 27t-21 42q-21 -37 -56 -61.5t-79 -24.5q-27 0 -44.5 8.5t-25.5 19.5v-144q0 -26 -18.5 -44t-45.5 -18q-26 0 -44.5 18t-18.5 44v555q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -49 24 -69.5t66 -20.5 q18 0 34 5t30 12.5t25.5 17.5t19.5 21v271q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-282q0 -20 10 -29.5t22 -17t22 -18.5t10 -33z" />
131
+ <glyph unicode="&#xb6;" horiz-adv-x="449" d="M403 -76q0 -12 -9 -21t-23 -9q-13 0 -22 9t-9 21v681h-78v-681q0 -12 -9 -21t-23 -9q-13 0 -22 9t-9 21v399q-36 0 -67 13.5t-54.5 37t-37 54.5t-13.5 67t13.5 67t37 54.5t54.5 37t67 13.5h142q26 0 44 -18t18 -44v-681v0z" />
132
+ <glyph unicode="&#xb7;" d="M209 244q0 -16 -6.5 -30.5t-17.5 -25.5t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25.5 17.5t-17.5 25.5t-6.5 30.5q0 33 24 57t57 24t57 -24t24 -57z" />
133
+ <glyph unicode="&#xb8;" horiz-adv-x="221" d="M221 -111q0 -40 -33 -62.5t-78 -22.5q-18 0 -36.5 3t-34.5 8.5t-26 14t-10 20.5t8.5 20t19.5 8q6 0 12 -3q16 -8 32.5 -12.5t30.5 -4.5q20 0 36 8t16 25q0 12 -7.5 19t-21.5 7q-12 0 -20 -6t-20 -6q-15 0 -24 10t-9 21q0 3 0.5 5.5t1.5 5.5l21 56q5 13 15 21t22 8 q10 0 17 -6t7 -16q0 -8 -3 -15l-19 -46q17 10 36 10q28 0 47.5 -19t19.5 -51z" />
134
+ <glyph unicode="&#xb9;" horiz-adv-x="286" d="M226 463q0 -20 -14 -34t-35 -14q-20 0 -34 14t-14 34v235l-45 -46q-11 -11 -26 -11t-27.5 11.5t-12.5 28.5q0 16 12 28l102 101q8 8 18 12t21 4q23 0 39 -15t16 -37v-311v0z" />
135
+ <glyph unicode="&#xba;" horiz-adv-x="405" d="M375 483q0 -33 -12 -63t-34 -52.5t-54.5 -36t-72.5 -13.5t-71.5 13.5t-54 36t-34.5 52.5t-12 63t12 63t34.5 52.5t54 36t71.5 13.5t72.5 -13.5t54.5 -36t34 -52.5t12 -63zM280 483q0 42 -20.5 65.5t-57.5 23.5t-57 -23.5t-20 -65.5t20 -66.5t57 -24.5t57.5 24.5 t20.5 66.5z" />
136
+ <glyph unicode="&#xbb;" horiz-adv-x="527" d="M466 242q0 -34 -22 -59l-100 -112q-12 -14 -31 -14q-17 0 -30.5 13t-13.5 32q0 17 11 29l100 112l-100 111q-10 11 -10 27q0 17 12 30.5t31 13.5t31 -13l99 -110q23 -26 23 -60zM276 242q0 -34 -22 -59l-100 -112q-12 -14 -31 -14q-17 0 -30.5 13t-13.5 32q0 17 11 29 l100 112l-100 111q-10 11 -10 27q0 17 12 30.5t31 13.5t31 -13l99 -110q11 -13 17 -28.5t6 -31.5z" />
137
+ <glyph unicode="&#xbc;" horiz-adv-x="833" d="M814 125q0 -17 -11 -28t-25 -11h-23v-45q0 -20 -14 -33.5t-34 -13.5t-33.5 13.5t-13.5 33.5v45h-163q-16 0 -27.5 12t-11.5 31q0 7 1.5 13t5.5 12l136 213q11 18 30 28.5t41 10.5q17 0 32 -6.5t26.5 -17t18 -25t6.5 -30.5v-166h23q14 0 25 -11t11 -25zM618 641 q0 -8 -5 -16l-394 -617q-9 -14 -26 -14q-14 0 -23.5 9t-9.5 22q0 9 5 17l394 617q9 14 26 14q13 0 23 -9.5t10 -22.5zM226 309q0 -20 -14 -34t-35 -14q-20 0 -34 14t-14 34v235l-45 -46q-11 -11 -26 -11t-27.5 11.5t-12.5 28.5q0 16 12 28l102 101q8 8 18 12t21 4 q23 0 39 -15t16 -37v-311zM660 161v158l-101 -158h101z" />
138
+ <glyph unicode="&#xbd;" horiz-adv-x="867" d="M835 40q0 -17 -11 -28.5t-26 -11.5h-251q-16 0 -27 11.5t-11 29.5q0 11 5 21t15 17l99.5 71.5t62 52t31.5 39t9 32.5q0 14 -5.5 24.5t-14.5 17t-21.5 10t-26.5 3.5q-23 0 -45 -7.5t-40 -20.5q-11 -8 -25 -8q-15 0 -26.5 10.5t-11.5 27.5q0 12 7 22q8 13 25.5 23t38 17 t42 10t37.5 3q34 0 63.5 -8t51.5 -24t34 -39.5t12 -53.5q0 -24 -10.5 -47.5t-32 -48t-54 -51t-75.5 -57.5h144q15 0 26 -11t11 -26zM618 641q0 -8 -5 -16l-394 -617q-9 -14 -26 -14q-14 0 -23.5 9t-9.5 22q0 9 5 17l394 617q9 14 26 14q13 0 23 -9.5t10 -22.5zM226 309 q0 -20 -14 -34t-35 -14q-20 0 -34 14t-14 34v235l-45 -46q-11 -11 -26 -11t-27.5 11.5t-12.5 28.5q0 16 12 28l102 101q8 8 18 12t21 4q23 0 39 -15t16 -37v-311z" />
139
+ <glyph unicode="&#xbe;" horiz-adv-x="921" d="M902 125q0 -17 -11 -28t-25 -11h-23v-45q0 -20 -14 -33.5t-34 -13.5t-33.5 13.5t-13.5 33.5v45h-163q-16 0 -27.5 12t-11.5 31q0 7 1.5 13t5.5 12l136 213q11 18 30 28.5t41 10.5q17 0 32 -6.5t26.5 -17t18 -25t6.5 -30.5v-166h23q14 0 25 -11t11 -25zM705 641 q0 -8 -5 -16l-394 -617q-9 -14 -26 -14q-14 0 -23.5 9t-9.5 22q0 9 5 17l394 617q9 14 26 14q13 0 23 -9.5t10 -22.5zM363 378q0 -53 -45.5 -85.5t-120.5 -32.5q-26 0 -54 5t-51 14.5t-37.5 22.5t-14.5 30t12.5 28.5t28.5 11.5q11 0 22 -6q22 -15 46 -22t45 -7q35 0 54 13 t19 34q0 29 -25 39t-63 10h-15q-14 0 -25 8.5t-11 28.5q0 19 11 28t25 9h14q40 0 61 9.5t21 35.5q0 23 -20.5 33.5t-52.5 10.5q-21 0 -42.5 -6t-40.5 -20q-10 -7 -23 -7q-14 0 -24.5 10.5t-10.5 26.5q0 9 6 20q15 22 55 37.5t90 15.5q77 0 118 -30t41 -79q0 -18 -7.5 -33.5 t-19.5 -27.5t-28 -19.5t-34 -10.5q15 -1 32 -7.5t31.5 -18.5t23.5 -29.5t9 -39.5zM748 161v158l-101 -158h101z" />
140
+ <glyph unicode="&#xbf;" horiz-adv-x="398" d="M311 413q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57zM426 -88q0 -15 -6 -27q-10 -20 -32.5 -35t-50 -24.5t-56.5 -14.5t-53 -5q-48 0 -86.5 11.5t-65.5 32.5t-41.5 50t-14.5 64q0 37 12.5 63t31 45.5t40 34.5t40 29.5t31 30.5t12.5 37 q0 10 -1.5 14.5t-1.5 11.5q0 20 14 37t42 17q14 0 27 -6t22.5 -17.5t15.5 -29t6 -40.5q0 -30 -11 -51.5t-27 -38.5t-35 -30t-35 -25.5t-27 -26t-11 -30.5q0 -23 18 -40t60 -17q23 0 43.5 7t38.5 19t42 12t41.5 -15.5t17.5 -42.5z" />
141
+ <glyph unicode="&#xc0;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM369 750q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
142
+ <glyph unicode="&#xc1;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM475 834q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
143
+ <glyph unicode="&#xc2;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM469 750q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
144
+ <glyph unicode="&#xc3;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM504 829q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5 q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
145
+ <glyph unicode="&#xc4;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM516 778q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM304 778q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
146
+ <glyph unicode="&#xc5;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM447 793q0 -22 -8 -41t-22 -33.5t-33 -22.5t-41 -8q-21 0 -40.5 8t-33.5 22.5t-22.5 33.5t-8.5 41q0 21 8.5 40.5t22.5 34t33.5 23t40.5 8.5q22 0 41 -8.5t33 -23t22 -34t8 -40.5zM389 793q0 20 -13 33.5t-33 13.5q-19 0 -33 -13.5t-14 -33.5q0 -19 14 -33 t33 -14q20 0 33 14t13 33z" />
147
+ <glyph unicode="&#xc6;" horiz-adv-x="968" d="M932 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v33h-235l-51 -88q-9 -16 -24.5 -24t-32.5 -8q-30 0 -49.5 21.5t-19.5 48.5q0 20 10 37l303 499q20 32 53 50t69 18h394q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-274v-141h267q25 0 43 -18.5 t18 -44.5t-18 -44t-43 -18h-267v-151h274q25 0 43 -18t18 -43zM454 238v287l-167 -287h167z" />
148
+ <glyph unicode="&#xc7;" horiz-adv-x="687" d="M389 678q86 0 145.5 -32t97.5 -78q14 -17 14 -39q0 -27 -20 -45.5t-48 -18.5q-14 0 -27.5 6t-24.5 17q-29 30 -64 47t-73 17q-45 0 -83.5 -16.5t-66.5 -46t-43.5 -69.5t-15.5 -87t15.5 -87.5t43.5 -69.5t66.5 -45.5t83.5 -16.5q38 0 73.5 16t63.5 47q11 11 25 17t29 6 q28 0 46.5 -18.5t18.5 -43.5q0 -11 -3 -21t-11 -18q-36 -44 -90.5 -75t-134.5 -35l-16 -40q17 10 36 10q28 0 47.5 -19t19.5 -51q0 -40 -33 -62.5t-78 -22.5q-18 0 -36.5 3t-34.5 8.5t-26 14t-10 20.5t8.5 20t19.5 8q6 0 12 -3q16 -8 32.5 -12.5t30.5 -4.5q20 0 36 8t16 25 q0 12 -7.5 19t-21.5 7q-12 0 -20 -6t-20 -6q-15 0 -24 10t-9 21q0 3 0.5 5.5t1.5 5.5l16 44q-67 7 -124 34.5t-99 72t-65.5 104.5t-23.5 131q0 77 27.5 140.5t75 109t112.5 70.5t140 25z" />
149
+ <glyph unicode="&#xc8;" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43zM327 750q0 -13 -9.5 -23 t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
150
+ <glyph unicode="&#xc9;" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43zM434 834q0 -17 -12 -27 l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
151
+ <glyph unicode="&#xca;" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43zM428 750q0 -11 -9 -22.5 t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
152
+ <glyph unicode="&#xcb;" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43zM476 778q0 -29 -20 -48.5 t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM264 778q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
153
+ <glyph unicode="&#xcc;" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0zM166 750q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
154
+ <glyph unicode="&#xcd;" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0zM271 834q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
155
+ <glyph unicode="&#xce;" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0zM265 750q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12 q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
156
+ <glyph unicode="&#xcf;" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0zM313 778q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM101 778q0 -29 -19.5 -48.5t-47.5 -19.5 q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
157
+ <glyph unicode="&#xd0;" horiz-adv-x="742" d="M708 333q0 -75 -26 -136.5t-72.5 -105t-112 -67.5t-143.5 -24h-183q-33 0 -56.5 23.5t-23.5 56.5v197h-37q-22 0 -37 15.5t-15 38.5q0 21 15 36t37 15h37v205q0 33 23.5 56.5t56.5 23.5h183q78 0 143.5 -24t112 -67.5t72.5 -105.5t26 -137zM563 333q0 44 -13.5 82.5 t-39.5 66.5t-65.5 44t-90.5 16h-121v-160h104q21 0 36 -15t15 -38q0 -22 -15 -37t-36 -15h-104v-152h121q49 0 88 16.5t66 45t41 66.5t14 80z" />
158
+ <glyph unicode="&#xd1;" horiz-adv-x="729" d="M663 80q0 -17 -6.5 -32.5t-18.5 -27.5t-28 -19t-35 -7q-20 0 -39 9.5t-32 26.5l-296 405v-371q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v518q0 18 7 34t19.5 29t29.5 20.5t37 7.5q23 0 43.5 -10t34.5 -29l284 -386v355q0 29 21 49.5t51 20.5 q29 0 49.5 -20.5t20.5 -49.5v-523v0zM525 829q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5 t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
159
+ <glyph unicode="&#xd2;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM410 750q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
160
+ <glyph unicode="&#xd3;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM515 834q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
161
+ <glyph unicode="&#xd4;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM511 750q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32 l41 -62q5 -6 5 -17z" />
162
+ <glyph unicode="&#xd5;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM544 829q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28 q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
163
+ <glyph unicode="&#xd6;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM557 778q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM345 778q0 -29 -19.5 -48.5t-47.5 -19.5 q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
164
+ <glyph unicode="&#xd7;" horiz-adv-x="504" d="M438 187q0 -17 -13 -28t-27 -11q-16 0 -27 11l-119 119l-118 -119q-11 -11 -27 -11t-28.5 11.5t-12.5 28.5q0 15 11 26l119 120l-118 118q-12 12 -12 27t11 28t28 13t29 -12l118 -119l119 120q11 11 26 11t28 -11.5t13 -28.5q0 -16 -11 -27l-119 -119l119 -120 q11 -13 11 -27z" />
165
+ <glyph unicode="&#xd8;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-52 0 -98.5 12t-85.5 35l-20 -26q-13 -16 -31 -16q-17 0 -29.5 11.5t-12.5 28.5q0 12 8 25l20 26q-47 46 -73 109.5t-26 139.5q0 75 26 138.5t72.5 109.5t110.5 71.5t139 25.5q48 0 91.5 -10.5 t81.5 -30.5l15 19q12 15 32 15q16 0 29 -11t13 -28q0 -11 -8 -22l-14 -19q51 -47 80 -112.5t29 -145.5zM585 333q0 44 -12.5 81t-35.5 66l-259 -339q22 -13 48 -20t56 -7q46 0 83.5 17t64 46t41 69t14.5 87zM474 531q-20 10 -43 15.5t-49 5.5q-46 0 -83.5 -16.5t-63.5 -46 t-40.5 -69.5t-14.5 -87q0 -40 10 -74.5t29 -62.5z" />
166
+ <glyph unicode="&#xd9;" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0zM394 750 q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
167
+ <glyph unicode="&#xda;" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0zM500 834 q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
168
+ <glyph unicode="&#xdb;" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0zM497 750 q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
169
+ <glyph unicode="&#xdc;" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0zM543 778 q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM331 778q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
170
+ <glyph unicode="&#xdd;" horiz-adv-x="645" d="M597 607q0 -19 -10 -35l-193 -299v-209q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v209l-195 300q-10 14 -10 34q0 24 19 44.5t49 20.5q17 0 32.5 -8t25.5 -24l150 -241l147 240q10 16 25.5 24.5t33.5 8.5q31 0 49.5 -20t18.5 -45zM455 834q0 -17 -12 -27 l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
171
+ <glyph unicode="&#xde;" horiz-adv-x="624" d="M602 343q0 -44 -15 -82.5t-43.5 -67.5t-70 -46t-95.5 -17h-170v-66q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-44h170q54 0 96 -17.5t70.5 -47t43 -68.5t14.5 -83zM457 344q0 42 -28.5 66t-71.5 24 h-149v-179h149q43 0 71.5 23.5t28.5 65.5z" />
172
+ <glyph unicode="&#xdf;" horiz-adv-x="643" d="M627 144q0 -34 -14 -62.5t-40.5 -49.5t-63.5 -32.5t-83 -11.5q-27 0 -54.5 4.5t-51.5 12.5t-42.5 20t-28.5 27q-9 13 -9 28q0 22 14 36t34 14q14 0 28 -8q23 -16 51.5 -25.5t58.5 -9.5q40 0 59.5 16t19.5 36t-19.5 30t-48.5 17.5l-62.5 16t-62.5 25t-48.5 43.5t-19.5 73 q0 26 9 45.5t23 35t29.5 27l29.5 22t23 20t9 20.5q0 12 -6.5 21.5t-17.5 16t-25 9.5t-28 3q-21 0 -39.5 -6t-32 -17.5t-21 -28t-7.5 -37.5v-418q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v418q0 41 15.5 78t44.5 64.5t72 43.5t97 16q40 0 77 -10t65.5 -29 t46 -45.5t17.5 -60.5q0 -28 -10 -48.5t-24.5 -36t-31.5 -27t-31.5 -23t-24.5 -23t-10 -26.5q0 -18 19.5 -26t48.5 -14.5l62.5 -14.5t62.5 -25t48.5 -46t19.5 -78z" />
173
+ <glyph unicode="&#xe0;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM295 583 q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
174
+ <glyph unicode="&#xe1;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM401 667 q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
175
+ <glyph unicode="&#xe2;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM397 583 q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
176
+ <glyph unicode="&#xe3;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM431 662 q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23 t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
177
+ <glyph unicode="&#xe4;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM443 611 q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM231 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
178
+ <glyph unicode="&#xe5;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM375 636q0 -22 -8 -41 t-22 -33.5t-33 -22.5t-41 -8q-21 0 -40.5 8t-33.5 22.5t-22.5 33.5t-8.5 41q0 21 8.5 40.5t22.5 34t33.5 23t40.5 8.5q22 0 41 -8.5t33 -23t22 -34t8 -40.5zM317 636q0 20 -13 33.5t-33 13.5q-19 0 -33 -13.5t-14 -33.5q0 -19 14 -33t33 -14q20 0 33 14t13 33z" />
179
+ <glyph unicode="&#xe6;" horiz-adv-x="870" d="M839 261q0 -25 -17.5 -42.5t-42.5 -17.5h-279q3 -22 13 -42t26.5 -35t39 -23.5t51.5 -8.5q20 0 42 5t42 16q12 6 27 6q20 0 36.5 -13.5t16.5 -35.5q0 -12 -7 -24q-10 -16 -31 -27t-45.5 -18t-49 -10t-40.5 -3q-59 0 -106 20t-80 68q-30 -38 -83 -63t-118 -25 q-40 0 -76.5 9.5t-64.5 29t-44.5 49t-16.5 70.5q0 40 14 69.5t38 49t56 29.5t67 10q50 0 93.5 -14.5t71.5 -43.5v65q0 36 -31.5 58t-83.5 22q-30 0 -59.5 -7.5t-57.5 -24.5q-12 -7 -24 -7q-17 0 -32 13.5t-15 35.5q0 14 7 25q11 18 35 31.5t53 21.5t58 12t50 4 q32 0 58.5 -5.5t47.5 -16t37 -26t26 -35.5q13 17 29 32t37 26.5t48 18t61 6.5q77 0 132 -43.5t78 -118.5q5 -14 9 -32t4 -40zM718 287q-1 17 -7 36t-19.5 34.5t-34 26t-49.5 10.5q-27 0 -47 -10t-33.5 -25.5t-20.5 -34.5t-9 -37h220zM372 169v6q-18 20 -48.5 31.5 t-64.5 11.5q-42 0 -70.5 -16.5t-28.5 -48.5q0 -33 28.5 -49t67.5 -16q24 0 45 7.5t37 19t25 26t9 28.5z" />
180
+ <glyph unicode="&#xe7;" horiz-adv-x="499" d="M461 77q0 -13 -6 -23q-7 -13 -21.5 -24t-33.5 -19.5t-41 -14t-45 -7.5l-16 -40q17 10 36 10q28 0 47.5 -19t19.5 -51q0 -40 -33 -62.5t-78 -22.5q-18 0 -36.5 3t-34.5 8.5t-26 14t-10 20.5t8.5 20t19.5 8q6 0 12 -3q16 -8 32.5 -12.5t30.5 -4.5q20 0 36 8t16 25 q0 12 -7.5 19t-21.5 7q-12 0 -20 -6t-20 -6q-15 0 -24 10t-9 21q0 3 0.5 5.5t1.5 5.5l16 43q-49 5 -90 25.5t-70 53.5t-45.5 77t-16.5 96q0 55 19 101.5t53 80.5t81 52.5t103 18.5q28 0 54.5 -5t48.5 -13.5t38.5 -20.5t24.5 -27q6 -11 6 -23q0 -26 -19.5 -40t-40.5 -14 q-19 0 -35 10t-34 15t-37 5q-29 0 -53 -10t-41.5 -28.5t-27 -44.5t-9.5 -57q0 -32 9.5 -57.5t27 -44.5t41.5 -29t53 -10q39 0 72 21q16 10 34 10q23 0 42 -15t19 -40z" />
181
+ <glyph unicode="&#xe8;" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238zM309 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27 t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
182
+ <glyph unicode="&#xe9;" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238zM415 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22 l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
183
+ <glyph unicode="&#xea;" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238zM409 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9 t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
184
+ <glyph unicode="&#xeb;" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238zM457 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5 t20 -47.5zM245 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
185
+ <glyph unicode="&#xec;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0zM155 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
186
+ <glyph unicode="&#xed;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0zM259 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
187
+ <glyph unicode="&#xee;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0zM254 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12 q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
188
+ <glyph unicode="&#xef;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0zM302 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM90 611q0 -29 -19.5 -48.5t-47.5 -19.5 q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
189
+ <glyph unicode="&#xf0;" horiz-adv-x="574" d="M543 252q0 -59 -17.5 -107.5t-50.5 -83t-80.5 -54t-107.5 -19.5q-58 0 -105 17.5t-80.5 49t-51.5 75t-18 94.5q0 52 16.5 95t45 74.5t68 49t84.5 17.5q52 0 91.5 -23t68.5 -70q-20 46 -62 87.5t-95 78.5l-123 -54q-6 -3 -13 -3q-11 0 -21.5 9t-10.5 24q0 22 20 30l84 37 q-9 5 -17 11t-13.5 13t-8.5 15.5t-3 19.5q1 27 20 44t42 17q12 0 26.5 -6.5t29.5 -16.5l29.5 -20.5t25.5 -19.5l81 36q6 2 11 2q11 0 21.5 -8.5t10.5 -23.5q0 -20 -18 -28l-51 -23q40 -36 72 -74t54 -79.5t34 -87t12 -95.5zM411 224q0 25 -8.5 47.5t-24 39t-38.5 26.5 t-53 10t-52.5 -10t-38.5 -26.5t-24 -39t-8 -47.5t8 -47.5t24 -39t38.5 -26.5t52.5 -10t53 10t38.5 26.5t24 39t8.5 47.5z" />
190
+ <glyph unicode="&#xf1;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v235q0 51 -24 70.5t-65 19.5q-19 0 -35.5 -5t-30.5 -13t-25 -18t-19 -21v-268q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-7 q12 14 28.5 27.5t38 24t47 17t55.5 6.5q80 0 118.5 -41.5t38.5 -112.5v-284v0zM452 662q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5 t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
191
+ <glyph unicode="&#xf2;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM314 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
192
+ <glyph unicode="&#xf3;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM420 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
193
+ <glyph unicode="&#xf4;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM413 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12 t35 -32l41 -62q5 -6 5 -17z" />
194
+ <glyph unicode="&#xf5;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM449 662q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28 q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
195
+ <glyph unicode="&#xf6;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM461 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM249 611q0 -29 -19.5 -48.5t-47.5 -19.5 q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
196
+ <glyph unicode="&#xf7;" horiz-adv-x="511" d="M255 576q26 0 43.5 -17.5t17.5 -42.5q0 -26 -17.5 -44t-43.5 -18t-43.5 18t-17.5 44q0 25 17.5 42.5t43.5 17.5zM488 339q0 -18 -11 -29.5t-27 -11.5h-388q-17 0 -28 11.5t-11 29.5q0 16 11 27t28 11h388q16 0 27 -11t11 -27zM316 157q0 -26 -17.5 -43.5t-43.5 -17.5 t-43.5 17.5t-17.5 43.5q0 25 17.5 43t43.5 18t43.5 -18t17.5 -43z" />
197
+ <glyph unicode="&#xf8;" horiz-adv-x="574" d="M121 3q-9 -10 -22 -10q-12 0 -21 9t-9 21t7 19l21 25q-32 35 -48.5 79.5t-16.5 95.5t17.5 97t50.5 80.5t80 55t107 20.5q42 0 77 -10t64 -28l18 21q7 10 22 10q12 0 22 -8.5t10 -20.5q0 -10 -7 -19l-18 -21q33 -35 50.5 -80.5t17.5 -96.5q0 -52 -17.5 -98t-50.5 -80.5 t-80.5 -55t-107.5 -20.5q-85 0 -145 40zM220 120q14 -10 30.5 -14.5t36.5 -4.5q30 0 53 11.5t38.5 30.5t24 44.5t8.5 54.5q0 44 -20 79zM287 382q-30 0 -52.5 -11.5t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -42 17 -76l169 199q-28 17 -63 17z" />
198
+ <glyph unicode="&#xf9;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0zM316 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
199
+ <glyph unicode="&#xfa;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0zM421 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
200
+ <glyph unicode="&#xfb;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0zM416 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
201
+ <glyph unicode="&#xfc;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0zM463 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM251 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
202
+ <glyph unicode="&#xfd;" horiz-adv-x="513" d="M491 427q0 -14 -4 -23l-195 -483q-26 -63 -69 -90t-97 -27q-17 0 -31 4t-24.5 11.5t-16.5 18t-6 23.5q0 23 16.5 39.5t43.5 16.5h8t8 1q16 3 28.5 11t19.5 23l18 41l-165 412q-4 9 -4 21q0 23 17.5 43t46.5 20q19 0 35 -11t24 -31l112 -300l112 300q7 19 24 30.5t37 11.5 q29 0 45.5 -19.5t16.5 -42.5zM388 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
203
+ <glyph unicode="&#xfe;" horiz-adv-x="583" d="M553 242q0 -60 -16 -107.5t-44.5 -80t-68 -49.5t-85.5 -17q-43 0 -81.5 18t-67.5 56v-190q0 -26 -18.5 -44t-45.5 -18q-26 0 -44.5 18t-18.5 44v739q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-189q28 35 66 54t83 19q46 0 85.5 -17t68 -49t44.5 -79.5t16 -107.5z M421 242q0 31 -9 57t-25 44.5t-38.5 28.5t-49.5 10q-31 0 -62 -16t-47 -39v-171q16 -23 47 -39t62 -16q27 0 49.5 10t38.5 29t25 44.5t9 57.5z" />
204
+ <glyph unicode="&#xff;" horiz-adv-x="513" d="M491 427q0 -14 -4 -23l-195 -483q-26 -63 -69 -90t-97 -27q-17 0 -31 4t-24.5 11.5t-16.5 18t-6 23.5q0 23 16.5 39.5t43.5 16.5h8t8 1q16 3 28.5 11t19.5 23l18 41l-165 412q-4 9 -4 21q0 23 17.5 43t46.5 20q19 0 35 -11t24 -31l112 -300l112 300q7 19 24 30.5t37 11.5 q29 0 45.5 -19.5t16.5 -42.5zM430 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM218 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
205
+ <glyph unicode="&#x110;" horiz-adv-x="742" d="M708 333q0 -75 -26 -136.5t-72.5 -105t-112 -67.5t-143.5 -24h-183q-33 0 -56.5 23.5t-23.5 56.5v197h-37q-22 0 -37 15.5t-15 38.5q0 21 15 36t37 15h37v205q0 33 23.5 56.5t56.5 23.5h183q78 0 143.5 -24t112 -67.5t72.5 -105.5t26 -137zM563 333q0 44 -13.5 82.5 t-39.5 66.5t-65.5 44t-90.5 16h-121v-160h104q21 0 36 -15t15 -38q0 -22 -15 -37t-36 -15h-104v-152h121q49 0 88 16.5t66 45t41 66.5t14 80z" />
206
+ <glyph unicode="&#x131;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1084" d="M1047 64q0 -27 -18 -45.5t-43 -18.5h-340q-16 0 -30 6t-24.5 16.5t-16.5 25t-6 30.5q-17 -23 -40 -39.5t-50 -28t-55.5 -17t-55.5 -5.5q-73 0 -134 25.5t-105.5 71t-69.5 109t-25 139.5t25 139t69.5 108.5t105.5 71t134 25.5q27 0 55.5 -5.5t55.5 -16.5t50 -27.5 t40 -38.5q0 16 6 30.5t16.5 25t25 16.5t30.5 6h339q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-274v-141h267q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-267v-151h274q25 0 43 -18t18 -43zM569 230v206q-24 57 -72 86t-109 29q-48 0 -86.5 -16.5t-65.5 -45.5t-41.5 -69 t-14.5 -87t14.5 -87t41.5 -69t65.5 -46t86.5 -17q61 0 109 30t72 86z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="931" d="M900 261q0 -25 -17.5 -42.5t-42.5 -17.5h-296q3 -22 13.5 -42.5t28 -36t42 -24.5t55.5 -9q22 0 46.5 6t46.5 17q12 6 25 6q20 0 37 -13.5t17 -36.5q0 -14 -9 -26q-11 -14 -32.5 -24.5t-47 -17t-51.5 -9.5t-46 -3q-40 0 -71 10t-54 25.5t-40 34.5t-29 37 q-12 -17 -28.5 -36t-39.5 -35t-52.5 -26t-67.5 -10q-60 0 -107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5q38 0 67.5 -10.5t52.5 -26.5t40 -35t29 -36q11 18 27.5 37t39 34.5t52 26t66.5 10.5q83 0 141.5 -44t83.5 -119q5 -14 9.5 -32 t4.5 -39zM780 287q-1 17 -8 36t-21.5 34.5t-37 26t-53.5 10.5q-29 0 -50.5 -10t-36 -25.5t-22 -34.5t-9.5 -37h238zM411 242q0 31 -9 56.5t-25 44t-39 29t-51 10.5t-50.5 -10.5t-38.5 -29t-25 -44t-9 -56.5t9 -57t25 -45t38.5 -29.5t50.5 -10.5t51 10.5t39 29.5t25 45t9 57z " />
209
+ <glyph unicode="&#x178;" horiz-adv-x="645" d="M597 607q0 -19 -10 -35l-193 -299v-209q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v209l-195 300q-10 14 -10 34q0 24 19 44.5t49 20.5q17 0 32.5 -8t25.5 -24l150 -241l147 240q10 16 25.5 24.5t33.5 8.5q31 0 49.5 -20t18.5 -45zM497 778q0 -29 -20 -48.5 t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM285 778q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="300" d="M276 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
211
+ <glyph unicode="&#x2da;" horiz-adv-x="209" d="M209 636q0 -22 -8 -41t-22 -33.5t-33 -22.5t-41 -8q-21 0 -40.5 8t-33.5 22.5t-22.5 33.5t-8.5 41q0 21 8.5 40.5t22.5 34t33.5 23t40.5 8.5q22 0 41 -8.5t33 -23t22 -34t8 -40.5zM151 636q0 20 -13 33.5t-33 13.5q-19 0 -33 -13.5t-14 -33.5q0 -19 14 -33t33 -14 q20 0 33 14t13 33z" />
212
+ <glyph unicode="&#x2dc;" horiz-adv-x="327" d="M325 662q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5 t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
213
+ <glyph unicode="&#x2000;" horiz-adv-x="449" />
214
+ <glyph unicode="&#x2001;" horiz-adv-x="899" />
215
+ <glyph unicode="&#x2002;" horiz-adv-x="449" />
216
+ <glyph unicode="&#x2003;" horiz-adv-x="899" />
217
+ <glyph unicode="&#x2004;" horiz-adv-x="299" />
218
+ <glyph unicode="&#x2005;" horiz-adv-x="224" />
219
+ <glyph unicode="&#x2006;" horiz-adv-x="149" />
220
+ <glyph unicode="&#x2007;" horiz-adv-x="149" />
221
+ <glyph unicode="&#x2008;" horiz-adv-x="112" />
222
+ <glyph unicode="&#x2009;" horiz-adv-x="179" />
223
+ <glyph unicode="&#x200a;" horiz-adv-x="49" />
224
+ <glyph unicode="&#x2010;" horiz-adv-x="300" d="M276 243q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146q22 0 37.5 -15.5t15.5 -37.5z" />
225
+ <glyph unicode="&#x2011;" horiz-adv-x="300" d="M276 243q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146q22 0 37.5 -15.5t15.5 -37.5z" />
226
+ <glyph unicode="&#x2012;" horiz-adv-x="300" d="M276 243q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146q22 0 37.5 -15.5t15.5 -37.5z" />
227
+ <glyph unicode="&#x2013;" horiz-adv-x="593" d="M569 243q0 -23 -15.5 -39t-37.5 -16h-439q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h439q22 0 37.5 -15.5t15.5 -37.5z" />
228
+ <glyph unicode="&#x2014;" horiz-adv-x="833" d="M809 243q0 -23 -15.5 -39t-37.5 -16h-679q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h679q22 0 37.5 -15.5t15.5 -37.5z" />
229
+ <glyph unicode="&#x2018;" horiz-adv-x="255" d="M207 470q0 -33 -23 -56.5t-55 -23.5q-18 0 -34 7t-28.5 20t-20 32t-7.5 43q0 48 21.5 91.5t59.5 77.5q10 10 27 10q18 0 27 -11t9 -22q0 -14 -9 -21q-20 -16 -34.5 -37t-19.5 -41q2 1 8 2t11 1q29 0 48.5 -20t19.5 -52z" />
230
+ <glyph unicode="&#x2019;" horiz-adv-x="255" d="M215 575q0 -48 -21.5 -91.5t-59.5 -77.5q-10 -10 -27 -10t-26.5 11t-9.5 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
231
+ <glyph unicode="&#x201a;" d="M215 49q0 -48 -21.5 -91.5t-59.5 -77.5q-10 -10 -27 -10t-26.5 11t-9.5 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
232
+ <glyph unicode="&#x201c;" horiz-adv-x="459" d="M410 470q0 -33 -23 -56.5t-55 -23.5q-18 0 -34 7t-28.5 20t-20 32t-7.5 43q0 48 21.5 91.5t59.5 77.5q10 10 27 10t26.5 -11.5t9.5 -21.5q0 -14 -9 -21q-20 -16 -34.5 -37t-19.5 -41q2 1 8 2t11 1q29 0 48.5 -20t19.5 -52zM207 470q0 -33 -23 -56.5t-55 -23.5 q-18 0 -34 7t-28.5 20t-20 32t-7.5 43q0 48 21.5 91.5t59.5 77.5q10 10 27 10q18 0 27 -11t9 -22q0 -14 -9 -21q-20 -16 -34.5 -37t-19.5 -41q2 1 8 2t11 1q29 0 48.5 -20t19.5 -52z" />
233
+ <glyph unicode="&#x201d;" horiz-adv-x="459" d="M419 575q0 -48 -21.5 -91.5t-59.5 -77.5q-11 -10 -27 -10q-18 0 -27 11t-9 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43zM216 575q0 -48 -21.5 -91.5t-59.5 -77.5 q-11 -10 -27 -10q-18 0 -27 11t-9 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
234
+ <glyph unicode="&#x201e;" horiz-adv-x="459" d="M419 49q0 -48 -21.5 -91.5t-59.5 -77.5q-11 -10 -27 -10q-18 0 -27 11t-9 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43zM215 49q0 -48 -21.5 -91.5t-59.5 -77.5 q-11 -10 -27 -10q-18 0 -27 11t-9 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
235
+ <glyph unicode="&#x2022;" horiz-adv-x="358" d="M299 242q0 -24 -9.5 -45.5t-25.5 -37.5t-37.5 -25.5t-46.5 -9.5t-46.5 9.5t-37.5 25.5t-25.5 37.5t-9.5 45.5q0 25 9.5 46.5t25.5 37.5t37.5 25.5t46.5 9.5t46.5 -9.5t37.5 -25.5t25.5 -37.5t9.5 -46.5z" />
236
+ <glyph unicode="&#x2026;" horiz-adv-x="768" d="M720 70q0 -16 -6.5 -30.5t-17.5 -25.5t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25 17.5t-17 25.5t-6.5 30.5q0 33 23.5 57t56.5 24t57 -24t24 -57zM464 70q0 -16 -6.5 -30.5t-17.5 -25.5t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25 17.5t-17 25.5t-6.5 30.5q0 33 23.5 57 t56.5 24t57 -24t24 -57zM208 70q0 -16 -6.5 -30.5t-17.5 -25.5t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25 17.5t-17 25.5t-6.5 30.5q0 33 23.5 57t56.5 24t57 -24t24 -57z" />
237
+ <glyph unicode="&#x202f;" horiz-adv-x="179" />
238
+ <glyph unicode="&#x2039;" horiz-adv-x="337" d="M257 102q0 -16 -11.5 -30.5t-31.5 -14.5q-19 0 -31 14l-100 112q-22 25 -22 59t23 60l99 110q12 13 30 13q17 0 30.5 -12t13.5 -31q0 -17 -10 -28l-100 -111l100 -112q10 -11 10 -29z" />
239
+ <glyph unicode="&#x203a;" horiz-adv-x="337" d="M276 242q0 -34 -22 -59l-100 -112q-12 -14 -31 -14q-17 0 -30.5 13t-13.5 32q0 17 11 29l100 112l-100 111q-10 11 -10 27q0 17 12 30.5t31 13.5t31 -13l99 -110q23 -26 23 -60z" />
240
+ <glyph unicode="&#x205f;" horiz-adv-x="224" />
241
+ <glyph unicode="&#x20ac;" horiz-adv-x="709" d="M412 678q86 0 145.5 -32t97.5 -78q14 -17 14 -39q0 -27 -20 -45.5t-48 -18.5q-14 0 -27.5 6t-24.5 17q-29 30 -64 47t-73 17q-31 0 -58.5 -8t-51 -22t-42.5 -34.5t-32 -45.5h215q14 0 25 -11t11 -27q0 -15 -11 -26t-25 -11h-238q-2 -8 -2 -17v-17t0.5 -15.5t1.5 -15.5 h237q15 0 26 -11t11 -28q0 -15 -11 -26t-26 -11h-215q13 -26 31.5 -46.5t42.5 -35t52 -22.5t59 -8q38 0 73.5 16t63.5 47q11 11 25 17t29 6q28 0 46.5 -18.5t18.5 -43.5q0 -11 -3 -21t-11 -18q-38 -46 -97 -78.5t-145 -32.5q-61 0 -115.5 17t-99 48t-77 75t-48.5 98h-20 q-15 0 -26 11t-11 28q0 15 11 26t26 11h6q-1 8 -1 15.5v15.5v17t1 17h-6q-15 0 -26 11t-11 28q0 14 11 25t26 11h21q16 54 48.5 97.5t76.5 74.5t98.5 47.5t115.5 16.5z" />
242
+ <glyph unicode="&#x2122;" horiz-adv-x="454" d="M419 454q0 -13 -14 -13t-14 13v175l-69 -168q-3 -8 -10 -8t-10 8l-69 168v-175q0 -13 -14 -13t-14 13v197q0 9 6.5 15.5t17.5 6.5q16 0 22 -14l61 -152l60 151q7 15 23 15q11 0 17.5 -6.5t6.5 -15.5v-197zM175 654q0 -5 -3.5 -9t-8.5 -4h-56v-187q0 -13 -14 -13t-14 13 v187h-56q-5 0 -8.5 4t-3.5 9t3.5 9t8.5 4h140q5 0 8.5 -4t3.5 -9z" />
243
+ <glyph unicode="&#xe000;" horiz-adv-x="490" d="M0 490h490v-490h-490v490z" />
244
+ <glyph unicode="&#xfb01;" horiz-adv-x="580" d="M453 686q32 0 54 -21.5t22 -53.5t-22 -54t-54 -22q-31 0 -53.5 22t-22.5 54t22.5 53.5t53.5 21.5zM517 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370zM335 626q0 -19 -11.5 -34t-32.5 -15h-5h-6 q-26 0 -43.5 -17t-17.5 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 39 12 70.5t34 53t51.5 33t65.5 11.5q21 0 36 -3t25 -9 t15 -16t5 -23z" />
245
+ <glyph unicode="&#xfb02;" horiz-adv-x="580" d="M517 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-554zM335 626q0 -19 -11.5 -34t-32.5 -15h-5h-6q-26 0 -43.5 -17t-17.5 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315 q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 39 12 70.5t34 53t51.5 33t65.5 11.5q21 0 36 -3t25 -9t15 -16t5 -23z" />
246
+ <glyph unicode="&#xfb03;" horiz-adv-x="907" d="M780 686q32 0 54 -21.5t22 -53.5t-22 -54t-54 -22q-31 0 -53.5 22t-22.5 54t22.5 53.5t53.5 21.5zM844 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370zM695 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5 t-26 3.5q-26 0 -43 -17t-17 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5 t8 -23.5zM368 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5t-26 3.5q-26 0 -43 -17t-17 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26 q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5t8 -23.5z" />
247
+ <glyph unicode="&#xfb04;" horiz-adv-x="907" d="M844 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-554v0zM695 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5t-26 3.5q-26 0 -43 -17t-17 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315 q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5t8 -23.5zM368 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5t-26 3.5q-26 0 -43 -17t-17 -51v-26h50 q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5t8 -23.5z" />
248
+ </font>
249
+ </defs></svg>