factorylabs-castronaut 0.7.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (789) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.textile +67 -0
  3. data/Rakefile +78 -0
  4. data/bin/castronaut +75 -0
  5. data/config/castronaut.example.yml +41 -0
  6. data/config/castronaut.sample.yml +40 -0
  7. data/config/castronaut.yml +40 -0
  8. data/config/nginx_vhost.conf +17 -0
  9. data/config/thin_config.yml +13 -0
  10. data/lib/castronaut.rb +50 -0
  11. data/lib/castronaut/adapters.rb +13 -0
  12. data/lib/castronaut/adapters/development/adapter.rb +13 -0
  13. data/lib/castronaut/adapters/development/user.rb +25 -0
  14. data/lib/castronaut/adapters/ldap/adapter.rb +15 -0
  15. data/lib/castronaut/adapters/ldap/user.rb +40 -0
  16. data/lib/castronaut/adapters/restful_authentication/adapter.rb +15 -0
  17. data/lib/castronaut/adapters/restful_authentication/user.rb +50 -0
  18. data/lib/castronaut/application.rb +1 -0
  19. data/lib/castronaut/application/application.rb +70 -0
  20. data/lib/castronaut/application/public/javascripts/application.js +3 -0
  21. data/lib/castronaut/application/public/javascripts/jquery.js +32 -0
  22. data/lib/castronaut/application/public/stylesheets/screen.css +122 -0
  23. data/lib/castronaut/application/views/layout.erb +27 -0
  24. data/lib/castronaut/application/views/login.erb +31 -0
  25. data/lib/castronaut/application/views/logout.erb +13 -0
  26. data/lib/castronaut/application/views/proxy_validate.erb +21 -0
  27. data/lib/castronaut/application/views/service_validate.erb +14 -0
  28. data/lib/castronaut/authentication_result.rb +24 -0
  29. data/lib/castronaut/configuration.rb +110 -0
  30. data/lib/castronaut/db/001_create_cas_database.rb +47 -0
  31. data/lib/castronaut/models/consumeable.rb +18 -0
  32. data/lib/castronaut/models/dispenser.rb +14 -0
  33. data/lib/castronaut/models/login_ticket.rb +53 -0
  34. data/lib/castronaut/models/proxy_granting_ticket.rb +70 -0
  35. data/lib/castronaut/models/proxy_ticket.rb +43 -0
  36. data/lib/castronaut/models/service_ticket.rb +91 -0
  37. data/lib/castronaut/models/ticket_granting_ticket.rb +52 -0
  38. data/lib/castronaut/presenters/login.rb +84 -0
  39. data/lib/castronaut/presenters/logout.rb +56 -0
  40. data/lib/castronaut/presenters/process_login.rb +149 -0
  41. data/lib/castronaut/presenters/proxy_validate.rb +67 -0
  42. data/lib/castronaut/presenters/service_validate.rb +68 -0
  43. data/lib/castronaut/support/sample.rb +21 -0
  44. data/lib/castronaut/ticket_result.rb +27 -0
  45. data/lib/castronaut/utilities/random_string.rb +24 -0
  46. data/spec/app/controllers/application_spec.rb +86 -0
  47. data/spec/castronaut/adapters/development/adapter_spec.rb +14 -0
  48. data/spec/castronaut/adapters/development/user_spec.rb +55 -0
  49. data/spec/castronaut/adapters/ldap/adapter_spec.rb +14 -0
  50. data/spec/castronaut/adapters/ldap/user_spec.rb +25 -0
  51. data/spec/castronaut/adapters/restful_authentication/adapter_spec.rb +14 -0
  52. data/spec/castronaut/adapters/restful_authentication/user_spec.rb +108 -0
  53. data/spec/castronaut/adapters_spec.rb +13 -0
  54. data/spec/castronaut/authentication_result_spec.rb +20 -0
  55. data/spec/castronaut/configuration_spec.rb +172 -0
  56. data/spec/castronaut/models/consumeable_spec.rb +39 -0
  57. data/spec/castronaut/models/dispenser_spec.rb +30 -0
  58. data/spec/castronaut/models/login_ticket_spec.rb +107 -0
  59. data/spec/castronaut/models/proxy_granting_ticket_spec.rb +302 -0
  60. data/spec/castronaut/models/proxy_ticket_spec.rb +109 -0
  61. data/spec/castronaut/models/service_ticket_spec.rb +269 -0
  62. data/spec/castronaut/models/ticket_granting_ticket_spec.rb +89 -0
  63. data/spec/castronaut/presenters/login_spec.rb +152 -0
  64. data/spec/castronaut/presenters/logout_spec.rb +85 -0
  65. data/spec/castronaut/presenters/process_login_spec.rb +300 -0
  66. data/spec/castronaut/presenters/proxy_validate_spec.rb +103 -0
  67. data/spec/castronaut/presenters/service_validate_spec.rb +86 -0
  68. data/spec/castronaut/ticket_result_spec.rb +42 -0
  69. data/spec/castronaut/utilities/random_string_spec.rb +14 -0
  70. data/spec/castronaut_spec.rb +26 -0
  71. data/spec/spec_controller_helper.rb +17 -0
  72. data/spec/spec_helper.rb +39 -0
  73. data/spec/spec_rails_mocks.rb +132 -0
  74. data/vendor/activerecord/CHANGELOG +5786 -0
  75. data/vendor/activerecord/README +351 -0
  76. data/vendor/activerecord/RUNNING_UNIT_TESTS +36 -0
  77. data/vendor/activerecord/Rakefile +247 -0
  78. data/vendor/activerecord/examples/associations.png +0 -0
  79. data/vendor/activerecord/install.rb +30 -0
  80. data/vendor/activerecord/lib/active_record.rb +81 -0
  81. data/vendor/activerecord/lib/active_record/aggregations.rb +261 -0
  82. data/vendor/activerecord/lib/active_record/association_preload.rb +374 -0
  83. data/vendor/activerecord/lib/active_record/associations.rb +2227 -0
  84. data/vendor/activerecord/lib/active_record/associations/association_collection.rb +453 -0
  85. data/vendor/activerecord/lib/active_record/associations/association_proxy.rb +272 -0
  86. data/vendor/activerecord/lib/active_record/associations/belongs_to_association.rb +58 -0
  87. data/vendor/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +49 -0
  88. data/vendor/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +121 -0
  89. data/vendor/activerecord/lib/active_record/associations/has_many_association.rb +121 -0
  90. data/vendor/activerecord/lib/active_record/associations/has_many_through_association.rb +256 -0
  91. data/vendor/activerecord/lib/active_record/associations/has_one_association.rb +115 -0
  92. data/vendor/activerecord/lib/active_record/associations/has_one_through_association.rb +31 -0
  93. data/vendor/activerecord/lib/active_record/attribute_methods.rb +387 -0
  94. data/vendor/activerecord/lib/active_record/base.rb +2967 -0
  95. data/vendor/activerecord/lib/active_record/calculations.rb +299 -0
  96. data/vendor/activerecord/lib/active_record/callbacks.rb +331 -0
  97. data/vendor/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +355 -0
  98. data/vendor/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +136 -0
  99. data/vendor/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +201 -0
  100. data/vendor/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
  101. data/vendor/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
  102. data/vendor/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +705 -0
  103. data/vendor/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
  104. data/vendor/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +210 -0
  105. data/vendor/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +585 -0
  106. data/vendor/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1065 -0
  107. data/vendor/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
  108. data/vendor/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +418 -0
  109. data/vendor/activerecord/lib/active_record/dirty.rb +183 -0
  110. data/vendor/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
  111. data/vendor/activerecord/lib/active_record/fixtures.rb +998 -0
  112. data/vendor/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
  113. data/vendor/activerecord/lib/active_record/locale/en.yml +54 -0
  114. data/vendor/activerecord/lib/active_record/locking/optimistic.rb +148 -0
  115. data/vendor/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
  116. data/vendor/activerecord/lib/active_record/migration.rb +560 -0
  117. data/vendor/activerecord/lib/active_record/named_scope.rb +181 -0
  118. data/vendor/activerecord/lib/active_record/observer.rb +197 -0
  119. data/vendor/activerecord/lib/active_record/query_cache.rb +21 -0
  120. data/vendor/activerecord/lib/active_record/reflection.rb +307 -0
  121. data/vendor/activerecord/lib/active_record/schema.rb +51 -0
  122. data/vendor/activerecord/lib/active_record/schema_dumper.rb +177 -0
  123. data/vendor/activerecord/lib/active_record/serialization.rb +98 -0
  124. data/vendor/activerecord/lib/active_record/serializers/json_serializer.rb +80 -0
  125. data/vendor/activerecord/lib/active_record/serializers/xml_serializer.rb +338 -0
  126. data/vendor/activerecord/lib/active_record/test_case.rb +60 -0
  127. data/vendor/activerecord/lib/active_record/timestamp.rb +41 -0
  128. data/vendor/activerecord/lib/active_record/transactions.rb +185 -0
  129. data/vendor/activerecord/lib/active_record/validations.rb +1061 -0
  130. data/vendor/activerecord/lib/active_record/version.rb +9 -0
  131. data/vendor/activerecord/lib/activerecord.rb +1 -0
  132. data/vendor/activerecord/test/assets/example.log +1 -0
  133. data/vendor/activerecord/test/assets/flowers.jpg +0 -0
  134. data/vendor/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
  135. data/vendor/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
  136. data/vendor/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
  137. data/vendor/activerecord/test/cases/adapter_test.rb +133 -0
  138. data/vendor/activerecord/test/cases/aggregations_test.rb +167 -0
  139. data/vendor/activerecord/test/cases/ar_schema_test.rb +33 -0
  140. data/vendor/activerecord/test/cases/associations/belongs_to_associations_test.rb +441 -0
  141. data/vendor/activerecord/test/cases/associations/callbacks_test.rb +161 -0
  142. data/vendor/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +123 -0
  143. data/vendor/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
  144. data/vendor/activerecord/test/cases/associations/eager_load_nested_include_test.rb +101 -0
  145. data/vendor/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
  146. data/vendor/activerecord/test/cases/associations/eager_test.rb +692 -0
  147. data/vendor/activerecord/test/cases/associations/extension_test.rb +62 -0
  148. data/vendor/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +773 -0
  149. data/vendor/activerecord/test/cases/associations/has_many_associations_test.rb +1101 -0
  150. data/vendor/activerecord/test/cases/associations/has_many_through_associations_test.rb +247 -0
  151. data/vendor/activerecord/test/cases/associations/has_one_associations_test.rb +362 -0
  152. data/vendor/activerecord/test/cases/associations/has_one_through_associations_test.rb +161 -0
  153. data/vendor/activerecord/test/cases/associations/inner_join_association_test.rb +88 -0
  154. data/vendor/activerecord/test/cases/associations/join_model_test.rb +714 -0
  155. data/vendor/activerecord/test/cases/associations_test.rb +262 -0
  156. data/vendor/activerecord/test/cases/attribute_methods_test.rb +293 -0
  157. data/vendor/activerecord/test/cases/base_test.rb +2087 -0
  158. data/vendor/activerecord/test/cases/binary_test.rb +30 -0
  159. data/vendor/activerecord/test/cases/calculations_test.rb +328 -0
  160. data/vendor/activerecord/test/cases/callbacks_observers_test.rb +38 -0
  161. data/vendor/activerecord/test/cases/callbacks_test.rb +400 -0
  162. data/vendor/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
  163. data/vendor/activerecord/test/cases/column_alias_test.rb +17 -0
  164. data/vendor/activerecord/test/cases/column_definition_test.rb +36 -0
  165. data/vendor/activerecord/test/cases/connection_test_firebird.rb +8 -0
  166. data/vendor/activerecord/test/cases/connection_test_mysql.rb +30 -0
  167. data/vendor/activerecord/test/cases/copy_table_test_sqlite.rb +69 -0
  168. data/vendor/activerecord/test/cases/database_statements_test.rb +12 -0
  169. data/vendor/activerecord/test/cases/datatype_test_postgresql.rb +203 -0
  170. data/vendor/activerecord/test/cases/date_time_test.rb +37 -0
  171. data/vendor/activerecord/test/cases/default_test_firebird.rb +16 -0
  172. data/vendor/activerecord/test/cases/defaults_test.rb +100 -0
  173. data/vendor/activerecord/test/cases/deprecated_finder_test.rb +30 -0
  174. data/vendor/activerecord/test/cases/dirty_test.rb +270 -0
  175. data/vendor/activerecord/test/cases/finder_respond_to_test.rb +76 -0
  176. data/vendor/activerecord/test/cases/finder_test.rb +1048 -0
  177. data/vendor/activerecord/test/cases/fixtures_test.rb +655 -0
  178. data/vendor/activerecord/test/cases/helper.rb +62 -0
  179. data/vendor/activerecord/test/cases/i18n_test.rb +41 -0
  180. data/vendor/activerecord/test/cases/inheritance_test.rb +262 -0
  181. data/vendor/activerecord/test/cases/invalid_date_test.rb +24 -0
  182. data/vendor/activerecord/test/cases/json_serialization_test.rb +205 -0
  183. data/vendor/activerecord/test/cases/lifecycle_test.rb +193 -0
  184. data/vendor/activerecord/test/cases/locking_test.rb +304 -0
  185. data/vendor/activerecord/test/cases/method_scoping_test.rb +569 -0
  186. data/vendor/activerecord/test/cases/migration_test.rb +1479 -0
  187. data/vendor/activerecord/test/cases/migration_test_firebird.rb +124 -0
  188. data/vendor/activerecord/test/cases/mixin_test.rb +96 -0
  189. data/vendor/activerecord/test/cases/modules_test.rb +39 -0
  190. data/vendor/activerecord/test/cases/multiple_db_test.rb +85 -0
  191. data/vendor/activerecord/test/cases/named_scope_test.rb +280 -0
  192. data/vendor/activerecord/test/cases/pk_test.rb +101 -0
  193. data/vendor/activerecord/test/cases/pooled_connections_test.rb +103 -0
  194. data/vendor/activerecord/test/cases/query_cache_test.rb +127 -0
  195. data/vendor/activerecord/test/cases/readonly_test.rb +107 -0
  196. data/vendor/activerecord/test/cases/reflection_test.rb +184 -0
  197. data/vendor/activerecord/test/cases/reload_models_test.rb +20 -0
  198. data/vendor/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
  199. data/vendor/activerecord/test/cases/sanitize_test.rb +25 -0
  200. data/vendor/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
  201. data/vendor/activerecord/test/cases/schema_dumper_test.rb +184 -0
  202. data/vendor/activerecord/test/cases/schema_test_postgresql.rb +102 -0
  203. data/vendor/activerecord/test/cases/serialization_test.rb +47 -0
  204. data/vendor/activerecord/test/cases/synonym_test_oracle.rb +17 -0
  205. data/vendor/activerecord/test/cases/transactions_test.rb +357 -0
  206. data/vendor/activerecord/test/cases/unconnected_test.rb +32 -0
  207. data/vendor/activerecord/test/cases/validations_i18n_test.rb +921 -0
  208. data/vendor/activerecord/test/cases/validations_test.rb +1552 -0
  209. data/vendor/activerecord/test/cases/xml_serialization_test.rb +202 -0
  210. data/vendor/activerecord/test/config.rb +5 -0
  211. data/vendor/activerecord/test/connections/native_db2/connection.rb +25 -0
  212. data/vendor/activerecord/test/connections/native_firebird/connection.rb +26 -0
  213. data/vendor/activerecord/test/connections/native_frontbase/connection.rb +27 -0
  214. data/vendor/activerecord/test/connections/native_mysql/connection.rb +25 -0
  215. data/vendor/activerecord/test/connections/native_openbase/connection.rb +21 -0
  216. data/vendor/activerecord/test/connections/native_oracle/connection.rb +27 -0
  217. data/vendor/activerecord/test/connections/native_postgresql/connection.rb +21 -0
  218. data/vendor/activerecord/test/connections/native_sqlite/connection.rb +25 -0
  219. data/vendor/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
  220. data/vendor/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  221. data/vendor/activerecord/test/connections/native_sybase/connection.rb +23 -0
  222. data/vendor/activerecord/test/fixtures/accounts.yml +28 -0
  223. data/vendor/activerecord/test/fixtures/all/developers.yml +0 -0
  224. data/vendor/activerecord/test/fixtures/all/people.csv +0 -0
  225. data/vendor/activerecord/test/fixtures/all/tasks.yml +0 -0
  226. data/vendor/activerecord/test/fixtures/author_addresses.yml +5 -0
  227. data/vendor/activerecord/test/fixtures/author_favorites.yml +4 -0
  228. data/vendor/activerecord/test/fixtures/authors.yml +9 -0
  229. data/vendor/activerecord/test/fixtures/binaries.yml +132 -0
  230. data/vendor/activerecord/test/fixtures/books.yml +7 -0
  231. data/vendor/activerecord/test/fixtures/categories.yml +14 -0
  232. data/vendor/activerecord/test/fixtures/categories/special_categories.yml +9 -0
  233. data/vendor/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  234. data/vendor/activerecord/test/fixtures/categories_ordered.yml +7 -0
  235. data/vendor/activerecord/test/fixtures/categories_posts.yml +23 -0
  236. data/vendor/activerecord/test/fixtures/categorizations.yml +17 -0
  237. data/vendor/activerecord/test/fixtures/clubs.yml +6 -0
  238. data/vendor/activerecord/test/fixtures/comments.yml +59 -0
  239. data/vendor/activerecord/test/fixtures/companies.yml +56 -0
  240. data/vendor/activerecord/test/fixtures/computers.yml +4 -0
  241. data/vendor/activerecord/test/fixtures/courses.yml +7 -0
  242. data/vendor/activerecord/test/fixtures/customers.yml +26 -0
  243. data/vendor/activerecord/test/fixtures/developers.yml +21 -0
  244. data/vendor/activerecord/test/fixtures/developers_projects.yml +17 -0
  245. data/vendor/activerecord/test/fixtures/edges.yml +6 -0
  246. data/vendor/activerecord/test/fixtures/entrants.yml +14 -0
  247. data/vendor/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
  248. data/vendor/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
  249. data/vendor/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
  250. data/vendor/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
  251. data/vendor/activerecord/test/fixtures/funny_jokes.yml +10 -0
  252. data/vendor/activerecord/test/fixtures/items.yml +4 -0
  253. data/vendor/activerecord/test/fixtures/jobs.yml +7 -0
  254. data/vendor/activerecord/test/fixtures/legacy_things.yml +3 -0
  255. data/vendor/activerecord/test/fixtures/mateys.yml +4 -0
  256. data/vendor/activerecord/test/fixtures/members.yml +4 -0
  257. data/vendor/activerecord/test/fixtures/memberships.yml +20 -0
  258. data/vendor/activerecord/test/fixtures/minimalistics.yml +2 -0
  259. data/vendor/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
  260. data/vendor/activerecord/test/fixtures/mixins.yml +29 -0
  261. data/vendor/activerecord/test/fixtures/movies.yml +7 -0
  262. data/vendor/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
  263. data/vendor/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
  264. data/vendor/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
  265. data/vendor/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
  266. data/vendor/activerecord/test/fixtures/organizations.yml +5 -0
  267. data/vendor/activerecord/test/fixtures/owners.yml +7 -0
  268. data/vendor/activerecord/test/fixtures/parrots.yml +27 -0
  269. data/vendor/activerecord/test/fixtures/parrots_pirates.yml +7 -0
  270. data/vendor/activerecord/test/fixtures/people.yml +6 -0
  271. data/vendor/activerecord/test/fixtures/pets.yml +14 -0
  272. data/vendor/activerecord/test/fixtures/pirates.yml +9 -0
  273. data/vendor/activerecord/test/fixtures/posts.yml +49 -0
  274. data/vendor/activerecord/test/fixtures/price_estimates.yml +7 -0
  275. data/vendor/activerecord/test/fixtures/projects.yml +7 -0
  276. data/vendor/activerecord/test/fixtures/readers.yml +9 -0
  277. data/vendor/activerecord/test/fixtures/references.yml +17 -0
  278. data/vendor/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
  279. data/vendor/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
  280. data/vendor/activerecord/test/fixtures/reserved_words/group.yml +14 -0
  281. data/vendor/activerecord/test/fixtures/reserved_words/select.yml +8 -0
  282. data/vendor/activerecord/test/fixtures/reserved_words/values.yml +7 -0
  283. data/vendor/activerecord/test/fixtures/ships.yml +5 -0
  284. data/vendor/activerecord/test/fixtures/sponsors.yml +9 -0
  285. data/vendor/activerecord/test/fixtures/subscribers.yml +7 -0
  286. data/vendor/activerecord/test/fixtures/subscriptions.yml +12 -0
  287. data/vendor/activerecord/test/fixtures/taggings.yml +28 -0
  288. data/vendor/activerecord/test/fixtures/tags.yml +7 -0
  289. data/vendor/activerecord/test/fixtures/tasks.yml +7 -0
  290. data/vendor/activerecord/test/fixtures/topics.yml +42 -0
  291. data/vendor/activerecord/test/fixtures/treasures.yml +10 -0
  292. data/vendor/activerecord/test/fixtures/vertices.yml +4 -0
  293. data/vendor/activerecord/test/fixtures/warehouse-things.yml +3 -0
  294. data/vendor/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
  295. data/vendor/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
  296. data/vendor/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
  297. data/vendor/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
  298. data/vendor/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
  299. data/vendor/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
  300. data/vendor/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
  301. data/vendor/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
  302. data/vendor/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
  303. data/vendor/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
  304. data/vendor/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
  305. data/vendor/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
  306. data/vendor/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
  307. data/vendor/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
  308. data/vendor/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
  309. data/vendor/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
  310. data/vendor/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
  311. data/vendor/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
  312. data/vendor/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
  313. data/vendor/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
  314. data/vendor/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
  315. data/vendor/activerecord/test/models/author.rb +140 -0
  316. data/vendor/activerecord/test/models/auto_id.rb +4 -0
  317. data/vendor/activerecord/test/models/binary.rb +2 -0
  318. data/vendor/activerecord/test/models/book.rb +4 -0
  319. data/vendor/activerecord/test/models/categorization.rb +5 -0
  320. data/vendor/activerecord/test/models/category.rb +33 -0
  321. data/vendor/activerecord/test/models/citation.rb +6 -0
  322. data/vendor/activerecord/test/models/club.rb +13 -0
  323. data/vendor/activerecord/test/models/column_name.rb +3 -0
  324. data/vendor/activerecord/test/models/comment.rb +25 -0
  325. data/vendor/activerecord/test/models/company.rb +156 -0
  326. data/vendor/activerecord/test/models/company_in_module.rb +61 -0
  327. data/vendor/activerecord/test/models/computer.rb +3 -0
  328. data/vendor/activerecord/test/models/contact.rb +16 -0
  329. data/vendor/activerecord/test/models/course.rb +3 -0
  330. data/vendor/activerecord/test/models/customer.rb +73 -0
  331. data/vendor/activerecord/test/models/default.rb +2 -0
  332. data/vendor/activerecord/test/models/developer.rb +79 -0
  333. data/vendor/activerecord/test/models/edge.rb +5 -0
  334. data/vendor/activerecord/test/models/entrant.rb +3 -0
  335. data/vendor/activerecord/test/models/guid.rb +2 -0
  336. data/vendor/activerecord/test/models/item.rb +7 -0
  337. data/vendor/activerecord/test/models/job.rb +5 -0
  338. data/vendor/activerecord/test/models/joke.rb +3 -0
  339. data/vendor/activerecord/test/models/keyboard.rb +3 -0
  340. data/vendor/activerecord/test/models/legacy_thing.rb +3 -0
  341. data/vendor/activerecord/test/models/matey.rb +4 -0
  342. data/vendor/activerecord/test/models/member.rb +11 -0
  343. data/vendor/activerecord/test/models/member_detail.rb +4 -0
  344. data/vendor/activerecord/test/models/membership.rb +9 -0
  345. data/vendor/activerecord/test/models/minimalistic.rb +2 -0
  346. data/vendor/activerecord/test/models/mixed_case_monkey.rb +3 -0
  347. data/vendor/activerecord/test/models/movie.rb +5 -0
  348. data/vendor/activerecord/test/models/order.rb +4 -0
  349. data/vendor/activerecord/test/models/organization.rb +4 -0
  350. data/vendor/activerecord/test/models/owner.rb +4 -0
  351. data/vendor/activerecord/test/models/parrot.rb +14 -0
  352. data/vendor/activerecord/test/models/person.rb +10 -0
  353. data/vendor/activerecord/test/models/pet.rb +4 -0
  354. data/vendor/activerecord/test/models/pirate.rb +9 -0
  355. data/vendor/activerecord/test/models/post.rb +88 -0
  356. data/vendor/activerecord/test/models/price_estimate.rb +3 -0
  357. data/vendor/activerecord/test/models/project.rb +29 -0
  358. data/vendor/activerecord/test/models/reader.rb +4 -0
  359. data/vendor/activerecord/test/models/reference.rb +4 -0
  360. data/vendor/activerecord/test/models/reply.rb +39 -0
  361. data/vendor/activerecord/test/models/ship.rb +3 -0
  362. data/vendor/activerecord/test/models/sponsor.rb +4 -0
  363. data/vendor/activerecord/test/models/subject.rb +4 -0
  364. data/vendor/activerecord/test/models/subscriber.rb +8 -0
  365. data/vendor/activerecord/test/models/subscription.rb +4 -0
  366. data/vendor/activerecord/test/models/tag.rb +7 -0
  367. data/vendor/activerecord/test/models/tagging.rb +10 -0
  368. data/vendor/activerecord/test/models/task.rb +3 -0
  369. data/vendor/activerecord/test/models/topic.rb +69 -0
  370. data/vendor/activerecord/test/models/treasure.rb +6 -0
  371. data/vendor/activerecord/test/models/vertex.rb +9 -0
  372. data/vendor/activerecord/test/models/warehouse_thing.rb +5 -0
  373. data/vendor/activerecord/test/schema/mysql_specific_schema.rb +12 -0
  374. data/vendor/activerecord/test/schema/postgresql_specific_schema.rb +103 -0
  375. data/vendor/activerecord/test/schema/schema.rb +440 -0
  376. data/vendor/activerecord/test/schema/schema2.rb +6 -0
  377. data/vendor/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
  378. data/vendor/activesupport/CHANGELOG +1257 -0
  379. data/vendor/activesupport/README +43 -0
  380. data/vendor/activesupport/lib/active_support.rb +61 -0
  381. data/vendor/activesupport/lib/active_support/base64.rb +33 -0
  382. data/vendor/activesupport/lib/active_support/basic_object.rb +24 -0
  383. data/vendor/activesupport/lib/active_support/buffered_logger.rb +122 -0
  384. data/vendor/activesupport/lib/active_support/cache.rb +223 -0
  385. data/vendor/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
  386. data/vendor/activesupport/lib/active_support/cache/drb_store.rb +15 -0
  387. data/vendor/activesupport/lib/active_support/cache/file_store.rb +72 -0
  388. data/vendor/activesupport/lib/active_support/cache/mem_cache_store.rb +127 -0
  389. data/vendor/activesupport/lib/active_support/cache/memory_store.rb +52 -0
  390. data/vendor/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
  391. data/vendor/activesupport/lib/active_support/callbacks.rb +280 -0
  392. data/vendor/activesupport/lib/active_support/core_ext.rb +4 -0
  393. data/vendor/activesupport/lib/active_support/core_ext/array.rb +13 -0
  394. data/vendor/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
  395. data/vendor/activesupport/lib/active_support/core_ext/array/conversions.rb +183 -0
  396. data/vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
  397. data/vendor/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
  398. data/vendor/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
  399. data/vendor/activesupport/lib/active_support/core_ext/base64.rb +4 -0
  400. data/vendor/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
  401. data/vendor/activesupport/lib/active_support/core_ext/benchmark.rb +12 -0
  402. data/vendor/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
  403. data/vendor/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
  404. data/vendor/activesupport/lib/active_support/core_ext/blank.rb +58 -0
  405. data/vendor/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
  406. data/vendor/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +14 -0
  407. data/vendor/activesupport/lib/active_support/core_ext/class.rb +4 -0
  408. data/vendor/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
  409. data/vendor/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +46 -0
  410. data/vendor/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  411. data/vendor/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
  412. data/vendor/activesupport/lib/active_support/core_ext/date.rb +10 -0
  413. data/vendor/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
  414. data/vendor/activesupport/lib/active_support/core_ext/date/calculations.rb +230 -0
  415. data/vendor/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
  416. data/vendor/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
  417. data/vendor/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
  418. data/vendor/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
  419. data/vendor/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
  420. data/vendor/activesupport/lib/active_support/core_ext/enumerable.rb +107 -0
  421. data/vendor/activesupport/lib/active_support/core_ext/exception.rb +41 -0
  422. data/vendor/activesupport/lib/active_support/core_ext/file.rb +5 -0
  423. data/vendor/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
  424. data/vendor/activesupport/lib/active_support/core_ext/float.rb +7 -0
  425. data/vendor/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
  426. data/vendor/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
  427. data/vendor/activesupport/lib/active_support/core_ext/hash.rb +14 -0
  428. data/vendor/activesupport/lib/active_support/core_ext/hash/conversions.rb +259 -0
  429. data/vendor/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
  430. data/vendor/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
  431. data/vendor/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
  432. data/vendor/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +137 -0
  433. data/vendor/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
  434. data/vendor/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
  435. data/vendor/activesupport/lib/active_support/core_ext/hash/slice.rb +33 -0
  436. data/vendor/activesupport/lib/active_support/core_ext/integer.rb +9 -0
  437. data/vendor/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
  438. data/vendor/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
  439. data/vendor/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
  440. data/vendor/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
  441. data/vendor/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  442. data/vendor/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
  443. data/vendor/activesupport/lib/active_support/core_ext/kernel/debugger.rb +13 -0
  444. data/vendor/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
  445. data/vendor/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
  446. data/vendor/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
  447. data/vendor/activesupport/lib/active_support/core_ext/logger.rb +143 -0
  448. data/vendor/activesupport/lib/active_support/core_ext/module.rb +23 -0
  449. data/vendor/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
  450. data/vendor/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  451. data/vendor/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  452. data/vendor/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +58 -0
  453. data/vendor/activesupport/lib/active_support/core_ext/module/delegation.rb +95 -0
  454. data/vendor/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
  455. data/vendor/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
  456. data/vendor/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
  457. data/vendor/activesupport/lib/active_support/core_ext/module/model_naming.rb +23 -0
  458. data/vendor/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
  459. data/vendor/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
  460. data/vendor/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
  461. data/vendor/activesupport/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  462. data/vendor/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
  463. data/vendor/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
  464. data/vendor/activesupport/lib/active_support/core_ext/object.rb +5 -0
  465. data/vendor/activesupport/lib/active_support/core_ext/object/conversions.rb +14 -0
  466. data/vendor/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
  467. data/vendor/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
  468. data/vendor/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
  469. data/vendor/activesupport/lib/active_support/core_ext/object/misc.rb +74 -0
  470. data/vendor/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
  471. data/vendor/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  472. data/vendor/activesupport/lib/active_support/core_ext/proc.rb +12 -0
  473. data/vendor/activesupport/lib/active_support/core_ext/process.rb +1 -0
  474. data/vendor/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
  475. data/vendor/activesupport/lib/active_support/core_ext/range.rb +11 -0
  476. data/vendor/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
  477. data/vendor/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
  478. data/vendor/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
  479. data/vendor/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
  480. data/vendor/activesupport/lib/active_support/core_ext/rexml.rb +36 -0
  481. data/vendor/activesupport/lib/active_support/core_ext/string.rb +22 -0
  482. data/vendor/activesupport/lib/active_support/core_ext/string/access.rb +82 -0
  483. data/vendor/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
  484. data/vendor/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
  485. data/vendor/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
  486. data/vendor/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
  487. data/vendor/activesupport/lib/active_support/core_ext/string/iterators.rb +21 -0
  488. data/vendor/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
  489. data/vendor/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
  490. data/vendor/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
  491. data/vendor/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
  492. data/vendor/activesupport/lib/active_support/core_ext/time.rb +42 -0
  493. data/vendor/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
  494. data/vendor/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
  495. data/vendor/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
  496. data/vendor/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
  497. data/vendor/activesupport/lib/active_support/dependencies.rb +621 -0
  498. data/vendor/activesupport/lib/active_support/deprecation.rb +243 -0
  499. data/vendor/activesupport/lib/active_support/duration.rb +96 -0
  500. data/vendor/activesupport/lib/active_support/gzip.rb +25 -0
  501. data/vendor/activesupport/lib/active_support/inflections.rb +55 -0
  502. data/vendor/activesupport/lib/active_support/inflector.rb +397 -0
  503. data/vendor/activesupport/lib/active_support/json.rb +23 -0
  504. data/vendor/activesupport/lib/active_support/json/decoding.rb +63 -0
  505. data/vendor/activesupport/lib/active_support/json/encoders/date.rb +21 -0
  506. data/vendor/activesupport/lib/active_support/json/encoders/date_time.rb +21 -0
  507. data/vendor/activesupport/lib/active_support/json/encoders/enumerable.rb +12 -0
  508. data/vendor/activesupport/lib/active_support/json/encoders/false_class.rb +5 -0
  509. data/vendor/activesupport/lib/active_support/json/encoders/hash.rb +47 -0
  510. data/vendor/activesupport/lib/active_support/json/encoders/nil_class.rb +5 -0
  511. data/vendor/activesupport/lib/active_support/json/encoders/numeric.rb +5 -0
  512. data/vendor/activesupport/lib/active_support/json/encoders/object.rb +6 -0
  513. data/vendor/activesupport/lib/active_support/json/encoders/regexp.rb +5 -0
  514. data/vendor/activesupport/lib/active_support/json/encoders/string.rb +36 -0
  515. data/vendor/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
  516. data/vendor/activesupport/lib/active_support/json/encoders/time.rb +21 -0
  517. data/vendor/activesupport/lib/active_support/json/encoders/true_class.rb +5 -0
  518. data/vendor/activesupport/lib/active_support/json/encoding.rb +37 -0
  519. data/vendor/activesupport/lib/active_support/json/variable.rb +10 -0
  520. data/vendor/activesupport/lib/active_support/locale/en.yml +32 -0
  521. data/vendor/activesupport/lib/active_support/memoizable.rb +82 -0
  522. data/vendor/activesupport/lib/active_support/multibyte.rb +33 -0
  523. data/vendor/activesupport/lib/active_support/multibyte/chars.rb +679 -0
  524. data/vendor/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
  525. data/vendor/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
  526. data/vendor/activesupport/lib/active_support/option_merger.rb +17 -0
  527. data/vendor/activesupport/lib/active_support/ordered_hash.rb +58 -0
  528. data/vendor/activesupport/lib/active_support/ordered_options.rb +19 -0
  529. data/vendor/activesupport/lib/active_support/rescuable.rb +108 -0
  530. data/vendor/activesupport/lib/active_support/secure_random.rb +197 -0
  531. data/vendor/activesupport/lib/active_support/string_inquirer.rb +21 -0
  532. data/vendor/activesupport/lib/active_support/test_case.rb +24 -0
  533. data/vendor/activesupport/lib/active_support/testing/core_ext/test.rb +6 -0
  534. data/vendor/activesupport/lib/active_support/testing/core_ext/test/unit/assertions.rb +72 -0
  535. data/vendor/activesupport/lib/active_support/testing/default.rb +9 -0
  536. data/vendor/activesupport/lib/active_support/testing/performance.rb +452 -0
  537. data/vendor/activesupport/lib/active_support/testing/setup_and_teardown.rb +120 -0
  538. data/vendor/activesupport/lib/active_support/time_with_zone.rb +328 -0
  539. data/vendor/activesupport/lib/active_support/values/time_zone.rb +403 -0
  540. data/vendor/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  541. data/vendor/activesupport/lib/active_support/vendor.rb +34 -0
  542. data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  543. data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  544. data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  545. data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  546. data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  547. data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  548. data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  549. data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  550. data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n.rb +194 -0
  551. data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb +216 -0
  552. data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/exceptions.rb +53 -0
  553. data/vendor/activesupport/lib/active_support/vendor/memcache-client-1.5.1/memcache.rb +849 -0
  554. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
  555. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
  556. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
  557. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
  558. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
  559. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
  560. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
  561. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
  562. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
  563. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
  564. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
  565. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
  566. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
  567. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
  568. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
  569. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
  570. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
  571. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
  572. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
  573. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
  574. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
  575. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
  576. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
  577. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
  578. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
  579. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
  580. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
  581. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
  582. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
  583. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
  584. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
  585. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
  586. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
  587. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
  588. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
  589. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
  590. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
  591. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
  592. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
  593. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
  594. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
  595. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
  596. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
  597. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
  598. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
  599. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
  600. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
  601. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
  602. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
  603. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
  604. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
  605. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
  606. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
  607. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
  608. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
  609. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
  610. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
  611. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
  612. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
  613. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
  614. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
  615. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
  616. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
  617. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
  618. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
  619. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
  620. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
  621. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
  622. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
  623. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
  624. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
  625. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
  626. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
  627. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
  628. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
  629. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
  630. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
  631. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
  632. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
  633. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
  634. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
  635. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
  636. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
  637. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
  638. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
  639. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
  640. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
  641. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
  642. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
  643. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
  644. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
  645. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
  646. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
  647. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
  648. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
  649. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
  650. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
  651. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
  652. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
  653. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
  654. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
  655. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
  656. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
  657. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
  658. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
  659. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
  660. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
  661. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
  662. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
  663. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
  664. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
  665. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
  666. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
  667. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
  668. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
  669. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
  670. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
  671. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
  672. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
  673. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
  674. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
  675. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
  676. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
  677. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
  678. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
  679. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
  680. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
  681. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
  682. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
  683. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
  684. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
  685. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
  686. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
  687. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
  688. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
  689. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
  690. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
  691. data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
  692. data/vendor/activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +1021 -0
  693. data/vendor/activesupport/lib/active_support/version.rb +9 -0
  694. data/vendor/activesupport/lib/active_support/whiny_nil.rb +58 -0
  695. data/vendor/activesupport/lib/activesupport.rb +1 -0
  696. data/vendor/isaac/LICENSE +26 -0
  697. data/vendor/isaac/README +78 -0
  698. data/vendor/isaac/TODO +3 -0
  699. data/vendor/isaac/VERSIONS +3 -0
  700. data/vendor/isaac/crypt/ISAAC.rb +171 -0
  701. data/vendor/isaac/isaac.gemspec +39 -0
  702. data/vendor/isaac/setup.rb +596 -0
  703. data/vendor/isaac/test/TC_ISAAC.rb +76 -0
  704. data/vendor/json/CHANGES +93 -0
  705. data/vendor/json/GPL +340 -0
  706. data/vendor/json/README +78 -0
  707. data/vendor/json/RUBY +58 -0
  708. data/vendor/json/Rakefile +309 -0
  709. data/vendor/json/TODO +1 -0
  710. data/vendor/json/VERSION +1 -0
  711. data/vendor/json/benchmarks/benchmark.txt +133 -0
  712. data/vendor/json/benchmarks/benchmark_generator.rb +48 -0
  713. data/vendor/json/benchmarks/benchmark_parser.rb +26 -0
  714. data/vendor/json/benchmarks/benchmark_rails.rb +26 -0
  715. data/vendor/json/bin/edit_json.rb +10 -0
  716. data/vendor/json/bin/prettify_json.rb +76 -0
  717. data/vendor/json/data/example.json +1 -0
  718. data/vendor/json/data/index.html +38 -0
  719. data/vendor/json/data/prototype.js +4184 -0
  720. data/vendor/json/ext/json/ext/generator/extconf.rb +9 -0
  721. data/vendor/json/ext/json/ext/generator/generator.c +875 -0
  722. data/vendor/json/ext/json/ext/generator/unicode.c +182 -0
  723. data/vendor/json/ext/json/ext/generator/unicode.h +53 -0
  724. data/vendor/json/ext/json/ext/parser/extconf.rb +9 -0
  725. data/vendor/json/ext/json/ext/parser/parser.c +1758 -0
  726. data/vendor/json/ext/json/ext/parser/parser.rl +638 -0
  727. data/vendor/json/ext/json/ext/parser/unicode.c +154 -0
  728. data/vendor/json/ext/json/ext/parser/unicode.h +58 -0
  729. data/vendor/json/install.rb +26 -0
  730. data/vendor/json/lib/json.rb +235 -0
  731. data/vendor/json/lib/json/Array.xpm +21 -0
  732. data/vendor/json/lib/json/FalseClass.xpm +21 -0
  733. data/vendor/json/lib/json/Hash.xpm +21 -0
  734. data/vendor/json/lib/json/Key.xpm +73 -0
  735. data/vendor/json/lib/json/NilClass.xpm +21 -0
  736. data/vendor/json/lib/json/Numeric.xpm +28 -0
  737. data/vendor/json/lib/json/String.xpm +96 -0
  738. data/vendor/json/lib/json/TrueClass.xpm +21 -0
  739. data/vendor/json/lib/json/add/core.rb +135 -0
  740. data/vendor/json/lib/json/add/rails.rb +58 -0
  741. data/vendor/json/lib/json/common.rb +354 -0
  742. data/vendor/json/lib/json/editor.rb +1362 -0
  743. data/vendor/json/lib/json/ext.rb +13 -0
  744. data/vendor/json/lib/json/json.xpm +1499 -0
  745. data/vendor/json/lib/json/pure.rb +75 -0
  746. data/vendor/json/lib/json/pure/generator.rb +394 -0
  747. data/vendor/json/lib/json/pure/parser.rb +259 -0
  748. data/vendor/json/lib/json/version.rb +9 -0
  749. data/vendor/json/tests/fixtures/fail1.json +1 -0
  750. data/vendor/json/tests/fixtures/fail10.json +1 -0
  751. data/vendor/json/tests/fixtures/fail11.json +1 -0
  752. data/vendor/json/tests/fixtures/fail12.json +1 -0
  753. data/vendor/json/tests/fixtures/fail13.json +1 -0
  754. data/vendor/json/tests/fixtures/fail14.json +1 -0
  755. data/vendor/json/tests/fixtures/fail18.json +1 -0
  756. data/vendor/json/tests/fixtures/fail19.json +1 -0
  757. data/vendor/json/tests/fixtures/fail2.json +1 -0
  758. data/vendor/json/tests/fixtures/fail20.json +1 -0
  759. data/vendor/json/tests/fixtures/fail21.json +1 -0
  760. data/vendor/json/tests/fixtures/fail22.json +1 -0
  761. data/vendor/json/tests/fixtures/fail23.json +1 -0
  762. data/vendor/json/tests/fixtures/fail24.json +1 -0
  763. data/vendor/json/tests/fixtures/fail25.json +1 -0
  764. data/vendor/json/tests/fixtures/fail27.json +2 -0
  765. data/vendor/json/tests/fixtures/fail28.json +2 -0
  766. data/vendor/json/tests/fixtures/fail3.json +1 -0
  767. data/vendor/json/tests/fixtures/fail4.json +1 -0
  768. data/vendor/json/tests/fixtures/fail5.json +1 -0
  769. data/vendor/json/tests/fixtures/fail6.json +1 -0
  770. data/vendor/json/tests/fixtures/fail7.json +1 -0
  771. data/vendor/json/tests/fixtures/fail8.json +1 -0
  772. data/vendor/json/tests/fixtures/fail9.json +1 -0
  773. data/vendor/json/tests/fixtures/pass1.json +56 -0
  774. data/vendor/json/tests/fixtures/pass15.json +1 -0
  775. data/vendor/json/tests/fixtures/pass16.json +1 -0
  776. data/vendor/json/tests/fixtures/pass17.json +1 -0
  777. data/vendor/json/tests/fixtures/pass2.json +1 -0
  778. data/vendor/json/tests/fixtures/pass26.json +1 -0
  779. data/vendor/json/tests/fixtures/pass3.json +6 -0
  780. data/vendor/json/tests/runner.rb +25 -0
  781. data/vendor/json/tests/test_json.rb +293 -0
  782. data/vendor/json/tests/test_json_addition.rb +161 -0
  783. data/vendor/json/tests/test_json_fixtures.rb +30 -0
  784. data/vendor/json/tests/test_json_generate.rb +100 -0
  785. data/vendor/json/tests/test_json_rails.rb +118 -0
  786. data/vendor/json/tests/test_json_unicode.rb +61 -0
  787. data/vendor/json/tools/fuzz.rb +140 -0
  788. data/vendor/json/tools/server.rb +62 -0
  789. metadata +841 -0
@@ -0,0 +1,13 @@
1
+ require 'json/common'
2
+
3
+ module JSON
4
+ # This module holds all the modules/classes that implement JSON's
5
+ # functionality as C extensions.
6
+ module Ext
7
+ require 'json/ext/parser'
8
+ require 'json/ext/generator'
9
+ $DEBUG and warn "Using c extension for JSON."
10
+ JSON.parser = Parser
11
+ JSON.generator = Generator
12
+ end
13
+ end
@@ -0,0 +1,1499 @@
1
+ /* XPM */
2
+ static char * json_xpm[] = {
3
+ "64 64 1432 2",
4
+ " c None",
5
+ ". c #641839",
6
+ "+ c #CF163C",
7
+ "@ c #D31C3B",
8
+ "# c #E11A38",
9
+ "$ c #5F242D",
10
+ "% c #320C22",
11
+ "& c #9B532D",
12
+ "* c #F32E34",
13
+ "= c #820F33",
14
+ "- c #4B0F34",
15
+ "; c #8E1237",
16
+ "> c #944029",
17
+ ", c #961325",
18
+ "' c #A00C24",
19
+ ") c #872C23",
20
+ "! c #694021",
21
+ "~ c #590D1F",
22
+ "{ c #420528",
23
+ "] c #D85A2D",
24
+ "^ c #7E092B",
25
+ "/ c #0E0925",
26
+ "( c #0D081F",
27
+ "_ c #0F081E",
28
+ ": c #12071F",
29
+ "< c #360620",
30
+ "[ c #682A21",
31
+ "} c #673F21",
32
+ "| c #780E21",
33
+ "1 c #A82320",
34
+ "2 c #8D1D1F",
35
+ "3 c #970127",
36
+ "4 c #0D0123",
37
+ "5 c #0D0324",
38
+ "6 c #3B1E28",
39
+ "7 c #C28429",
40
+ "8 c #0C0523",
41
+ "9 c #0C041E",
42
+ "0 c #0E031A",
43
+ "a c #11031A",
44
+ "b c #13031B",
45
+ "c c #13031C",
46
+ "d c #11031D",
47
+ "e c #19051E",
48
+ "f c #390E20",
49
+ "g c #9C0C20",
50
+ "h c #C00721",
51
+ "i c #980320",
52
+ "j c #14031E",
53
+ "k c #CD9F32",
54
+ "l c #C29F2E",
55
+ "m c #0F0325",
56
+ "n c #0D0321",
57
+ "o c #0E0324",
58
+ "p c #D08329",
59
+ "q c #9D1B27",
60
+ "r c #1C0320",
61
+ "s c #0D011A",
62
+ "t c #120117",
63
+ "u c #130017",
64
+ "v c #150018",
65
+ "w c #160119",
66
+ "x c #17021A",
67
+ "y c #15021B",
68
+ "z c #11021E",
69
+ "A c #0F021F",
70
+ "B c #8C1821",
71
+ "C c #CF4522",
72
+ "D c #831821",
73
+ "E c #BA7033",
74
+ "F c #EDB339",
75
+ "G c #C89733",
76
+ "H c #280727",
77
+ "I c #0F051F",
78
+ "J c #0E0420",
79
+ "K c #591F27",
80
+ "L c #E47129",
81
+ "M c #612224",
82
+ "N c #0C021D",
83
+ "O c #120018",
84
+ "P c #140017",
85
+ "Q c #170017",
86
+ "R c #190018",
87
+ "S c #1B0019",
88
+ "T c #1B011A",
89
+ "U c #18011B",
90
+ "V c #15011C",
91
+ "W c #12031E",
92
+ "X c #460A21",
93
+ "Y c #A13823",
94
+ "Z c #784323",
95
+ "` c #5A0C21",
96
+ " . c #BC4530",
97
+ ".. c #EB5B38",
98
+ "+. c #CE4E3B",
99
+ "@. c #DD9334",
100
+ "#. c #751A27",
101
+ "$. c #11071E",
102
+ "%. c #0F041C",
103
+ "&. c #1E0824",
104
+ "*. c #955A28",
105
+ "=. c #9A5027",
106
+ "-. c #1E0321",
107
+ ";. c #11011A",
108
+ ">. c #140018",
109
+ ",. c #180018",
110
+ "'. c #1F001A",
111
+ "). c #20001B",
112
+ "!. c #1E001A",
113
+ "~. c #1B001A",
114
+ "{. c #16021B",
115
+ "]. c #16041E",
116
+ "^. c #220622",
117
+ "/. c #5F3525",
118
+ "(. c #DE5724",
119
+ "_. c #611021",
120
+ ":. c #0F0925",
121
+ "<. c #D1892E",
122
+ "[. c #F27036",
123
+ "}. c #EC633B",
124
+ "|. c #DA293C",
125
+ "1. c #E64833",
126
+ "2. c #912226",
127
+ "3. c #11081C",
128
+ "4. c #110419",
129
+ "5. c #0F041E",
130
+ "6. c #451425",
131
+ "7. c #BF6F28",
132
+ "8. c #332225",
133
+ "9. c #0E021E",
134
+ "0. c #13001B",
135
+ "a. c #17001A",
136
+ "b. c #1C001B",
137
+ "c. c #21001C",
138
+ "d. c #23001C",
139
+ "e. c #21001B",
140
+ "f. c #19021A",
141
+ "g. c #17041E",
142
+ "h. c #150721",
143
+ "i. c #602424",
144
+ "j. c #D51223",
145
+ "k. c #540820",
146
+ "l. c #D04D2D",
147
+ "m. c #EA8933",
148
+ "n. c #875637",
149
+ "o. c #88543A",
150
+ "p. c #E5923A",
151
+ "q. c #891931",
152
+ "r. c #130B25",
153
+ "s. c #10051B",
154
+ "t. c #110217",
155
+ "u. c #12021A",
156
+ "v. c #761826",
157
+ "w. c #E2A728",
158
+ "x. c #300224",
159
+ "y. c #10011E",
160
+ "z. c #16001B",
161
+ "A. c #1B001B",
162
+ "B. c #21001A",
163
+ "C. c #1E0019",
164
+ "D. c #1D0019",
165
+ "E. c #1A011A",
166
+ "F. c #17031C",
167
+ "G. c #120720",
168
+ "H. c #4E0822",
169
+ "I. c #670721",
170
+ "J. c #C07630",
171
+ "K. c #F59734",
172
+ "L. c #BE1B35",
173
+ "M. c #0E1435",
174
+ "N. c #522037",
175
+ "O. c #DB8039",
176
+ "P. c #D45933",
177
+ "Q. c #420927",
178
+ "R. c #0F041D",
179
+ "S. c #140118",
180
+ "T. c #13021D",
181
+ "U. c #100423",
182
+ "V. c #7B6227",
183
+ "W. c #C04326",
184
+ "X. c #0E0020",
185
+ "Y. c #13001D",
186
+ "Z. c #18001B",
187
+ "`. c #1E001B",
188
+ " + c #22001C",
189
+ ".+ c #22001B",
190
+ "++ c #1B011B",
191
+ "@+ c #16041D",
192
+ "#+ c #130520",
193
+ "$+ c #860521",
194
+ "%+ c #710520",
195
+ "&+ c #670A2A",
196
+ "*+ c #A66431",
197
+ "=+ c #E97536",
198
+ "-+ c #F8833A",
199
+ ";+ c #F77A3A",
200
+ ">+ c #C45337",
201
+ ",+ c #0A1C35",
202
+ "'+ c #993638",
203
+ ")+ c #F7863B",
204
+ "!+ c #F49736",
205
+ "~+ c #94462B",
206
+ "{+ c #0E031F",
207
+ "]+ c #130119",
208
+ "^+ c #160018",
209
+ "/+ c #16011B",
210
+ "(+ c #15021F",
211
+ "_+ c #120123",
212
+ ":+ c #A65C28",
213
+ "<+ c #5C4D23",
214
+ "[+ c #0F001F",
215
+ "}+ c #14001D",
216
+ "|+ c #1A001B",
217
+ "1+ c #1F001B",
218
+ "2+ c #24001D",
219
+ "3+ c #25001D",
220
+ "4+ c #24001C",
221
+ "5+ c #1F001C",
222
+ "6+ c #1A011C",
223
+ "7+ c #16021E",
224
+ "8+ c #3F0421",
225
+ "9+ c #BC0522",
226
+ "0+ c #1C041E",
227
+ "a+ c #7F5531",
228
+ "b+ c #E68A38",
229
+ "c+ c #F8933E",
230
+ "d+ c #FA7942",
231
+ "e+ c #FB7543",
232
+ "f+ c #FA6F41",
233
+ "g+ c #F1793D",
234
+ "h+ c #7D3B3A",
235
+ "i+ c #28263B",
236
+ "j+ c #D45441",
237
+ "k+ c #F8A238",
238
+ "l+ c #996B2D",
239
+ "m+ c #0E0421",
240
+ "n+ c #12011A",
241
+ "o+ c #180019",
242
+ "p+ c #17001C",
243
+ "q+ c #12001F",
244
+ "r+ c #4C2B2A",
245
+ "s+ c #DB8130",
246
+ "t+ c #540023",
247
+ "u+ c #0F0120",
248
+ "v+ c #16011C",
249
+ "w+ c #22001D",
250
+ "x+ c #25001F",
251
+ "y+ c #26001F",
252
+ "z+ c #25001E",
253
+ "A+ c #24001E",
254
+ "B+ c #1D001C",
255
+ "C+ c #18011D",
256
+ "D+ c #16031F",
257
+ "E+ c #3C0522",
258
+ "F+ c #9B0821",
259
+ "G+ c #13041E",
260
+ "H+ c #F6462E",
261
+ "I+ c #E6AB37",
262
+ "J+ c #E7A03E",
263
+ "K+ c #FA9F44",
264
+ "L+ c #FB8A48",
265
+ "M+ c #FD7A4A",
266
+ "N+ c #FD794A",
267
+ "O+ c #FD7748",
268
+ "P+ c #FD7E45",
269
+ "Q+ c #FD8343",
270
+ "R+ c #FB5D42",
271
+ "S+ c #6E3A40",
272
+ "T+ c #EE8A37",
273
+ "U+ c #7E252B",
274
+ "V+ c #100520",
275
+ "W+ c #13011A",
276
+ "X+ c #170019",
277
+ "Y+ c #15001C",
278
+ "Z+ c #0F0020",
279
+ "`+ c #564427",
280
+ " @ c #E0BA29",
281
+ ".@ c #5E2B25",
282
+ "+@ c #10011F",
283
+ "@@ c #17011C",
284
+ "#@ c #1E001D",
285
+ "$@ c #23001F",
286
+ "%@ c #250020",
287
+ "&@ c #24001F",
288
+ "*@ c #23001E",
289
+ "=@ c #21001E",
290
+ "-@ c #1B001C",
291
+ ";@ c #17021D",
292
+ ">@ c #14041E",
293
+ ",@ c #AC0B25",
294
+ "'@ c #5E1420",
295
+ ")@ c #F28635",
296
+ "!@ c #C2733E",
297
+ "~@ c #984C44",
298
+ "{@ c #EA9148",
299
+ "]@ c #FB844B",
300
+ "^@ c #FD7E4C",
301
+ "/@ c #FE7E4C",
302
+ "(@ c #FE7E4B",
303
+ "_@ c #FE7749",
304
+ ":@ c #FD7148",
305
+ "<@ c #FB7D46",
306
+ "[@ c #F89641",
307
+ "}@ c #B95634",
308
+ "|@ c #0D0927",
309
+ "1@ c #11041D",
310
+ "2@ c #150119",
311
+ "3@ c #180017",
312
+ "4@ c #16001A",
313
+ "5@ c #13001E",
314
+ "6@ c #110023",
315
+ "7@ c #944C29",
316
+ "8@ c #EE6229",
317
+ "9@ c #3D0324",
318
+ "0@ c #12021F",
319
+ "a@ c #19011D",
320
+ "b@ c #21001F",
321
+ "c@ c #22001F",
322
+ "d@ c #20001E",
323
+ "e@ c #1F001D",
324
+ "f@ c #1C001C",
325
+ "g@ c #19011C",
326
+ "h@ c #3D1621",
327
+ "i@ c #B53622",
328
+ "j@ c #31061F",
329
+ "k@ c #841D34",
330
+ "l@ c #F2703F",
331
+ "m@ c #C14445",
332
+ "n@ c #E67349",
333
+ "o@ c #FB8E4B",
334
+ "p@ c #FD834C",
335
+ "q@ c #FE834D",
336
+ "r@ c #FE834C",
337
+ "s@ c #FE804C",
338
+ "t@ c #FD814B",
339
+ "u@ c #FB7D49",
340
+ "v@ c #F79B43",
341
+ "w@ c #AF1234",
342
+ "x@ c #0D0625",
343
+ "y@ c #13021C",
344
+ "z@ c #1A0019",
345
+ "A@ c #190019",
346
+ "B@ c #410225",
347
+ "C@ c #D39729",
348
+ "D@ c #AA5927",
349
+ "E@ c #0E0422",
350
+ "F@ c #15021E",
351
+ "G@ c #1A011D",
352
+ "H@ c #1D001D",
353
+ "I@ c #15031D",
354
+ "J@ c #240820",
355
+ "K@ c #A01023",
356
+ "L@ c #670B21",
357
+ "M@ c #3D0D33",
358
+ "N@ c #E63C3E",
359
+ "O@ c #EF7C45",
360
+ "P@ c #F59048",
361
+ "Q@ c #FB944A",
362
+ "R@ c #FD904A",
363
+ "S@ c #FE8E4B",
364
+ "T@ c #FE854A",
365
+ "U@ c #FE854B",
366
+ "V@ c #FE884C",
367
+ "W@ c #FC954B",
368
+ "X@ c #F8AB45",
369
+ "Y@ c #C37A35",
370
+ "Z@ c #0D0425",
371
+ "`@ c #13011B",
372
+ " # c #170018",
373
+ ".# c #1A0018",
374
+ "+# c #1C0019",
375
+ "@# c #15001B",
376
+ "## c #100120",
377
+ "$# c #311F25",
378
+ "%# c #E68E28",
379
+ "&# c #7A1425",
380
+ "*# c #130321",
381
+ "=# c #17011E",
382
+ "-# c #1A001D",
383
+ ";# c #19001B",
384
+ "># c #16021C",
385
+ ",# c #130521",
386
+ "'# c #6F3123",
387
+ ")# c #6D3022",
388
+ "!# c #C89433",
389
+ "~# c #EA7E3E",
390
+ "{# c #DB2943",
391
+ "]# c #EF7745",
392
+ "^# c #FB8544",
393
+ "/# c #FD9A43",
394
+ "(# c #FE9941",
395
+ "_# c #FE9D43",
396
+ ":# c #FEA548",
397
+ "<# c #FEAE49",
398
+ "[# c #FCB944",
399
+ "}# c #CA9F35",
400
+ "|# c #0E0225",
401
+ "1# c #11001B",
402
+ "2# c #160019",
403
+ "3# c #12011B",
404
+ "4# c #0F0220",
405
+ "5# c #351D26",
406
+ "6# c #D85B28",
407
+ "7# c #6C0F26",
408
+ "8# c #190121",
409
+ "9# c #1B001E",
410
+ "0# c #1A001C",
411
+ "a# c #1D001B",
412
+ "b# c #130220",
413
+ "c# c #703A23",
414
+ "d# c #713A23",
415
+ "e# c #140327",
416
+ "f# c #411B36",
417
+ "g# c #C8713E",
418
+ "h# c #7A3A3F",
419
+ "i# c #CE2C3C",
420
+ "j# c #E77338",
421
+ "k# c #9C6535",
422
+ "l# c #9C6233",
423
+ "m# c #9C6332",
424
+ "n# c #9C6A35",
425
+ "o# c #C37D3C",
426
+ "p# c #FEAC41",
427
+ "q# c #FEC23E",
428
+ "r# c #826330",
429
+ "s# c #100122",
430
+ "t# c #120019",
431
+ "u# c #150017",
432
+ "v# c #190017",
433
+ "w# c #1B0018",
434
+ "x# c #12001A",
435
+ "y# c #10021F",
436
+ "z# c #1A0326",
437
+ "A# c #5F292A",
438
+ "B# c #7B4E29",
439
+ "C# c #3C0E25",
440
+ "D# c #1A0020",
441
+ "E# c #14021F",
442
+ "F# c #723B23",
443
+ "G# c #14001A",
444
+ "H# c #58042A",
445
+ "I# c #A28337",
446
+ "J# c #C8813B",
447
+ "K# c #B14B38",
448
+ "L# c #761231",
449
+ "M# c #5A132A",
450
+ "N# c #0D0726",
451
+ "O# c #0C0623",
452
+ "P# c #0B0723",
453
+ "Q# c #0B0A26",
454
+ "R# c #321C2D",
455
+ "S# c #C45B33",
456
+ "T# c #FEBB33",
457
+ "U# c #13052A",
458
+ "V# c #13011F",
459
+ "W# c #160017",
460
+ "X# c #15001A",
461
+ "Y# c #12001D",
462
+ "Z# c #94062A",
463
+ "`# c #630D2C",
464
+ " $ c #85292B",
465
+ ".$ c #AA5E29",
466
+ "+$ c #1F0123",
467
+ "@$ c #19011F",
468
+ "#$ c #1E001C",
469
+ "$$ c #15031F",
470
+ "%$ c #712122",
471
+ "&$ c #712223",
472
+ "*$ c #14011B",
473
+ "=$ c #110321",
474
+ "-$ c #AF0C2B",
475
+ ";$ c #E7D534",
476
+ ">$ c #EAC934",
477
+ ",$ c #84582D",
478
+ "'$ c #1B0824",
479
+ ")$ c #11041E",
480
+ "!$ c #10021B",
481
+ "~$ c #100119",
482
+ "{$ c #100218",
483
+ "]$ c #0F041A",
484
+ "^$ c #0E0720",
485
+ "/$ c #2C1026",
486
+ "($ c #D8A328",
487
+ "_$ c #140322",
488
+ ":$ c #160016",
489
+ "<$ c #14001F",
490
+ "[$ c #120024",
491
+ "}$ c #100128",
492
+ "|$ c #3C032F",
493
+ "1$ c #2C062E",
494
+ "2$ c #29022B",
495
+ "3$ c #A31D29",
496
+ "4$ c #976A25",
497
+ "5$ c #1A0321",
498
+ "6$ c #17031E",
499
+ "7$ c #1B021D",
500
+ "8$ c #20001C",
501
+ "9$ c #14041F",
502
+ "0$ c #703422",
503
+ "a$ c #6F3522",
504
+ "b$ c #8D0328",
505
+ "c$ c #920329",
506
+ "d$ c #0F0326",
507
+ "e$ c #100321",
508
+ "f$ c #11021B",
509
+ "g$ c #130117",
510
+ "h$ c #140016",
511
+ "i$ c #150015",
512
+ "j$ c #140015",
513
+ "k$ c #130116",
514
+ "l$ c #120219",
515
+ "m$ c #11031C",
516
+ "n$ c #12031D",
517
+ "o$ c #170016",
518
+ "p$ c #160020",
519
+ "q$ c #250029",
520
+ "r$ c #670033",
521
+ "s$ c #DCA238",
522
+ "t$ c #F5C736",
523
+ "u$ c #9A732E",
524
+ "v$ c #110227",
525
+ "w$ c #110324",
526
+ "x$ c #811924",
527
+ "y$ c #A04323",
528
+ "z$ c #250721",
529
+ "A$ c #1A041F",
530
+ "B$ c #1E011D",
531
+ "C$ c #1C011C",
532
+ "D$ c #18031D",
533
+ "E$ c #130721",
534
+ "F$ c #6F3623",
535
+ "G$ c #6B3622",
536
+ "H$ c #1A001A",
537
+ "I$ c #14011F",
538
+ "J$ c #12011E",
539
+ "K$ c #11011C",
540
+ "L$ c #140117",
541
+ "M$ c #170015",
542
+ "N$ c #150016",
543
+ "O$ c #120119",
544
+ "P$ c #11011B",
545
+ "Q$ c #11001A",
546
+ "R$ c #130018",
547
+ "S$ c #170118",
548
+ "T$ c #170119",
549
+ "U$ c #18021E",
550
+ "V$ c #1A0126",
551
+ "W$ c #6F2332",
552
+ "X$ c #E5563B",
553
+ "Y$ c #F1B83F",
554
+ "Z$ c #F6CC38",
555
+ "`$ c #9D7A2D",
556
+ " % c #130123",
557
+ ".% c #130320",
558
+ "+% c #2A0721",
559
+ "@% c #B00E24",
560
+ "#% c #7D0B23",
561
+ "$% c #1F0522",
562
+ "%% c #1E0220",
563
+ "&% c #1D011E",
564
+ "*% c #1A031E",
565
+ "=% c #15051F",
566
+ "-% c #241322",
567
+ ";% c #A32F23",
568
+ ">% c #670E21",
569
+ ",% c #1C001A",
570
+ "'% c #19001A",
571
+ ")% c #180016",
572
+ "!% c #160118",
573
+ "~% c #140219",
574
+ "{% c #11021C",
575
+ "]% c #10021E",
576
+ "^% c #0F011D",
577
+ "/% c #170117",
578
+ "(% c #160219",
579
+ "_% c #17041D",
580
+ ":% c #190523",
581
+ "<% c #8C042E",
582
+ "[% c #B65838",
583
+ "}% c #E9D73F",
584
+ "|% c #EED43E",
585
+ "1% c #D85538",
586
+ "2% c #493129",
587
+ "3% c #130120",
588
+ "4% c #15021D",
589
+ "5% c #330822",
590
+ "6% c #8A0825",
591
+ "7% c #3C0424",
592
+ "8% c #1E0322",
593
+ "9% c #1C0321",
594
+ "0% c #180421",
595
+ "a% c #130822",
596
+ "b% c #AF2D24",
597
+ "c% c #BC5623",
598
+ "d% c #2F071F",
599
+ "e% c #1A041C",
600
+ "f% c #1C031C",
601
+ "g% c #1D011C",
602
+ "h% c #160117",
603
+ "i% c #150419",
604
+ "j% c #12081D",
605
+ "k% c #0F0923",
606
+ "l% c #A77027",
607
+ "m% c #A60525",
608
+ "n% c #11021A",
609
+ "o% c #130218",
610
+ "p% c #150319",
611
+ "q% c #16061D",
612
+ "r% c #180923",
613
+ "s% c #9C1D2B",
614
+ "t% c #A32636",
615
+ "u% c #A66E3B",
616
+ "v% c #4B2E3C",
617
+ "w% c #412C36",
618
+ "x% c #36012D",
619
+ "y% c #140123",
620
+ "z% c #17001E",
621
+ "A% c #19011B",
622
+ "B% c #1A0421",
623
+ "C% c #340425",
624
+ "D% c #9E0326",
625
+ "E% c #1F0424",
626
+ "F% c #1C0524",
627
+ "G% c #180724",
628
+ "H% c #A91024",
629
+ "I% c #D55D24",
630
+ "J% c #90071E",
631
+ "K% c #3C051D",
632
+ "L% c #1C021C",
633
+ "M% c #1C011A",
634
+ "N% c #1D001A",
635
+ "O% c #160116",
636
+ "P% c #150216",
637
+ "Q% c #140217",
638
+ "R% c #140618",
639
+ "S% c #120D1D",
640
+ "T% c #231925",
641
+ "U% c #B16A2E",
642
+ "V% c #FDAC34",
643
+ "W% c #D58631",
644
+ "X% c #280E2A",
645
+ "Y% c #0D0A23",
646
+ "Z% c #0F0920",
647
+ "`% c #120C21",
648
+ " & c #1F1026",
649
+ ".& c #A3352E",
650
+ "+& c #EE9F36",
651
+ "@& c #5D2A3C",
652
+ "#& c #960D3C",
653
+ "$& c #970638",
654
+ "%& c #A00330",
655
+ "&& c #4D0126",
656
+ "*& c #1C001F",
657
+ "=& c #280120",
658
+ "-& c #290223",
659
+ ";& c #1F0425",
660
+ ">& c #260726",
661
+ ",& c #340A26",
662
+ "'& c #850925",
663
+ ")& c #3A0823",
664
+ "!& c #82071D",
665
+ "~& c #5E071D",
666
+ "{& c #18051C",
667
+ "]& c #18021A",
668
+ "^& c #190118",
669
+ "/& c #160217",
670
+ "(& c #150418",
671
+ "_& c #130618",
672
+ ":& c #110718",
673
+ "<& c #10081A",
674
+ "[& c #110D1D",
675
+ "}& c #291C24",
676
+ "|& c #A73B2D",
677
+ "1& c #FD6B36",
678
+ "2& c #FD853C",
679
+ "3& c #FD863B",
680
+ "4& c #C24A35",
681
+ "5& c #6B442F",
682
+ "6& c #6D302D",
683
+ "7& c #6E252E",
684
+ "8& c #8E3B32",
685
+ "9& c #DE7739",
686
+ "0& c #F48E3F",
687
+ "a& c #DD8D41",
688
+ "b& c #854F3D",
689
+ "c& c #7E2D35",
690
+ "d& c #33082B",
691
+ "e& c #1C0222",
692
+ "f& c #20001F",
693
+ "g& c #1F0222",
694
+ "h& c #1A0524",
695
+ "i& c #440C27",
696
+ "j& c #BC1427",
697
+ "k& c #20041B",
698
+ "l& c #53061C",
699
+ "m& c #25071B",
700
+ "n& c #11061A",
701
+ "o& c #130418",
702
+ "p& c #140317",
703
+ "q& c #150217",
704
+ "r& c #160318",
705
+ "s& c #12051B",
706
+ "t& c #100C1D",
707
+ "u& c #0E101E",
708
+ "v& c #0C121F",
709
+ "w& c #0C1321",
710
+ "x& c #781725",
711
+ "y& c #B25D2C",
712
+ "z& c #FA6335",
713
+ "A& c #FD633C",
714
+ "B& c #FE6D42",
715
+ "C& c #FE7C42",
716
+ "D& c #FE813F",
717
+ "E& c #FE873C",
718
+ "F& c #FD743B",
719
+ "G& c #FB683B",
720
+ "H& c #FA7A3E",
721
+ "I& c #F98242",
722
+ "J& c #F97844",
723
+ "K& c #F98943",
724
+ "L& c #F79C3D",
725
+ "M& c #A25133",
726
+ "N& c #280B28",
727
+ "O& c #1D021F",
728
+ "P& c #1F011C",
729
+ "Q& c #280321",
730
+ "R& c #1C0724",
731
+ "S& c #3F1C27",
732
+ "T& c #D33C27",
733
+ "U& c #0E061B",
734
+ "V& c #0C091C",
735
+ "W& c #0C0A1B",
736
+ "X& c #0E091A",
737
+ "Y& c #11081B",
738
+ "Z& c #100A20",
739
+ "`& c #0E0D23",
740
+ " * c #551227",
741
+ ".* c #B21829",
742
+ "+* c #C42329",
743
+ "@* c #C62C29",
744
+ "#* c #C55429",
745
+ "$* c #E76F2B",
746
+ "%* c #F14232",
747
+ "&* c #F95E3A",
748
+ "** c #FC6740",
749
+ "=* c #FE6E45",
750
+ "-* c #FE7246",
751
+ ";* c #FE7545",
752
+ ">* c #FE7744",
753
+ ",* c #FD7745",
754
+ "'* c #FD7845",
755
+ ")* c #FD7847",
756
+ "!* c #FD7948",
757
+ "~* c #FD7B44",
758
+ "{* c #FC7C3B",
759
+ "]* c #6F3130",
760
+ "^* c #140B24",
761
+ "/* c #19031D",
762
+ "(* c #1C011B",
763
+ "_* c #5A011F",
764
+ ":* c #B70421",
765
+ "<* c #380824",
766
+ "[* c #3E2626",
767
+ "}* c #9F5626",
768
+ "|* c #13051E",
769
+ "1* c #360A21",
770
+ "2* c #361223",
771
+ "3* c #371724",
772
+ "4* c #381824",
773
+ "5* c #3B1524",
774
+ "6* c #3E1E26",
775
+ "7* c #471A29",
776
+ "8* c #DB252E",
777
+ "9* c #ED2733",
778
+ "0* c #EE5436",
779
+ "a* c #F04237",
780
+ "b* c #F33934",
781
+ "c* c #F53D2F",
782
+ "d* c #D7312B",
783
+ "e* c #AF212B",
784
+ "f* c #3A2C31",
785
+ "g* c #F65F39",
786
+ "h* c #FB6F41",
787
+ "i* c #FD6D45",
788
+ "j* c #FE7047",
789
+ "k* c #FE7647",
790
+ "l* c #FE7847",
791
+ "m* c #FE7848",
792
+ "n* c #FE7748",
793
+ "o* c #FE7948",
794
+ "p* c #FE7C48",
795
+ "q* c #FE7C47",
796
+ "r* c #FE7642",
797
+ "s* c #FE7439",
798
+ "t* c #6D332C",
799
+ "u* c #100B21",
800
+ "v* c #16031B",
801
+ "w* c #2B001B",
802
+ "x* c #22011F",
803
+ "y* c #220521",
804
+ "z* c #1B0A23",
805
+ "A* c #421425",
806
+ "B* c #951924",
807
+ "C* c #381023",
808
+ "D* c #E94028",
809
+ "E* c #E7302B",
810
+ "F* c #EF432D",
811
+ "G* c #F4302E",
812
+ "H* c #F32C30",
813
+ "I* c #CB4432",
814
+ "J* c #DD3235",
815
+ "K* c #EF4B3A",
816
+ "L* c #F0333E",
817
+ "M* c #CC3D3F",
818
+ "N* c #E4313C",
819
+ "O* c #F34834",
820
+ "P* c #D13E2C",
821
+ "Q* c #431825",
822
+ "R* c #0E1424",
823
+ "S* c #3C202C",
824
+ "T* c #F15537",
825
+ "U* c #F97140",
826
+ "V* c #FC6E45",
827
+ "W* c #FE7547",
828
+ "X* c #FE7947",
829
+ "Y* c #FE7B48",
830
+ "Z* c #FE7D48",
831
+ "`* c #FE8047",
832
+ " = c #FE7A42",
833
+ ".= c #FE7A38",
834
+ "+= c #6D442B",
835
+ "@= c #0F0B21",
836
+ "#= c #15031A",
837
+ "$= c #49001B",
838
+ "%= c #2F001C",
839
+ "&= c #21021E",
840
+ "*= c #220620",
841
+ "== c #1B0D23",
842
+ "-= c #641625",
843
+ ";= c #951823",
844
+ ">= c #390F25",
845
+ ",= c #AC3A2A",
846
+ "'= c #B6492E",
847
+ ")= c #ED7531",
848
+ "!= c #F45A34",
849
+ "~= c #F54C36",
850
+ "{= c #C72D39",
851
+ "]= c #DE283C",
852
+ "^= c #F33B40",
853
+ "/= c #F34142",
854
+ "(= c #D0393F",
855
+ "_= c #E72E39",
856
+ ":= c #DB3C2E",
857
+ "<= c #461724",
858
+ "[= c #0F0D1E",
859
+ "}= c #140B1E",
860
+ "|= c #341427",
861
+ "1= c #CB4834",
862
+ "2= c #F7743F",
863
+ "3= c #FB7145",
864
+ "4= c #FE7747",
865
+ "5= c #FE7A47",
866
+ "6= c #FF7B48",
867
+ "7= c #FF7C48",
868
+ "8= c #FE7F47",
869
+ "9= c #FE8247",
870
+ "0= c #FE8642",
871
+ "a= c #FE8439",
872
+ "b= c #6D442D",
873
+ "c= c #0F0A21",
874
+ "d= c #14031A",
875
+ "e= c #20031D",
876
+ "f= c #210821",
877
+ "g= c #191024",
878
+ "h= c #CC1C25",
879
+ "i= c #961423",
880
+ "j= c #2C162C",
881
+ "k= c #BD242E",
882
+ "l= c #EF2C31",
883
+ "m= c #F54C34",
884
+ "n= c #F34037",
885
+ "o= c #F5353A",
886
+ "p= c #F7413D",
887
+ "q= c #F8423D",
888
+ "r= c #F93A39",
889
+ "s= c #F95731",
890
+ "t= c #341425",
891
+ "u= c #110A1D",
892
+ "v= c #140619",
893
+ "w= c #18051B",
894
+ "x= c #200F26",
895
+ "y= c #864833",
896
+ "z= c #F8773F",
897
+ "A= c #FC7445",
898
+ "B= c #FF7E48",
899
+ "C= c #FF7E49",
900
+ "D= c #FF7D49",
901
+ "E= c #FF7D48",
902
+ "F= c #FE8347",
903
+ "G= c #FE8743",
904
+ "H= c #FE893B",
905
+ "I= c #6E452F",
906
+ "J= c #100E23",
907
+ "K= c #14041A",
908
+ "L= c #55041D",
909
+ "M= c #540921",
910
+ "N= c #161124",
911
+ "O= c #CE6A25",
912
+ "P= c #3F1129",
913
+ "Q= c #170A29",
914
+ "R= c #0F0F29",
915
+ "S= c #15132B",
916
+ "T= c #1E182D",
917
+ "U= c #A82B3D",
918
+ "V= c #CB6633",
919
+ "W= c #CC6932",
920
+ "X= c #CC3D2D",
921
+ "Y= c #331225",
922
+ "Z= c #0F091C",
923
+ "`= c #120417",
924
+ " - c #160216",
925
+ ".- c #190419",
926
+ "+- c #210F26",
927
+ "@- c #8C4934",
928
+ "#- c #F97A40",
929
+ "$- c #FC7545",
930
+ "%- c #FF7B49",
931
+ "&- c #FE7D46",
932
+ "*- c #FE7E43",
933
+ "=- c #FD7B3E",
934
+ "-- c #FA6934",
935
+ ";- c #532328",
936
+ ">- c #130B1D",
937
+ ",- c #150519",
938
+ "'- c #14041C",
939
+ ")- c #120920",
940
+ "!- c #C43624",
941
+ "~- c #A21E23",
942
+ "{- c #F87C30",
943
+ "]- c #C9302D",
944
+ "^- c #300F2A",
945
+ "/- c #591129",
946
+ "(- c #171328",
947
+ "_- c #171628",
948
+ ":- c #141829",
949
+ "<- c #101A2B",
950
+ "[- c #0F172B",
951
+ "}- c #0F1226",
952
+ "|- c #0E0C20",
953
+ "1- c #100619",
954
+ "2- c #140316",
955
+ "3- c #19051B",
956
+ "4- c #3C1428",
957
+ "5- c #E04B36",
958
+ "6- c #FA7B41",
959
+ "7- c #FD7346",
960
+ "8- c #FE7548",
961
+ "9- c #FF7849",
962
+ "0- c #FF7749",
963
+ "a- c #FE7B47",
964
+ "b- c #FE7945",
965
+ "c- c #FC7740",
966
+ "d- c #FA7E39",
967
+ "e- c #C1432F",
968
+ "f- c #131523",
969
+ "g- c #130A1C",
970
+ "h- c #420621",
971
+ "i- c #D08423",
972
+ "j- c #F87739",
973
+ "k- c #C03D37",
974
+ "l- c #962B34",
975
+ "m- c #A14332",
976
+ "n- c #E54B30",
977
+ "o- c #9E3E2F",
978
+ "p- c #7F262E",
979
+ "q- c #922D2E",
980
+ "r- c #9C4B2E",
981
+ "s- c #65212C",
982
+ "t- c #101628",
983
+ "u- c #101022",
984
+ "v- c #11091C",
985
+ "w- c #130619",
986
+ "x- c #160A1E",
987
+ "y- c #43252C",
988
+ "z- c #F66439",
989
+ "A- c #FA6942",
990
+ "B- c #FD6C47",
991
+ "C- c #FE6E48",
992
+ "D- c #FE6F48",
993
+ "E- c #FE7049",
994
+ "F- c #FE714A",
995
+ "G- c #FE744A",
996
+ "H- c #FE7846",
997
+ "I- c #FD7243",
998
+ "J- c #FC703E",
999
+ "K- c #FA6C37",
1000
+ "L- c #81312B",
1001
+ "M- c #121123",
1002
+ "N- c #15071D",
1003
+ "O- c #16031A",
1004
+ "P- c #17021B",
1005
+ "Q- c #8F3D22",
1006
+ "R- c #F8393E",
1007
+ "S- c #E42A3D",
1008
+ "T- c #E7473B",
1009
+ "U- c #FB503B",
1010
+ "V- c #FB4F3A",
1011
+ "W- c #F95439",
1012
+ "X- c #ED4C38",
1013
+ "Y- c #F45938",
1014
+ "Z- c #FB6537",
1015
+ "`- c #EA5236",
1016
+ " ; c #CE6232",
1017
+ ".; c #CD392C",
1018
+ "+; c #181425",
1019
+ "@; c #120F21",
1020
+ "#; c #130D20",
1021
+ "$; c #151225",
1022
+ "%; c #903431",
1023
+ "&; c #F8703D",
1024
+ "*; c #FB6344",
1025
+ "=; c #FD6748",
1026
+ "-; c #FE6849",
1027
+ ";; c #FE6949",
1028
+ ">; c #FE6A49",
1029
+ ",; c #FE6C4A",
1030
+ "'; c #FE704A",
1031
+ "); c #FE734A",
1032
+ "!; c #FE7449",
1033
+ "~; c #FE7347",
1034
+ "{; c #FE7145",
1035
+ "]; c #FD6C42",
1036
+ "^; c #FD753D",
1037
+ "/; c #F36E35",
1038
+ "(; c #CB452C",
1039
+ "_; c #600D24",
1040
+ ":; c #1C061F",
1041
+ "<; c #1E031F",
1042
+ "[; c #5B3821",
1043
+ "}; c #CE9822",
1044
+ "|; c #FA4341",
1045
+ "1; c #FB4341",
1046
+ "2; c #FC4541",
1047
+ "3; c #FC4542",
1048
+ "4; c #FC4143",
1049
+ "5; c #FC4D42",
1050
+ "6; c #FB5042",
1051
+ "7; c #FB5342",
1052
+ "8; c #FC5242",
1053
+ "9; c #FD4F40",
1054
+ "0; c #FD503E",
1055
+ "a; c #FB6339",
1056
+ "b; c #F45E33",
1057
+ "c; c #A12A2E",
1058
+ "d; c #401E2C",
1059
+ "e; c #452D2F",
1060
+ "f; c #F74F38",
1061
+ "g; c #FA5940",
1062
+ "h; c #FC6245",
1063
+ "i; c #FE6447",
1064
+ "j; c #FE6449",
1065
+ "k; c #FE6549",
1066
+ "l; c #FE6749",
1067
+ "m; c #FE6B49",
1068
+ "n; c #FE6D49",
1069
+ "o; c #FE6D48",
1070
+ "p; c #FE6D47",
1071
+ "q; c #FE6D45",
1072
+ "r; c #FE6C44",
1073
+ "s; c #FE6A42",
1074
+ "t; c #FE663C",
1075
+ "u; c #FC6233",
1076
+ "v; c #752129",
1077
+ "w; c #1F0922",
1078
+ "x; c #750520",
1079
+ "y; c #81061F",
1080
+ "z; c #FA3D42",
1081
+ "A; c #FB4142",
1082
+ "B; c #FD4543",
1083
+ "C; c #FD4844",
1084
+ "D; c #FD4A45",
1085
+ "E; c #FD4D45",
1086
+ "F; c #FD5045",
1087
+ "G; c #FD5345",
1088
+ "H; c #FE5346",
1089
+ "I; c #FE5445",
1090
+ "J; c #FD5444",
1091
+ "K; c #FC4F41",
1092
+ "L; c #FA513D",
1093
+ "M; c #F95339",
1094
+ "N; c #F63736",
1095
+ "O; c #F75737",
1096
+ "P; c #F95F3B",
1097
+ "Q; c #FB5840",
1098
+ "R; c #FD5F43",
1099
+ "S; c #FE6345",
1100
+ "T; c #FE6547",
1101
+ "U; c #FE6548",
1102
+ "V; c #FE6448",
1103
+ "W; c #FE6248",
1104
+ "X; c #FE6348",
1105
+ "Y; c #FE6748",
1106
+ "Z; c #FE6848",
1107
+ "`; c #FE6846",
1108
+ " > c #FE6A45",
1109
+ ".> c #FE6D43",
1110
+ "+> c #FE703F",
1111
+ "@> c #FC6F36",
1112
+ "#> c #6F302B",
1113
+ "$> c #140A22",
1114
+ "%> c #FA3B42",
1115
+ "&> c #FC4243",
1116
+ "*> c #FD4744",
1117
+ "=> c #FE4A45",
1118
+ "-> c #FE4C47",
1119
+ ";> c #FE4D47",
1120
+ ">> c #FE5047",
1121
+ ",> c #FE5347",
1122
+ "'> c #FE5447",
1123
+ ")> c #FD5246",
1124
+ "!> c #FB503F",
1125
+ "~> c #FA543D",
1126
+ "{> c #9B3D3B",
1127
+ "]> c #A3433B",
1128
+ "^> c #F9683D",
1129
+ "/> c #FC6940",
1130
+ "(> c #FE6342",
1131
+ "_> c #FE6645",
1132
+ ":> c #FE6646",
1133
+ "<> c #FE6147",
1134
+ "[> c #FE6048",
1135
+ "}> c #FE6148",
1136
+ "|> c #FE6746",
1137
+ "1> c #FE6A46",
1138
+ "2> c #FE6F45",
1139
+ "3> c #FE7441",
1140
+ "4> c #FC7D39",
1141
+ "5> c #6C422E",
1142
+ "6> c #0F0F23",
1143
+ "7> c #FA4142",
1144
+ "8> c #FC4643",
1145
+ "9> c #FE4D46",
1146
+ "0> c #FE4E47",
1147
+ "a> c #FE4F48",
1148
+ "b> c #FE5148",
1149
+ "c> c #FE5348",
1150
+ "d> c #FE5548",
1151
+ "e> c #FE5247",
1152
+ "f> c #FD5445",
1153
+ "g> c #FC5544",
1154
+ "h> c #F96041",
1155
+ "i> c #D33F3D",
1156
+ "j> c #392D39",
1157
+ "k> c #973C38",
1158
+ "l> c #F94E3A",
1159
+ "m> c #FD693E",
1160
+ "n> c #FE6C43",
1161
+ "o> c #FE6047",
1162
+ "p> c #FE5D47",
1163
+ "q> c #FE5E48",
1164
+ "r> c #FE6948",
1165
+ "s> c #FE6947",
1166
+ "t> c #FE6B47",
1167
+ "u> c #FE6E46",
1168
+ "v> c #FD6D43",
1169
+ "w> c #FB723D",
1170
+ "x> c #D54A33",
1171
+ "y> c #301C29",
1172
+ "z> c #FB4A42",
1173
+ "A> c #FD4B44",
1174
+ "B> c #FE4F47",
1175
+ "C> c #FE5048",
1176
+ "D> c #FE5648",
1177
+ "E> c #FE5848",
1178
+ "F> c #FE5747",
1179
+ "G> c #FE5547",
1180
+ "H> c #FC5945",
1181
+ "I> c #F95742",
1182
+ "J> c #F3543D",
1183
+ "K> c #A33336",
1184
+ "L> c #302032",
1185
+ "M> c #152433",
1186
+ "N> c #CD3E38",
1187
+ "O> c #FD5A3F",
1188
+ "P> c #FE6343",
1189
+ "Q> c #FE6446",
1190
+ "R> c #FE6247",
1191
+ "S> c #FE6A47",
1192
+ "T> c #FC6542",
1193
+ "U> c #FB6A3B",
1194
+ "V> c #FA6D34",
1195
+ "W> c #D73C2D",
1196
+ "X> c #442428",
1197
+ "Y> c #281323",
1198
+ "Z> c #FD4E42",
1199
+ "`> c #FD4D43",
1200
+ " , c #FE4D45",
1201
+ "., c #FE5248",
1202
+ "+, c #FE5947",
1203
+ "@, c #FE5C47",
1204
+ "#, c #FE5B47",
1205
+ "$, c #FE5A47",
1206
+ "%, c #FE5847",
1207
+ "&, c #FC5C45",
1208
+ "*, c #F95B43",
1209
+ "=, c #F3613F",
1210
+ "-, c #E74F37",
1211
+ ";, c #8C2431",
1212
+ ">, c #161E2F",
1213
+ ",, c #CD4E33",
1214
+ "', c #FD503A",
1215
+ "), c #FE5D40",
1216
+ "!, c #FE6445",
1217
+ "~, c #FE6946",
1218
+ "{, c #FE6847",
1219
+ "], c #FE6747",
1220
+ "^, c #FD6644",
1221
+ "/, c #FD6241",
1222
+ "(, c #FD5B3D",
1223
+ "_, c #FE6739",
1224
+ ":, c #FE6135",
1225
+ "<, c #AB4830",
1226
+ "[, c #733E2A",
1227
+ "}, c #161224",
1228
+ "|, c #FC4E42",
1229
+ "1, c #FE4D44",
1230
+ "2, c #FE4E46",
1231
+ "3, c #FE5147",
1232
+ "4, c #FE5E47",
1233
+ "5, c #FD5C46",
1234
+ "6, c #FA5B44",
1235
+ "7, c #F45441",
1236
+ "8, c #EB393A",
1237
+ "9, c #CC3433",
1238
+ "0, c #47212F",
1239
+ "a, c #59242F",
1240
+ "b, c #FC6734",
1241
+ "c, c #FC6F3A",
1242
+ "d, c #FC723E",
1243
+ "e, c #FD6540",
1244
+ "f, c #FE6442",
1245
+ "g, c #FE6643",
1246
+ "h, c #FE6944",
1247
+ "i, c #FE6546",
1248
+ "j, c #FE6444",
1249
+ "k, c #FE6143",
1250
+ "l, c #FE5E41",
1251
+ "m, c #FE613F",
1252
+ "n, c #FE683C",
1253
+ "o, c #FE7937",
1254
+ "p, c #A25030",
1255
+ "q, c #692629",
1256
+ "r, c #151122",
1257
+ "s, c #FA573F",
1258
+ "t, c #FB4D40",
1259
+ "u, c #FC4F43",
1260
+ "v, c #FE5246",
1261
+ "w, c #FF6347",
1262
+ "x, c #FE5F48",
1263
+ "y, c #F65942",
1264
+ "z, c #F0493D",
1265
+ "A, c #ED3736",
1266
+ "B, c #73262F",
1267
+ "C, c #10152C",
1268
+ "D, c #3B292F",
1269
+ "E, c #363034",
1270
+ "F, c #AC3938",
1271
+ "G, c #FC6B3B",
1272
+ "H, c #FD763C",
1273
+ "I, c #FE6D3F",
1274
+ "J, c #FE6341",
1275
+ "K, c #FE6642",
1276
+ "L, c #FE6745",
1277
+ "M, c #FE6245",
1278
+ "N, c #FE6244",
1279
+ "O, c #FE6841",
1280
+ "P, c #FF683B",
1281
+ "Q, c #EC7035",
1282
+ "R, c #D0412D",
1283
+ "S, c #3A1627",
1284
+ "T, c #CF3938",
1285
+ "U, c #F6543C",
1286
+ "V, c #FB5040",
1287
+ "W, c #FD5544",
1288
+ "X, c #FE5A48",
1289
+ "Y, c #FE5D48",
1290
+ "Z, c #FE5F47",
1291
+ "`, c #FF6147",
1292
+ " ' c #FD5C45",
1293
+ ".' c #FB5B43",
1294
+ "+' c #FA5A42",
1295
+ "@' c #F76040",
1296
+ "#' c #F4623D",
1297
+ "$' c #F26D38",
1298
+ "%' c #EC4130",
1299
+ "&' c #380E2B",
1300
+ "*' c #13122C",
1301
+ "=' c #362D31",
1302
+ "-' c #353435",
1303
+ ";' c #352E37",
1304
+ ">' c #2D3337",
1305
+ ",' c #CC5838",
1306
+ "'' c #CD6F3A",
1307
+ ")' c #CE6E3D",
1308
+ "!' c #FE793F",
1309
+ "~' c #FD7541",
1310
+ "{' c #FD6243",
1311
+ "]' c #FE6545",
1312
+ "^' c #FF6543",
1313
+ "/' c #FF6240",
1314
+ "(' c #FE723B",
1315
+ "_' c #FE8034",
1316
+ ":' c #442D2C",
1317
+ "<' c #311725",
1318
+ "[' c #222830",
1319
+ "}' c #B73B36",
1320
+ "|' c #F94C3D",
1321
+ "1' c #FD5543",
1322
+ "2' c #FE5B48",
1323
+ "3' c #FF5E47",
1324
+ "4' c #FE5C48",
1325
+ "5' c #FC5B44",
1326
+ "6' c #F95640",
1327
+ "7' c #C34E3D",
1328
+ "8' c #A45A3A",
1329
+ "9' c #F37438",
1330
+ "0' c #F28935",
1331
+ "a' c #AF422F",
1332
+ "b' c #240D2B",
1333
+ "c' c #88292F",
1334
+ "d' c #FA8E34",
1335
+ "e' c #FC7E38",
1336
+ "f' c #FC5939",
1337
+ "g' c #694A37",
1338
+ "h' c #693437",
1339
+ "i' c #382638",
1340
+ "j' c #142439",
1341
+ "k' c #9F483A",
1342
+ "l' c #C45E3C",
1343
+ "m' c #FD7240",
1344
+ "n' c #FF6645",
1345
+ "o' c #FF6245",
1346
+ "p' c #FF6045",
1347
+ "q' c #FF6146",
1348
+ "r' c #FF6246",
1349
+ "s' c #FF6446",
1350
+ "t' c #FF6545",
1351
+ "u' c #FE763F",
1352
+ "v' c #FE7237",
1353
+ "w' c #C65331",
1354
+ "x' c #3D272A",
1355
+ "y' c #0D1E2B",
1356
+ "z' c #683032",
1357
+ "A' c #F9453A",
1358
+ "B' c #FD5341",
1359
+ "C' c #FE5A46",
1360
+ "D' c #FF5A48",
1361
+ "E' c #FE5948",
1362
+ "F' c #FD5A47",
1363
+ "G' c #FC5D43",
1364
+ "H' c #F95B3D",
1365
+ "I' c #713F37",
1366
+ "J' c #1E2D32",
1367
+ "K' c #C44531",
1368
+ "L' c #EF7A2F",
1369
+ "M' c #6B2E2C",
1370
+ "N' c #0F0E2C",
1371
+ "O' c #F56633",
1372
+ "P' c #FA803A",
1373
+ "Q' c #FC673E",
1374
+ "R' c #FD673E",
1375
+ "S' c #FC6F3C",
1376
+ "T' c #FA6E3B",
1377
+ "U' c #C6633A",
1378
+ "V' c #A06739",
1379
+ "W' c #835638",
1380
+ "X' c #381F38",
1381
+ "Y' c #713B38",
1382
+ "Z' c #7B503C",
1383
+ "`' c #FE7741",
1384
+ " ) c #FE7344",
1385
+ ".) c #FE6D46",
1386
+ "+) c #FF6946",
1387
+ "@) c #FF5E46",
1388
+ "#) c #FF5D46",
1389
+ "$) c #FF5D47",
1390
+ "%) c #FF5F48",
1391
+ "&) c #FF6248",
1392
+ "*) c #FE6941",
1393
+ "=) c #FC783C",
1394
+ "-) c #C46B35",
1395
+ ";) c #892730",
1396
+ ">) c #111629",
1397
+ ",) c #1F2630",
1398
+ "') c #AD3939",
1399
+ ")) c #FC5D41",
1400
+ "!) c #FE5946",
1401
+ "~) c #FF5848",
1402
+ "{) c #FE5549",
1403
+ "]) c #FC5E42",
1404
+ "^) c #FA673B",
1405
+ "/) c #DB7033",
1406
+ "() c #392E2B",
1407
+ "_) c #311A28",
1408
+ ":) c #3C2127",
1409
+ "<) c #1D1027",
1410
+ "[) c #92102C",
1411
+ "}) c #F58336",
1412
+ "|) c #FA673E",
1413
+ "1) c #FD6642",
1414
+ "2) c #FD5A41",
1415
+ "3) c #FC6D41",
1416
+ "4) c #FC6D3F",
1417
+ "5) c #FD683E",
1418
+ "6) c #F38C39",
1419
+ "7) c #CE6535",
1420
+ "8) c #612E34",
1421
+ "9) c #1D2637",
1422
+ "0) c #71513E",
1423
+ "a) c #FF6847",
1424
+ "b) c #FF5F47",
1425
+ "c) c #FF5A46",
1426
+ "d) c #FF5847",
1427
+ "e) c #FF5748",
1428
+ "f) c #FF594A",
1429
+ "g) c #FF5E4B",
1430
+ "h) c #FE654C",
1431
+ "i) c #FE694B",
1432
+ "j) c #FE6B48",
1433
+ "k) c #FC6A43",
1434
+ "l) c #F7683E",
1435
+ "m) c #EC6E39",
1436
+ " ",
1437
+ " ",
1438
+ " ",
1439
+ " ",
1440
+ " ",
1441
+ " ",
1442
+ " ",
1443
+ " ",
1444
+ " . + @ # $ % ",
1445
+ " & * = - ; > , ' ) ! ~ ",
1446
+ " { ] ^ / ( _ : < [ } | 1 2 ",
1447
+ " 3 4 5 6 7 8 9 0 a b c d e f g h i j ",
1448
+ " k l m n o p q r s t u v w x y z A B C D ",
1449
+ " E F G H I J K L M N O P Q R S T U V W X Y Z ` ",
1450
+ " ...+.@.#.$.%.&.*.=.-.;.>.,.S '.).!.~.{.].^./.(._. ",
1451
+ " :.<.[.}.|.1.2.3.4.5.6.7.8.9.0.a.b.c.d.e.!.S f.g.h.i.j.k. ",
1452
+ " l.m.n.o.p.q.r.s.t.u.J v.w.x.y.z.A.c.d.d.B.C.D.E.F.G.H.I. ",
1453
+ " J.K.L.M.N.O.P.Q.R.t S.T.U.V.W.X.Y.Z.`. +d.d..+B.'.++@+#+$+%+ ",
1454
+ " &+*+=+-+;+>+,+'+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+d.2+3+4+d.5+6+7+8+9+0+ ",
1455
+ " a+b+c+d+e+f+g+h+i+j+k+l+m+n+^+o+p+q+r+s+t+u+v+b.w+x+y+z+A+w+B+C+D+E+F+G+ ",
1456
+ " H+I+J+K+L+M+N+O+P+Q+R+S+T+U+V+W+Q ,.X+Y+Z+`+ @.@+@@@#@$@%@&@*@=@#@-@;@>@,@'@ ",
1457
+ " )@!@~@{@]@^@/@(@_@:@<@[@}@|@1@2@3@R ,.4@5@6@7@8@9@0@a@#@b@c@=@d@e@f@g@>@h@i@j@ ",
1458
+ " k@l@m@n@o@p@q@r@s@t@u@v@w@x@y@^+R S z@A@z.q+B@C@D@E@F@G@H@#@e@#@#@f@g@I@J@K@L@ ",
1459
+ " M@N@O@P@Q@R@S@T@U@V@W@X@Y@Z@`@ #.#+#+#S A@@###$#%#&#*#=#-#f@B+B+B+f@;#>#,#'#)# ",
1460
+ " !#~#{#]#^#/#(#(#_#:#<#[#}#|#1#^+.#S +#+#z@2#3#4#5#6#7#8#9#0#A.B+B+a#A.@@b#c#d# ",
1461
+ " e#f#g#h#i#j#k#l#m#n#o#p#q#r#s#t#u#v#.#w#S R ^+x#y#z#A#B#C#D#-#A.a#`.`.b.g@E#d#F# ",
1462
+ " G#0@H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#>.W#3@v#R R X+X#Y#s#Z#`# $.$+$@$g@f@5+5+#$6+$$%$&$ ",
1463
+ " *$=$-$;$>$,$'$)$!$~${$]$^$/$($_$*$u#:$Q 3@,.X+z.<$[$}$|$1$2$3$4$5$6$7$e@8$#$G@9$0$a$ ",
1464
+ " ,.4@E#b$c$d$e$f$g$h$i$j$k$l$m$n$`@>.:$o$3@,. #a.p$q$r$s$t$u$v$w$x$y$z$A$B$#@C$D$E$F$G$ ",
1465
+ " R S H$v+I$J$K$n+L$:$o$o$M$N$L$O$P$Q$R$N$o$3@S$T$U$V$W$X$Y$Z$`$ %.%+%@%#%$%%%&%*%=%-%;%>% ",
1466
+ " E.,%~.'%Z.4@v W#o$)%)%)%Q !%~%{%]%^%Q$u u#/%(%_%:%<%[%}%|%1%2%3%4%=%5%6%7%8%9%0%a%b%c%d% ",
1467
+ " e%f%g%a#,%,%z@R 3@3@3@)%Q h%i%j%k%l%m%{+n%o%p%q%r%s%t%u%v%w%x%y%z%A%*%B%C%D%E%F%G%H%I% ",
1468
+ " J%K%L%M%N%D.S v#)%)%O%P%Q%R%S%T%U%V%W%X%Y%Z%`% &.&+&@&#&$&%&&&*&f@a##@=&-&;&>&,&'&)& ",
1469
+ " !&~&{&]&^&.#w#^&/%/&(&_&:&<&[&}&|&1&2&3&4&5&6&7&8&9&0&a&b&c&d&e&e@1+5+e@f&g&h&i&j& ",
1470
+ " k&l&m&n&o&p&q&r&i%s&3.t&u&v&w&x&y&z&A&B&C&D&E&F&G&H&I&J&K&L&M&N&O&P&1+`.e@f&Q&R&S&T& ",
1471
+ " 0 U&V&W&X&<&Y&j%Z&`& *.*+*@*#*$*%*&***=*-*;*>*>*,*'*)*!*~*{*]*^*/*(*a#B+#@_*:*<*[*}* ",
1472
+ " |*1*2*3*4*5*6*7*8*9*0*a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s*t*u*v*E.w*d.e@x*y*z*A*B* ",
1473
+ " C*D*E*F*G*H*I*J*K*L*M*N*O*P*Q*R*S*T*U*V*W*l*X*o*o*Y*Z*`* =.=+=@=#='%$=%=e@&=*===-=;= ",
1474
+ " >=,='=)=!=~={=]=^=/=(=_=:=<=[=}=|=1=2=3=4=5=p*6=6=7=8=9=0=a=b=c=d=A@~.b.B+e=f=g=h=i= ",
1475
+ " j=k=l=m=n=o=p=q=r=s=t=u=v=w=x=y=z=A=5=Z*B=C=D=E=8=F=G=H=I=J=K=S$R z@'%L=M=N=O= ",
1476
+ " P=Q=R=S=T=U=V=W=X=Y=Z=`= -.-+-@-#-$-5=p*E=D=%-%-q*&-*-=---;->-,-/%3@^+'-)-!-~- ",
1477
+ " {-]-^-/-(-_-:-<-[-}-|-1-2- -3-4-5-6-7-8-n*m*9-0-9-o*a-b-c-d-e-f-g-(&h%w c h-i- ",
1478
+ " j-k-l-m-n-o-p-q-r-s-t-u-v-w-,-x-y-z-A-B-C-D-E-E-F-G-_@m*H-I-J-K-L-M-N-O-P-(+Q- ",
1479
+ " R-S-T-U-V-W-X-Y-Z-`- ;.;+;@;#;$;%;&;*;=;-;-;;;>;,;';);!;~;{;];^;/;(;_;:;<;[;}; ",
1480
+ " |;1;2;3;4;5;6;7;8;9;0;a;b;c;d;e;f;g;h;i;j;j;k;k;l;m;n;o;p;q;r;s;t;u;v;w;x;y; ",
1481
+ " z;A;B;C;D;E;F;G;H;I;J;K;L;M;N;O;P;Q;R;S;T;U;V;W;X;k;Y;Z;`; >r;.>+>@>#>$> ",
1482
+ " %>&>*>=>->;>>>,>'>,>)>F;8;!>~>{>]>^>/>(>_>:>i;<>[>X;}>i;|>1>q;2>3>4>5>6> ",
1483
+ " 7>8>=>9>0>a>b>c>d>,>e>e>f>g>h>i>j>k>l>m>n>:>i;o>p>q>W;r>s>t>p;u>v>w>x>y> ",
1484
+ " z>A>9>0>B>C>c>D>E>F>G>G>F>H>I>J>K>L>M>N>O>P>Q>R>o>R>T;s>S>S>S>t>1>T>U>V>W>X>Y> ",
1485
+ " Z>`> ,9>B>.,D>+,@,#,$,%,$,&,*,=,-,;,>,,,',),P>!,!,_>~,t>s>{,],{,],^,/,(,_,:,<,[,}, ",
1486
+ " |,`>1,2,3,G>+,4,o>o>4,@,@,5,6,7,8,9,0,a,b,c,d,e,f,g,h, >~,|>T;T;T;i,j,k,l,m,n,o,p,q,r, ",
1487
+ " s,t,u,v,G>%,@,o>w,R>x,p>@,5,6,y,z,A,B,C,D,E,F,G,H,I,J,K,L,L,i,i;i;i;Q>S;M,N,P>O,P,Q,R,S, ",
1488
+ " T,U,V,W,%,X,Y,Z,`,[>q>@, '.'+'@'#'$'%'&'*'='-';'>',''')'!'~'{'N,i,:>_>]'M,M,Q>_>^'/'('_':'<' ",
1489
+ " ['}'|'1'$,X,2'p>3'4'2'@,5'6'7'8'9'0'a'b'c'd'e'f'g'h'i'j'k'l'd,m'g, > >n'o'p'q'r's't'.>u'v'w'x' ",
1490
+ " y'z'A'B'C'X,X,2'D'E'E'F'G'H'I'J'K'L'M'N'O'P'Q'R'S'T'U'V'W'X'Y'Z'`' ).)+)r'@)#)$)%)&)l;1>*)=)-);) ",
1491
+ " >),)')))!)X,E'X,~){)d>!)])^)/)()_):)<)[)})|)1)f,2)3)4)5)6)7)8)9)0)*--*a)b)c)d)e)f)g)h)i)j)k)l)m) ",
1492
+ " ",
1493
+ " ",
1494
+ " ",
1495
+ " ",
1496
+ " ",
1497
+ " ",
1498
+ " ",
1499
+ " "};