sproutit-sproutcore 1.0.20090721145236 → 1.0.20090721145251

Sign up to get free protection for your applications and to get access to all the features.
Files changed (933) hide show
  1. data/Rakefile +189 -54
  2. data/VERSION.yml +5 -0
  3. data/frameworks/sproutcore/Buildfile +64 -0
  4. data/frameworks/sproutcore/HISTORY +682 -0
  5. data/frameworks/sproutcore/README +23 -0
  6. data/frameworks/sproutcore/apps/docs/core.js +27 -0
  7. data/frameworks/sproutcore/apps/docs/english.lproj/loading.rhtml +9 -0
  8. data/frameworks/sproutcore/apps/docs/english.lproj/main_page.js +22 -0
  9. data/frameworks/sproutcore/apps/docs/english.lproj/strings.js +15 -0
  10. data/frameworks/sproutcore/apps/docs/main.js +30 -0
  11. data/frameworks/sproutcore/apps/tests/controllers/detail.js +16 -0
  12. data/frameworks/sproutcore/apps/tests/controllers/source.js +29 -0
  13. data/frameworks/sproutcore/apps/tests/controllers/target.js +26 -0
  14. data/frameworks/sproutcore/apps/tests/controllers/targets.js +86 -0
  15. data/frameworks/sproutcore/apps/tests/controllers/tests.js +33 -0
  16. data/frameworks/sproutcore/apps/tests/core.js +133 -0
  17. data/frameworks/sproutcore/apps/tests/data_source.js +96 -0
  18. data/frameworks/sproutcore/apps/tests/english.lproj/loading.rhtml +9 -0
  19. data/frameworks/sproutcore/apps/tests/english.lproj/main_page.css +39 -0
  20. data/frameworks/sproutcore/apps/tests/english.lproj/main_page.js +232 -0
  21. data/frameworks/sproutcore/apps/tests/english.lproj/strings.js +26 -0
  22. data/frameworks/sproutcore/apps/tests/fixtures/target.js +87 -0
  23. data/frameworks/sproutcore/apps/tests/fixtures/test.js +44 -0
  24. data/frameworks/sproutcore/apps/tests/main.js +28 -0
  25. data/frameworks/sproutcore/apps/tests/models/target.js +92 -0
  26. data/frameworks/sproutcore/apps/tests/models/test.js +48 -0
  27. data/frameworks/sproutcore/apps/tests/states/no_targets.js +26 -0
  28. data/frameworks/sproutcore/apps/tests/states/ready.js +56 -0
  29. data/frameworks/sproutcore/apps/tests/states/ready_detail.js +41 -0
  30. data/frameworks/sproutcore/apps/tests/states/ready_empty.js +48 -0
  31. data/frameworks/sproutcore/apps/tests/states/ready_list.js +41 -0
  32. data/frameworks/sproutcore/apps/tests/states/ready_loading.js +44 -0
  33. data/frameworks/sproutcore/apps/tests/states/ready_no_tests.js +31 -0
  34. data/frameworks/sproutcore/apps/tests/states/start.js +39 -0
  35. data/frameworks/sproutcore/apps/tests/tests/controllers/detail.js +15 -0
  36. data/frameworks/sproutcore/apps/tests/tests/controllers/source.js +15 -0
  37. data/frameworks/sproutcore/apps/tests/tests/controllers/target.js +15 -0
  38. data/frameworks/sproutcore/apps/tests/tests/controllers/targets.js +15 -0
  39. data/frameworks/sproutcore/apps/tests/tests/controllers/tests.js +15 -0
  40. data/frameworks/sproutcore/apps/tests/tests/models/target.js +15 -0
  41. data/frameworks/sproutcore/apps/tests/tests/models/test.js +15 -0
  42. data/frameworks/sproutcore/apps/tests/tests/views/offset_checkbox.js +15 -0
  43. data/frameworks/sproutcore/apps/tests/views/offset_checkbox.js +26 -0
  44. data/frameworks/sproutcore/apps/welcome/core.js +23 -0
  45. data/frameworks/sproutcore/apps/welcome/english.lproj/loading.rhtml +8 -0
  46. data/frameworks/sproutcore/apps/welcome/english.lproj/main_page.js +43 -0
  47. data/frameworks/sproutcore/apps/welcome/english.lproj/strings.js +15 -0
  48. data/frameworks/sproutcore/apps/welcome/main.js +36 -0
  49. data/frameworks/sproutcore/design/Record State Table.numbers +0 -0
  50. data/frameworks/sproutcore/frameworks/datastore/core.js +14 -0
  51. data/frameworks/sproutcore/frameworks/datastore/data_sources/cascade.js +113 -0
  52. data/frameworks/sproutcore/frameworks/datastore/data_sources/data_source.js +273 -0
  53. data/frameworks/sproutcore/frameworks/datastore/data_sources/fixtures.js +311 -0
  54. data/frameworks/sproutcore/frameworks/datastore/data_sources/fixtures_with_queries.js +238 -0
  55. data/frameworks/sproutcore/frameworks/datastore/debug/json.js +71 -0
  56. data/frameworks/sproutcore/frameworks/datastore/debug/standard_setup.js +96 -0
  57. data/frameworks/sproutcore/frameworks/datastore/fixtures/author_fixtures.js +2503 -0
  58. data/frameworks/sproutcore/frameworks/datastore/fixtures/sample.js +17 -0
  59. data/frameworks/sproutcore/frameworks/datastore/models/fetched_attribute.js +92 -0
  60. data/frameworks/sproutcore/frameworks/datastore/models/many_attribute.js +54 -0
  61. data/frameworks/sproutcore/frameworks/datastore/models/record.js +561 -0
  62. data/frameworks/sproutcore/frameworks/datastore/models/record_attribute.js +423 -0
  63. data/frameworks/sproutcore/frameworks/datastore/system/many_array.js +158 -0
  64. data/frameworks/sproutcore/frameworks/datastore/system/nested_store.js +488 -0
  65. data/frameworks/sproutcore/frameworks/datastore/system/query.js +979 -0
  66. data/frameworks/sproutcore/frameworks/datastore/system/record_array.js +287 -0
  67. data/frameworks/sproutcore/frameworks/datastore/system/store.js +2007 -0
  68. data/frameworks/sproutcore/frameworks/datastore/tests/data_sources/fixtures.js +121 -0
  69. data/frameworks/sproutcore/frameworks/datastore/tests/integration/contact_model.js +114 -0
  70. data/frameworks/sproutcore/frameworks/datastore/tests/integration/mail_model.js +91 -0
  71. data/frameworks/sproutcore/frameworks/datastore/tests/integration/test_runner_model.js +56 -0
  72. data/frameworks/sproutcore/frameworks/datastore/tests/models/many_attribute.js +94 -0
  73. data/frameworks/sproutcore/frameworks/datastore/tests/models/record/core_methods.js +30 -0
  74. data/frameworks/sproutcore/frameworks/datastore/tests/models/record/destroy.js +73 -0
  75. data/frameworks/sproutcore/frameworks/datastore/tests/models/record/normalize.js +238 -0
  76. data/frameworks/sproutcore/frameworks/datastore/tests/models/record/readAttribute.js +48 -0
  77. data/frameworks/sproutcore/frameworks/datastore/tests/models/record/refresh.js +42 -0
  78. data/frameworks/sproutcore/frameworks/datastore/tests/models/record/storeDidChangeProperties.js +138 -0
  79. data/frameworks/sproutcore/frameworks/datastore/tests/models/record/unknownProperty.js +46 -0
  80. data/frameworks/sproutcore/frameworks/datastore/tests/models/record/writeAttribute.js +71 -0
  81. data/frameworks/sproutcore/frameworks/datastore/tests/models/record_attribute.js +204 -0
  82. data/frameworks/sproutcore/frameworks/datastore/tests/system/many_array/core_methods.js +178 -0
  83. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/chain.js +40 -0
  84. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/commitChanges.js +117 -0
  85. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/commitChangesFromNestedStore.js +135 -0
  86. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/dataHashDidChange.js +110 -0
  87. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/discardChanges.js +99 -0
  88. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/readDataHash.js +180 -0
  89. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/readEditableDataHash.js +126 -0
  90. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/removeDataHash.js +163 -0
  91. data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/writeDataHash.js +166 -0
  92. data/frameworks/sproutcore/frameworks/datastore/tests/system/query/compare_records.js +126 -0
  93. data/frameworks/sproutcore/frameworks/datastore/tests/system/query/evaluation.js +165 -0
  94. data/frameworks/sproutcore/frameworks/datastore/tests/system/query/evaluation_of_records.js +82 -0
  95. data/frameworks/sproutcore/frameworks/datastore/tests/system/query/find_all.js +362 -0
  96. data/frameworks/sproutcore/frameworks/datastore/tests/system/query/parsing.js +170 -0
  97. data/frameworks/sproutcore/frameworks/datastore/tests/system/query/record_type_is.js +43 -0
  98. data/frameworks/sproutcore/frameworks/datastore/tests/system/query/registered_comparisons.js +60 -0
  99. data/frameworks/sproutcore/frameworks/datastore/tests/system/query/registered_query_extensions.js +67 -0
  100. data/frameworks/sproutcore/frameworks/datastore/tests/system/record_array/core_methods.js +164 -0
  101. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/cancelRecord.js +54 -0
  102. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/commitChangesFromNestedStore.js +126 -0
  103. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/commitRecord.js +126 -0
  104. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/core_methods.js +73 -0
  105. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/createRecord.js +72 -0
  106. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/dataHashDidChange.js +78 -0
  107. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/dataSourceCallbacks.js +249 -0
  108. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/destroyRecord.js +106 -0
  109. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/init.js +21 -0
  110. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/pushChanges.js +61 -0
  111. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/readDataHash.js +74 -0
  112. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/readEditableDataHash.js +74 -0
  113. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/recordDidChange.js +74 -0
  114. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/removeDataHash.js +144 -0
  115. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/retrieveRecord.js +137 -0
  116. data/frameworks/sproutcore/frameworks/datastore/tests/system/store/writeDataHash.js +130 -0
  117. data/frameworks/sproutcore/frameworks/debug/core.js +61 -0
  118. data/frameworks/sproutcore/frameworks/deprecated/core.js +59 -0
  119. data/frameworks/sproutcore/frameworks/deprecated/lib/button_views.rb +330 -0
  120. data/frameworks/sproutcore/frameworks/deprecated/lib/collection_view.rb +83 -0
  121. data/frameworks/sproutcore/frameworks/deprecated/lib/core_views.rb +326 -0
  122. data/frameworks/sproutcore/frameworks/deprecated/lib/form_views.rb +253 -0
  123. data/frameworks/sproutcore/frameworks/deprecated/lib/index.rhtml +75 -0
  124. data/frameworks/sproutcore/frameworks/deprecated/lib/menu_views.rb +93 -0
  125. data/frameworks/sproutcore/frameworks/deprecated/server/rails_server.js +80 -0
  126. data/frameworks/sproutcore/frameworks/deprecated/server/rest_server.js +178 -0
  127. data/frameworks/sproutcore/frameworks/deprecated/server/server.js +673 -0
  128. data/frameworks/sproutcore/frameworks/deprecated/system/animator.js +679 -0
  129. data/frameworks/sproutcore/frameworks/deprecated/system/binding.js +36 -0
  130. data/frameworks/sproutcore/frameworks/deprecated/system/browser.js +75 -0
  131. data/frameworks/sproutcore/frameworks/deprecated/system/classic_responder.js +312 -0
  132. data/frameworks/sproutcore/frameworks/deprecated/system/event.js +58 -0
  133. data/frameworks/sproutcore/frameworks/deprecated/system/globals.js +20 -0
  134. data/frameworks/sproutcore/frameworks/deprecated/system/misc.js +58 -0
  135. data/frameworks/sproutcore/frameworks/deprecated/system/node_descriptor.js +72 -0
  136. data/frameworks/sproutcore/frameworks/deprecated/system/object.js +122 -0
  137. data/frameworks/sproutcore/frameworks/deprecated/system/path_module.js +432 -0
  138. data/frameworks/sproutcore/frameworks/deprecated/system/string.js +107 -0
  139. data/frameworks/sproutcore/frameworks/deprecated/tests/application/application.rhtml +125 -0
  140. data/frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/clippingFrame.rhtml +401 -0
  141. data/frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/frame.rhtml +357 -0
  142. data/frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/isVisibleInWindow.rhtml +147 -0
  143. data/frameworks/sproutcore/frameworks/deprecated/tests/views/collection/base.rhtml +298 -0
  144. data/frameworks/sproutcore/frameworks/deprecated/tests/views/collection/incremental_rendering.rhtml +260 -0
  145. data/frameworks/sproutcore/frameworks/deprecated/tests/views/collection/source_list_rendering.rhtml +143 -0
  146. data/frameworks/sproutcore/frameworks/deprecated/tests/views/popup_button.rhtml +128 -0
  147. data/frameworks/sproutcore/frameworks/deprecated/tests/views/text_field.rhtml +37 -0
  148. data/frameworks/sproutcore/frameworks/deprecated/views/collection.js +24 -0
  149. data/frameworks/sproutcore/frameworks/designer/coders/design.js +29 -0
  150. data/frameworks/sproutcore/frameworks/designer/coders/localization.js +27 -0
  151. data/frameworks/sproutcore/frameworks/designer/coders/object.js +347 -0
  152. data/frameworks/sproutcore/frameworks/designer/controllers/page_design.js +102 -0
  153. data/frameworks/sproutcore/frameworks/designer/css/css_rule.js +22 -0
  154. data/frameworks/sproutcore/frameworks/designer/css/css_style.js +29 -0
  155. data/frameworks/sproutcore/frameworks/designer/css/css_style_sheet.js +201 -0
  156. data/frameworks/sproutcore/frameworks/designer/ext/page.js +86 -0
  157. data/frameworks/sproutcore/frameworks/designer/ext/view.js +38 -0
  158. data/frameworks/sproutcore/frameworks/designer/views/controls/button.js +17 -0
  159. data/frameworks/sproutcore/frameworks/designer/views/designer.js +569 -0
  160. data/frameworks/sproutcore/frameworks/designer/views/label.js +16 -0
  161. data/frameworks/sproutcore/frameworks/designer/views/mixins/button.js +11 -0
  162. data/frameworks/sproutcore/frameworks/designer/views/tab.js +16 -0
  163. data/frameworks/sproutcore/frameworks/desktop/core.js +6 -0
  164. data/frameworks/sproutcore/frameworks/desktop/debug/drag.js +41 -0
  165. data/frameworks/sproutcore/frameworks/desktop/english.lproj/alert.css +56 -0
  166. data/frameworks/sproutcore/frameworks/desktop/english.lproj/debug/a_sample_image.jpg +0 -0
  167. data/frameworks/sproutcore/frameworks/desktop/english.lproj/debug/apple-logo1.jpeg +0 -0
  168. data/frameworks/sproutcore/frameworks/desktop/english.lproj/debug/iframe.html +23 -0
  169. data/frameworks/sproutcore/frameworks/desktop/english.lproj/disclosure.css +71 -0
  170. data/frameworks/sproutcore/frameworks/desktop/english.lproj/drag.css +6 -0
  171. data/frameworks/sproutcore/frameworks/desktop/english.lproj/icons.css +943 -0
  172. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/mini_222222.png +0 -0
  173. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/mini_454545.png +0 -0
  174. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/mini_888888.png +0 -0
  175. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/mini_ffffff.png +0 -0
  176. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/shared.png +0 -0
  177. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/indicator.gif +0 -0
  178. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/panels/sprite-x.png +0 -0
  179. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/panels/sprite-y.png +0 -0
  180. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/sc-theme-sprite.png +0 -0
  181. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/standard_fade/000000.png +0 -0
  182. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/standard_fade/ffffff.png +0 -0
  183. data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/sticky-note.png +0 -0
  184. data/frameworks/sproutcore/frameworks/desktop/english.lproj/list_item.css +209 -0
  185. data/frameworks/sproutcore/frameworks/desktop/english.lproj/menu_item_view.css +100 -0
  186. data/frameworks/sproutcore/frameworks/desktop/english.lproj/modal.css +5 -0
  187. data/frameworks/sproutcore/frameworks/desktop/english.lproj/panel.css +95 -0
  188. data/frameworks/sproutcore/frameworks/desktop/english.lproj/picker.css +39 -0
  189. data/frameworks/sproutcore/frameworks/desktop/english.lproj/progress.css +31 -0
  190. data/frameworks/sproutcore/frameworks/desktop/english.lproj/radio.css +10 -0
  191. data/frameworks/sproutcore/frameworks/desktop/english.lproj/scroller.css +26 -0
  192. data/frameworks/sproutcore/frameworks/desktop/english.lproj/segmented.css +141 -0
  193. data/frameworks/sproutcore/frameworks/desktop/english.lproj/separator.css +19 -0
  194. data/frameworks/sproutcore/frameworks/desktop/english.lproj/slider.css +62 -0
  195. data/frameworks/sproutcore/frameworks/desktop/english.lproj/split.css +70 -0
  196. data/frameworks/sproutcore/frameworks/desktop/english.lproj/split_divider.css +9 -0
  197. data/frameworks/sproutcore/frameworks/desktop/english.lproj/strings.js +14 -0
  198. data/frameworks/sproutcore/frameworks/desktop/english.lproj/tab.css +12 -0
  199. data/frameworks/sproutcore/frameworks/desktop/english.lproj/toolbar.css +6 -0
  200. data/frameworks/sproutcore/frameworks/desktop/mixins/border.js +53 -0
  201. data/frameworks/sproutcore/frameworks/desktop/mixins/collection_group.js +22 -0
  202. data/frameworks/sproutcore/frameworks/desktop/mixins/collection_row_delegate.js +61 -0
  203. data/frameworks/sproutcore/frameworks/desktop/mixins/collection_view_delegate.js +283 -0
  204. data/frameworks/sproutcore/frameworks/desktop/mixins/scrollable.js +247 -0
  205. data/frameworks/sproutcore/frameworks/desktop/panes/alert.js +408 -0
  206. data/frameworks/sproutcore/frameworks/desktop/panes/menu.js +651 -0
  207. data/frameworks/sproutcore/frameworks/desktop/panes/modal.js +68 -0
  208. data/frameworks/sproutcore/frameworks/desktop/panes/palette.js +63 -0
  209. data/frameworks/sproutcore/frameworks/desktop/panes/panel.js +184 -0
  210. data/frameworks/sproutcore/frameworks/desktop/panes/picker.js +400 -0
  211. data/frameworks/sproutcore/frameworks/desktop/panes/sheet.js +46 -0
  212. data/frameworks/sproutcore/frameworks/desktop/protocols/drag_data_source.js +39 -0
  213. data/frameworks/sproutcore/frameworks/desktop/protocols/drag_source.js +81 -0
  214. data/frameworks/sproutcore/frameworks/desktop/protocols/drop_target.js +175 -0
  215. data/frameworks/sproutcore/frameworks/desktop/protocols/responder.js +280 -0
  216. data/frameworks/sproutcore/frameworks/desktop/system/drag.js +827 -0
  217. data/frameworks/sproutcore/frameworks/desktop/system/key_bindings.js +40 -0
  218. data/frameworks/sproutcore/frameworks/desktop/system/root_responder.js +641 -0
  219. data/frameworks/sproutcore/frameworks/desktop/system/undo_manager.js +187 -0
  220. data/frameworks/sproutcore/frameworks/desktop/tests/integration/dialog.js +43 -0
  221. data/frameworks/sproutcore/frameworks/desktop/tests/panes/alert/methods.js +10 -0
  222. data/frameworks/sproutcore/frameworks/desktop/tests/panes/alert/ui.js +152 -0
  223. data/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/methods.js +55 -0
  224. data/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/ui.js +59 -0
  225. data/frameworks/sproutcore/frameworks/desktop/tests/panes/palette/methods.js +10 -0
  226. data/frameworks/sproutcore/frameworks/desktop/tests/panes/palette/ui.js +35 -0
  227. data/frameworks/sproutcore/frameworks/desktop/tests/panes/panel/methods.js +10 -0
  228. data/frameworks/sproutcore/frameworks/desktop/tests/panes/panel/ui.js +40 -0
  229. data/frameworks/sproutcore/frameworks/desktop/tests/panes/picker/methods.js +10 -0
  230. data/frameworks/sproutcore/frameworks/desktop/tests/panes/picker/ui.js +84 -0
  231. data/frameworks/sproutcore/frameworks/desktop/tests/panes/sheet/methods.js +10 -0
  232. data/frameworks/sproutcore/frameworks/desktop/tests/panes/sheet/ui.js +38 -0
  233. data/frameworks/sproutcore/frameworks/desktop/tests/views/button/methods.js +45 -0
  234. data/frameworks/sproutcore/frameworks/desktop/tests/views/button/ui.js +159 -0
  235. data/frameworks/sproutcore/frameworks/desktop/tests/views/checkbox/methods.js +144 -0
  236. data/frameworks/sproutcore/frameworks/desktop/tests/views/checkbox/ui.js +99 -0
  237. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/content.js +249 -0
  238. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/deleteSelection.js +82 -0
  239. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/deselect.js +199 -0
  240. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/itemViewForContentIndex.js +288 -0
  241. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/layerIdFor.js +65 -0
  242. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/length.js +88 -0
  243. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/mouse.js +165 -0
  244. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/nowShowing.js +121 -0
  245. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/reload.js +177 -0
  246. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/select.js +240 -0
  247. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/selectNextItem.js +191 -0
  248. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/selectPreviousItem.js +197 -0
  249. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/selection.js +141 -0
  250. data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/ui_diagram.js +182 -0
  251. data/frameworks/sproutcore/frameworks/desktop/tests/views/disclosure/methods.js +10 -0
  252. data/frameworks/sproutcore/frameworks/desktop/tests/views/disclosure/ui.js +64 -0
  253. data/frameworks/sproutcore/frameworks/desktop/tests/views/grid/methods.js +10 -0
  254. data/frameworks/sproutcore/frameworks/desktop/tests/views/grid/ui.js +10 -0
  255. data/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowDelegate.js +183 -0
  256. data/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowHeightForContentIndex.js +133 -0
  257. data/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowOffsetForContentIndex.js +132 -0
  258. data/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_outline.js +56 -0
  259. data/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_row_heights.js +167 -0
  260. data/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_simple.js +127 -0
  261. data/frameworks/sproutcore/frameworks/desktop/tests/views/list_item.js +284 -0
  262. data/frameworks/sproutcore/frameworks/desktop/tests/views/menu_item/methods.js +10 -0
  263. data/frameworks/sproutcore/frameworks/desktop/tests/views/menu_item/ui.js +44 -0
  264. data/frameworks/sproutcore/frameworks/desktop/tests/views/progress/methods.js +128 -0
  265. data/frameworks/sproutcore/frameworks/desktop/tests/views/progress/ui.js +240 -0
  266. data/frameworks/sproutcore/frameworks/desktop/tests/views/radio/methods.js +113 -0
  267. data/frameworks/sproutcore/frameworks/desktop/tests/views/radio/ui.js +202 -0
  268. data/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/methods.js +139 -0
  269. data/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/ui.js +111 -0
  270. data/frameworks/sproutcore/frameworks/desktop/tests/views/scroller/methods.js +102 -0
  271. data/frameworks/sproutcore/frameworks/desktop/tests/views/scroller/ui.js +70 -0
  272. data/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/methods.js +95 -0
  273. data/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/ui.js +222 -0
  274. data/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/methods.js +81 -0
  275. data/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/ui.js +100 -0
  276. data/frameworks/sproutcore/frameworks/desktop/tests/views/separator.js +37 -0
  277. data/frameworks/sproutcore/frameworks/desktop/tests/views/source_list/methods.js +10 -0
  278. data/frameworks/sproutcore/frameworks/desktop/tests/views/source_list/ui.js +10 -0
  279. data/frameworks/sproutcore/frameworks/desktop/tests/views/split/methods.js +50 -0
  280. data/frameworks/sproutcore/frameworks/desktop/tests/views/split/ui.js +52 -0
  281. data/frameworks/sproutcore/frameworks/desktop/tests/views/stacked/ui_comments.js +231 -0
  282. data/frameworks/sproutcore/frameworks/desktop/tests/views/tab/methods.js +54 -0
  283. data/frameworks/sproutcore/frameworks/desktop/tests/views/tab/ui.js +88 -0
  284. data/frameworks/sproutcore/frameworks/desktop/tests/views/web/methods.js +10 -0
  285. data/frameworks/sproutcore/frameworks/desktop/tests/views/web/ui.js +110 -0
  286. data/frameworks/sproutcore/frameworks/desktop/views/button.js +331 -0
  287. data/frameworks/sproutcore/frameworks/desktop/views/checkbox.js +105 -0
  288. data/frameworks/sproutcore/frameworks/desktop/views/collection.js +2757 -0
  289. data/frameworks/sproutcore/frameworks/desktop/views/disclosure.js +44 -0
  290. data/frameworks/sproutcore/frameworks/desktop/views/form.js +594 -0
  291. data/frameworks/sproutcore/frameworks/desktop/views/grid.js +201 -0
  292. data/frameworks/sproutcore/frameworks/desktop/views/list.js +540 -0
  293. data/frameworks/sproutcore/frameworks/desktop/views/list_item.js +660 -0
  294. data/frameworks/sproutcore/frameworks/desktop/views/menu_item.js +587 -0
  295. data/frameworks/sproutcore/frameworks/desktop/views/popup_button.js +68 -0
  296. data/frameworks/sproutcore/frameworks/desktop/views/progress.js +207 -0
  297. data/frameworks/sproutcore/frameworks/desktop/views/radio.js +332 -0
  298. data/frameworks/sproutcore/frameworks/desktop/views/scene.js +204 -0
  299. data/frameworks/sproutcore/frameworks/desktop/views/scroll.js +690 -0
  300. data/frameworks/sproutcore/frameworks/desktop/views/scroller.js +226 -0
  301. data/frameworks/sproutcore/frameworks/desktop/views/segmented.js +525 -0
  302. data/frameworks/sproutcore/frameworks/desktop/views/select_field.js +331 -0
  303. data/frameworks/sproutcore/frameworks/desktop/views/separator.js +37 -0
  304. data/frameworks/sproutcore/frameworks/desktop/views/slider.js +180 -0
  305. data/frameworks/sproutcore/frameworks/desktop/views/source_list.js +47 -0
  306. data/frameworks/sproutcore/frameworks/desktop/views/source_list_group.js +169 -0
  307. data/frameworks/sproutcore/frameworks/desktop/views/split.js +677 -0
  308. data/frameworks/sproutcore/frameworks/desktop/views/split_divider.js +55 -0
  309. data/frameworks/sproutcore/frameworks/desktop/views/stacked.js +101 -0
  310. data/frameworks/sproutcore/frameworks/desktop/views/tab.js +191 -0
  311. data/frameworks/sproutcore/frameworks/desktop/views/thumb.js +49 -0
  312. data/frameworks/sproutcore/frameworks/desktop/views/toolbar.js +49 -0
  313. data/frameworks/sproutcore/frameworks/desktop/views/web.js +86 -0
  314. data/frameworks/sproutcore/frameworks/foundation/TESTING +46 -0
  315. data/frameworks/sproutcore/frameworks/foundation/controllers/array.js +509 -0
  316. data/frameworks/sproutcore/frameworks/foundation/controllers/controller.js +45 -0
  317. data/frameworks/sproutcore/frameworks/foundation/controllers/object.js +323 -0
  318. data/frameworks/sproutcore/frameworks/foundation/controllers/tree.js +109 -0
  319. data/frameworks/sproutcore/frameworks/foundation/core.js +136 -0
  320. data/frameworks/sproutcore/frameworks/foundation/debug/control_test_pane.js +194 -0
  321. data/frameworks/sproutcore/frameworks/foundation/english.lproj/blank.gif +0 -0
  322. data/frameworks/sproutcore/frameworks/foundation/english.lproj/bootstrap.rhtml +68 -0
  323. data/frameworks/sproutcore/frameworks/foundation/english.lproj/button_view.css +55 -0
  324. data/frameworks/sproutcore/frameworks/foundation/english.lproj/core.css +221 -0
  325. data/frameworks/sproutcore/frameworks/foundation/english.lproj/debug/control-test-pane.css +9 -0
  326. data/frameworks/sproutcore/frameworks/foundation/english.lproj/images/sproutcore-logo.png +0 -0
  327. data/frameworks/sproutcore/frameworks/foundation/english.lproj/label.css +30 -0
  328. data/frameworks/sproutcore/frameworks/foundation/english.lproj/static_layout.css +5 -0
  329. data/frameworks/sproutcore/frameworks/foundation/english.lproj/strings.js +15 -0
  330. data/frameworks/sproutcore/frameworks/foundation/english.lproj/text_field.css +45 -0
  331. data/frameworks/sproutcore/frameworks/foundation/english.lproj/view.css +45 -0
  332. data/frameworks/sproutcore/frameworks/foundation/ext/object.js +81 -0
  333. data/frameworks/sproutcore/frameworks/foundation/ext/run_loop.js +158 -0
  334. data/frameworks/sproutcore/frameworks/foundation/fixtures/file_exists.json +1 -0
  335. data/frameworks/sproutcore/frameworks/foundation/license.js +19 -0
  336. data/frameworks/sproutcore/frameworks/foundation/mixins/button.js +299 -0
  337. data/frameworks/sproutcore/frameworks/foundation/mixins/collection_content.js +171 -0
  338. data/frameworks/sproutcore/frameworks/foundation/mixins/content_display.js +88 -0
  339. data/frameworks/sproutcore/frameworks/foundation/mixins/control.js +352 -0
  340. data/frameworks/sproutcore/frameworks/foundation/mixins/editable.js +146 -0
  341. data/frameworks/sproutcore/frameworks/foundation/mixins/inline_text_field.js +462 -0
  342. data/frameworks/sproutcore/frameworks/foundation/mixins/selection_support.js +232 -0
  343. data/frameworks/sproutcore/frameworks/foundation/mixins/static_layout.js +132 -0
  344. data/frameworks/sproutcore/frameworks/foundation/mixins/string.js +251 -0
  345. data/frameworks/sproutcore/frameworks/foundation/mixins/tree_item_content.js +159 -0
  346. data/frameworks/sproutcore/frameworks/foundation/mixins/validatable.js +176 -0
  347. data/frameworks/sproutcore/frameworks/foundation/panes/main.js +47 -0
  348. data/frameworks/sproutcore/frameworks/foundation/panes/pane.js +584 -0
  349. data/frameworks/sproutcore/frameworks/foundation/private/tree_item_observer.js +887 -0
  350. data/frameworks/sproutcore/frameworks/foundation/protocols/inline_editor_delegate.js +84 -0
  351. data/frameworks/sproutcore/frameworks/foundation/system/application.js +36 -0
  352. data/frameworks/sproutcore/frameworks/foundation/system/benchmark.js +492 -0
  353. data/frameworks/sproutcore/frameworks/foundation/system/browser.js +64 -0
  354. data/frameworks/sproutcore/frameworks/foundation/system/builder.js +210 -0
  355. data/frameworks/sproutcore/frameworks/foundation/system/core_query.js +2015 -0
  356. data/frameworks/sproutcore/frameworks/foundation/system/cursor.js +129 -0
  357. data/frameworks/sproutcore/frameworks/foundation/system/datetime.js +729 -0
  358. data/frameworks/sproutcore/frameworks/foundation/system/error.js +93 -0
  359. data/frameworks/sproutcore/frameworks/foundation/system/event.js +853 -0
  360. data/frameworks/sproutcore/frameworks/foundation/system/image_cache.js +433 -0
  361. data/frameworks/sproutcore/frameworks/foundation/system/json.js +440 -0
  362. data/frameworks/sproutcore/frameworks/foundation/system/locale.js +288 -0
  363. data/frameworks/sproutcore/frameworks/foundation/system/page.js +106 -0
  364. data/frameworks/sproutcore/frameworks/foundation/system/ready.js +195 -0
  365. data/frameworks/sproutcore/frameworks/foundation/system/render_context.js +904 -0
  366. data/frameworks/sproutcore/frameworks/foundation/system/request.js +380 -0
  367. data/frameworks/sproutcore/frameworks/foundation/system/responder.js +120 -0
  368. data/frameworks/sproutcore/frameworks/foundation/system/responder_context.js +243 -0
  369. data/frameworks/sproutcore/frameworks/foundation/system/root_responder.js +391 -0
  370. data/frameworks/sproutcore/frameworks/foundation/system/routes.js +487 -0
  371. data/frameworks/sproutcore/frameworks/foundation/system/time.js +478 -0
  372. data/frameworks/sproutcore/frameworks/foundation/system/timer.js +549 -0
  373. data/frameworks/sproutcore/frameworks/foundation/system/user_defaults.js +165 -0
  374. data/frameworks/sproutcore/frameworks/foundation/system/utils.js +425 -0
  375. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/array/array_case.js +182 -0
  376. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/array/enum_case.js +193 -0
  377. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/array/null_case.js +64 -0
  378. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/array/single_case.js +136 -0
  379. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/object/empty_case.js +82 -0
  380. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/object/multiple_case.js +111 -0
  381. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/object/single_case.js +193 -0
  382. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/object/single_enumerable_case.js +179 -0
  383. data/frameworks/sproutcore/frameworks/foundation/tests/controllers/tree/outline_case.js +108 -0
  384. data/frameworks/sproutcore/frameworks/foundation/tests/debug/control_test_pane/methods.js +10 -0
  385. data/frameworks/sproutcore/frameworks/foundation/tests/debug/control_test_pane/ui.js +113 -0
  386. data/frameworks/sproutcore/frameworks/foundation/tests/integration/creating_views.js +113 -0
  387. data/frameworks/sproutcore/frameworks/foundation/tests/mixins/button/content.js +195 -0
  388. data/frameworks/sproutcore/frameworks/foundation/tests/mixins/button/displayProperties.js +89 -0
  389. data/frameworks/sproutcore/frameworks/foundation/tests/mixins/button/keyEquivalents.js +35 -0
  390. data/frameworks/sproutcore/frameworks/foundation/tests/mixins/control/content.js +168 -0
  391. data/frameworks/sproutcore/frameworks/foundation/tests/mixins/control/displayProperties.js +89 -0
  392. data/frameworks/sproutcore/frameworks/foundation/tests/mixins/staticLayout.js +128 -0
  393. data/frameworks/sproutcore/frameworks/foundation/tests/mixins/string.js +17 -0
  394. data/frameworks/sproutcore/frameworks/foundation/tests/private/tree_item_observer/flat_case.js +325 -0
  395. data/frameworks/sproutcore/frameworks/foundation/tests/private/tree_item_observer/group_case.js +718 -0
  396. data/frameworks/sproutcore/frameworks/foundation/tests/private/tree_item_observer/outline_case.js +484 -0
  397. data/frameworks/sproutcore/frameworks/foundation/tests/system/builder.js +42 -0
  398. data/frameworks/sproutcore/frameworks/foundation/tests/system/core_query/jquery_core.js +1323 -0
  399. data/frameworks/sproutcore/frameworks/foundation/tests/system/core_query/jquery_dimensions.js +387 -0
  400. data/frameworks/sproutcore/frameworks/foundation/tests/system/core_query/jquery_selector.js +405 -0
  401. data/frameworks/sproutcore/frameworks/foundation/tests/system/core_query/setClass.js +49 -0
  402. data/frameworks/sproutcore/frameworks/foundation/tests/system/core_query/within.js +66 -0
  403. data/frameworks/sproutcore/frameworks/foundation/tests/system/datetime.js +151 -0
  404. data/frameworks/sproutcore/frameworks/foundation/tests/system/error.js +41 -0
  405. data/frameworks/sproutcore/frameworks/foundation/tests/system/json.js +14 -0
  406. data/frameworks/sproutcore/frameworks/foundation/tests/system/locale.js +128 -0
  407. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/begin.js +47 -0
  408. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/element.js +44 -0
  409. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/end.js +119 -0
  410. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/get.js +51 -0
  411. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/helpers_attr.js +50 -0
  412. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/helpers_basic.js +28 -0
  413. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/helpers_className.js +179 -0
  414. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/helpers_style.js +100 -0
  415. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/init.js +55 -0
  416. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/join.js +28 -0
  417. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/push_text.js +74 -0
  418. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js +45 -0
  419. data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/update.js +205 -0
  420. data/frameworks/sproutcore/frameworks/foundation/tests/system/request.js +127 -0
  421. data/frameworks/sproutcore/frameworks/foundation/tests/system/root_responder/makeKeyPane.js +124 -0
  422. data/frameworks/sproutcore/frameworks/foundation/tests/system/root_responder/makeMainPane.js +68 -0
  423. data/frameworks/sproutcore/frameworks/foundation/tests/system/root_responder/root_responder.js +101 -0
  424. data/frameworks/sproutcore/frameworks/foundation/tests/system/root_responder/targetForAction.js +238 -0
  425. data/frameworks/sproutcore/frameworks/foundation/tests/system/routes.js +33 -0
  426. data/frameworks/sproutcore/frameworks/foundation/tests/system/timer/invalidate.js +38 -0
  427. data/frameworks/sproutcore/frameworks/foundation/tests/system/timer/invokeLater.js +201 -0
  428. data/frameworks/sproutcore/frameworks/foundation/tests/system/timer/isPaused.js +71 -0
  429. data/frameworks/sproutcore/frameworks/foundation/tests/system/timer/performAction.js +67 -0
  430. data/frameworks/sproutcore/frameworks/foundation/tests/system/timer/schedule.js +170 -0
  431. data/frameworks/sproutcore/frameworks/foundation/tests/system/user_defaults.js +27 -0
  432. data/frameworks/sproutcore/frameworks/foundation/tests/system/utils/normalizeURL.js +18 -0
  433. data/frameworks/sproutcore/frameworks/foundation/tests/system/utils/range.js +62 -0
  434. data/frameworks/sproutcore/frameworks/foundation/tests/validators/credit_card.js +35 -0
  435. data/frameworks/sproutcore/frameworks/foundation/tests/validators/date.js +23 -0
  436. data/frameworks/sproutcore/frameworks/foundation/tests/validators/number.js +47 -0
  437. data/frameworks/sproutcore/frameworks/foundation/tests/validators/password.js +13 -0
  438. data/frameworks/sproutcore/frameworks/foundation/tests/views/container/methods.js +10 -0
  439. data/frameworks/sproutcore/frameworks/foundation/tests/views/container/ui.js +83 -0
  440. data/frameworks/sproutcore/frameworks/foundation/tests/views/image/ui.js +39 -0
  441. data/frameworks/sproutcore/frameworks/foundation/tests/views/label/ui.js +148 -0
  442. data/frameworks/sproutcore/frameworks/foundation/tests/views/main_pane.js +31 -0
  443. data/frameworks/sproutcore/frameworks/foundation/tests/views/pane/append_remove.js +89 -0
  444. data/frameworks/sproutcore/frameworks/foundation/tests/views/pane/firstResponder.js +148 -0
  445. data/frameworks/sproutcore/frameworks/foundation/tests/views/pane/keyPane.js +133 -0
  446. data/frameworks/sproutcore/frameworks/foundation/tests/views/pane/sendEvent.js +165 -0
  447. data/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/methods.js +76 -0
  448. data/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/ui.js +250 -0
  449. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/clippingFrame.js +133 -0
  450. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/convertFrames.js +246 -0
  451. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/createChildViews.js +122 -0
  452. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/createLayer.js +97 -0
  453. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/destroyLayer.js +85 -0
  454. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/findLayerInParentLayer.js +52 -0
  455. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/init.js +50 -0
  456. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/insertBefore.js +200 -0
  457. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/isVisible.js +51 -0
  458. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/isVisibleInWindow.js +113 -0
  459. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/layer.js +150 -0
  460. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/layoutChildViews.js +162 -0
  461. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/layoutDidChange.js +127 -0
  462. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/layoutStyle.js +328 -0
  463. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/parentViewDidChange.js +67 -0
  464. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/prepareContext.js +166 -0
  465. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/removeChild.js +189 -0
  466. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/render.js +83 -0
  467. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/replaceChild.js +29 -0
  468. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/updateLayer.js +146 -0
  469. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/updateLayerLocation.js +194 -0
  470. data/frameworks/sproutcore/frameworks/foundation/tests/views/view/viewDidResize.js +185 -0
  471. data/frameworks/sproutcore/frameworks/foundation/validators/credit_card.js +125 -0
  472. data/frameworks/sproutcore/frameworks/foundation/validators/date.js +52 -0
  473. data/frameworks/sproutcore/frameworks/foundation/validators/email.js +45 -0
  474. data/frameworks/sproutcore/frameworks/foundation/validators/not_empty.js +33 -0
  475. data/frameworks/sproutcore/frameworks/foundation/validators/number.js +82 -0
  476. data/frameworks/sproutcore/frameworks/foundation/validators/password.js +86 -0
  477. data/frameworks/sproutcore/frameworks/foundation/validators/validator.js +311 -0
  478. data/frameworks/sproutcore/frameworks/foundation/views/container.js +136 -0
  479. data/frameworks/sproutcore/frameworks/foundation/views/field.js +287 -0
  480. data/frameworks/sproutcore/frameworks/foundation/views/image.js +161 -0
  481. data/frameworks/sproutcore/frameworks/foundation/views/label.js +271 -0
  482. data/frameworks/sproutcore/frameworks/foundation/views/text_field.js +257 -0
  483. data/frameworks/sproutcore/frameworks/foundation/views/view.js +2405 -0
  484. data/frameworks/sproutcore/frameworks/mobile/english.lproj/core.css +12 -0
  485. data/frameworks/sproutcore/frameworks/mobile/lib/index.rhtml +126 -0
  486. data/frameworks/sproutcore/frameworks/mobile/system/root_responder.js +109 -0
  487. data/frameworks/sproutcore/frameworks/mobile/tests/views/button/ui.js +9 -0
  488. data/frameworks/sproutcore/frameworks/mobile/views/button.js +190 -0
  489. data/frameworks/sproutcore/frameworks/runtime/README +12 -0
  490. data/frameworks/sproutcore/frameworks/runtime/core.js +856 -0
  491. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/base.js +238 -0
  492. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/indexOf.js +33 -0
  493. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/insertAt.js +121 -0
  494. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/objectAt.js +34 -0
  495. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/popObject.js +50 -0
  496. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/pushObject.js +46 -0
  497. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/rangeObserver.js +371 -0
  498. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/removeAt.js +100 -0
  499. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/removeObject.js +49 -0
  500. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/replace.js +94 -0
  501. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/shiftObject.js +50 -0
  502. data/frameworks/sproutcore/frameworks/runtime/debug/test_suites/array/unshiftObject.js +47 -0
  503. data/frameworks/sproutcore/frameworks/runtime/license.js +28 -0
  504. data/frameworks/sproutcore/frameworks/runtime/mixins/array.js +613 -0
  505. data/frameworks/sproutcore/frameworks/runtime/mixins/copyable.js +64 -0
  506. data/frameworks/sproutcore/frameworks/runtime/mixins/delegate_support.js +108 -0
  507. data/frameworks/sproutcore/frameworks/runtime/mixins/enumerable.js +1258 -0
  508. data/frameworks/sproutcore/frameworks/runtime/mixins/freezable.js +104 -0
  509. data/frameworks/sproutcore/frameworks/runtime/mixins/observable.js +1305 -0
  510. data/frameworks/sproutcore/frameworks/runtime/private/chain_observer.js +141 -0
  511. data/frameworks/sproutcore/frameworks/runtime/private/observer_queue.js +148 -0
  512. data/frameworks/sproutcore/frameworks/runtime/private/observer_set.js +152 -0
  513. data/frameworks/sproutcore/frameworks/runtime/protocols/observable_protocol.js +40 -0
  514. data/frameworks/sproutcore/frameworks/runtime/protocols/sparse_array_delegate.js +131 -0
  515. data/frameworks/sproutcore/frameworks/runtime/system/binding.js +915 -0
  516. data/frameworks/sproutcore/frameworks/runtime/system/enumerator.js +107 -0
  517. data/frameworks/sproutcore/frameworks/runtime/system/index_set.js +1166 -0
  518. data/frameworks/sproutcore/frameworks/runtime/system/object.js +801 -0
  519. data/frameworks/sproutcore/frameworks/runtime/system/range_observer.js +265 -0
  520. data/frameworks/sproutcore/frameworks/runtime/system/run_loop.js +241 -0
  521. data/frameworks/sproutcore/frameworks/runtime/system/selection_set.js +649 -0
  522. data/frameworks/sproutcore/frameworks/runtime/system/set.js +375 -0
  523. data/frameworks/sproutcore/frameworks/runtime/system/sparse_array.js +295 -0
  524. data/frameworks/sproutcore/frameworks/runtime/tests/core/IsEqual.js +56 -0
  525. data/frameworks/sproutcore/frameworks/runtime/tests/core/beget.js +23 -0
  526. data/frameworks/sproutcore/frameworks/runtime/tests/core/clone.js +66 -0
  527. data/frameworks/sproutcore/frameworks/runtime/tests/core/compare.js +44 -0
  528. data/frameworks/sproutcore/frameworks/runtime/tests/core/console.js +16 -0
  529. data/frameworks/sproutcore/frameworks/runtime/tests/core/guidFor.js +147 -0
  530. data/frameworks/sproutcore/frameworks/runtime/tests/core/isArray.js +25 -0
  531. data/frameworks/sproutcore/frameworks/runtime/tests/core/itemType.js +38 -0
  532. data/frameworks/sproutcore/frameworks/runtime/tests/core/keys.js +20 -0
  533. data/frameworks/sproutcore/frameworks/runtime/tests/core/makeArray.js +30 -0
  534. data/frameworks/sproutcore/frameworks/runtime/tests/core/objectForPropertyPath.js +19 -0
  535. data/frameworks/sproutcore/frameworks/runtime/tests/core/tupleForPropertyPath.js +37 -0
  536. data/frameworks/sproutcore/frameworks/runtime/tests/mixins/array.js +57 -0
  537. data/frameworks/sproutcore/frameworks/runtime/tests/mixins/enumerable.js +611 -0
  538. data/frameworks/sproutcore/frameworks/runtime/tests/mixins/observable/observable.js +587 -0
  539. data/frameworks/sproutcore/frameworks/runtime/tests/mixins/observable/propertyChanges.js +132 -0
  540. data/frameworks/sproutcore/frameworks/runtime/tests/mixins/observable/registerDependentKeys.js +79 -0
  541. data/frameworks/sproutcore/frameworks/runtime/tests/mixins/propertyChanges.js +80 -0
  542. data/frameworks/sproutcore/frameworks/runtime/tests/private/observer_queue/isObservingSuspended.js +55 -0
  543. data/frameworks/sproutcore/frameworks/runtime/tests/system/binding.js +265 -0
  544. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/add.js +195 -0
  545. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/clone.js +43 -0
  546. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/contains.js +74 -0
  547. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/create.js +42 -0
  548. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/indexAfter.js +38 -0
  549. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/indexBefore.js +38 -0
  550. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/intersects.js +74 -0
  551. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/max.js +40 -0
  552. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/min.js +40 -0
  553. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/rangeStartForIndex.js +36 -0
  554. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/remove.js +189 -0
  555. data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/without.js +89 -0
  556. data/frameworks/sproutcore/frameworks/runtime/tests/system/object/base.js +135 -0
  557. data/frameworks/sproutcore/frameworks/runtime/tests/system/object/bindings.js +339 -0
  558. data/frameworks/sproutcore/frameworks/runtime/tests/system/range_observer/create.js +59 -0
  559. data/frameworks/sproutcore/frameworks/runtime/tests/system/range_observer/destroy.js +75 -0
  560. data/frameworks/sproutcore/frameworks/runtime/tests/system/range_observer/objectPropertyDidChange.js +117 -0
  561. data/frameworks/sproutcore/frameworks/runtime/tests/system/range_observer/rangeDidChange.js +110 -0
  562. data/frameworks/sproutcore/frameworks/runtime/tests/system/range_observer/update.js +65 -0
  563. data/frameworks/sproutcore/frameworks/runtime/tests/system/run_loop.js +120 -0
  564. data/frameworks/sproutcore/frameworks/runtime/tests/system/selection_set/add.js +92 -0
  565. data/frameworks/sproutcore/frameworks/runtime/tests/system/selection_set/copy.js +17 -0
  566. data/frameworks/sproutcore/frameworks/runtime/tests/system/selection_set/indexSetForSource.js +85 -0
  567. data/frameworks/sproutcore/frameworks/runtime/tests/system/selection_set/isEqual.js +60 -0
  568. data/frameworks/sproutcore/frameworks/runtime/tests/system/selection_set/remove.js +87 -0
  569. data/frameworks/sproutcore/frameworks/runtime/tests/system/set.js +292 -0
  570. data/frameworks/sproutcore/frameworks/runtime/tests/system/sparse_array.js +122 -0
  571. data/frameworks/sproutcore/frameworks/testing/core.js +196 -0
  572. data/frameworks/sproutcore/frameworks/testing/english.lproj/additions.css +8 -0
  573. data/frameworks/sproutcore/frameworks/testing/english.lproj/runner.css +126 -0
  574. data/frameworks/sproutcore/frameworks/testing/english.lproj/testsuite.css +131 -0
  575. data/frameworks/sproutcore/frameworks/testing/extras.js +17 -0
  576. data/frameworks/sproutcore/frameworks/testing/jquery.js +3559 -0
  577. data/frameworks/sproutcore/frameworks/testing/qunit.js +827 -0
  578. data/frameworks/sproutcore/frameworks/testing/system/dump.js +205 -0
  579. data/frameworks/sproutcore/frameworks/testing/system/equiv.js +201 -0
  580. data/frameworks/sproutcore/frameworks/testing/system/plan.js +691 -0
  581. data/frameworks/sproutcore/frameworks/testing/system/runner.js +209 -0
  582. data/frameworks/sproutcore/frameworks/testing/system/suite.js +228 -0
  583. data/frameworks/sproutcore/frameworks/testing/utils.js +62 -0
  584. data/frameworks/sproutcore/lib/index.rhtml +121 -0
  585. data/frameworks/sproutcore/license.js +28 -0
  586. data/frameworks/sproutcore/themes/empty_theme/tests/mini_icons.rhtml +69 -0
  587. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/button.css +41 -0
  588. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/core.css +8 -0
  589. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/backButton.png +0 -0
  590. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/blueButton.png +0 -0
  591. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/cancel.png +0 -0
  592. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/grayButton.png +0 -0
  593. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/leftButton.png +0 -0
  594. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/listArrow.png +0 -0
  595. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/listArrowSel.png +0 -0
  596. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/listGroup.png +0 -0
  597. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/loading.gif +0 -0
  598. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/pinstripes.png +0 -0
  599. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/rightButton.png +0 -0
  600. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/selection.png +0 -0
  601. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/thumb.png +0 -0
  602. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/toggle.png +0 -0
  603. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/toggleOn.png +0 -0
  604. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/toolButton.png +0 -0
  605. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/toolbar.png +0 -0
  606. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/images/whiteButton.png +0 -0
  607. data/frameworks/sproutcore/themes/iphone_theme/english.lproj/strings.js +15 -0
  608. data/frameworks/sproutcore/themes/standard_theme/english.lproj/button.css +331 -0
  609. data/frameworks/sproutcore/themes/standard_theme/english.lproj/checkbox.css +91 -0
  610. data/frameworks/sproutcore/themes/standard_theme/english.lproj/collection.css +134 -0
  611. data/frameworks/sproutcore/themes/standard_theme/english.lproj/core.css +60 -0
  612. data/frameworks/sproutcore/themes/standard_theme/english.lproj/disclosure.css +55 -0
  613. data/frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-repeat-x.png +0 -0
  614. data/frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-sprite.png +0 -0
  615. data/frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-ysprite.png +0 -0
  616. data/frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-toolbar-view.png +0 -0
  617. data/frameworks/sproutcore/themes/standard_theme/english.lproj/label.css +11 -0
  618. data/frameworks/sproutcore/themes/standard_theme/english.lproj/list_item.css +30 -0
  619. data/frameworks/sproutcore/themes/standard_theme/english.lproj/pane.css +8 -0
  620. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/background-fat.jpg +0 -0
  621. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/background-thin.jpg +0 -0
  622. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-edge.png +0 -0
  623. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-left-corner.png +0 -0
  624. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-right-corner.png +0 -0
  625. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/left-edge.png +0 -0
  626. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/overlay.png +0 -0
  627. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/right-edge.png +0 -0
  628. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-edge.png +0 -0
  629. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-left-corner.png +0 -0
  630. data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-right-corner.png +0 -0
  631. data/frameworks/sproutcore/themes/standard_theme/english.lproj/progress.css +26 -0
  632. data/frameworks/sproutcore/themes/standard_theme/english.lproj/radio.css +122 -0
  633. data/frameworks/sproutcore/themes/standard_theme/english.lproj/segmented.css +279 -0
  634. data/frameworks/sproutcore/themes/standard_theme/english.lproj/slider.css +94 -0
  635. data/frameworks/sproutcore/themes/standard_theme/english.lproj/split_view.css +27 -0
  636. data/frameworks/sproutcore/themes/standard_theme/english.lproj/tab.css +18 -0
  637. data/frameworks/sproutcore/themes/standard_theme/english.lproj/text_field.css +10 -0
  638. data/frameworks/sproutcore/themes/standard_theme/english.lproj/toolbar.css +7 -0
  639. data/lib/sproutcore.rb +9 -1
  640. data/lib/sproutcore/tools/build.rb +1 -1
  641. data/lib/thor/CHANGELOG.rdoc +52 -0
  642. data/lib/thor/LICENSE +20 -0
  643. data/lib/thor/README.markdown +76 -0
  644. data/lib/thor/Rakefile +6 -0
  645. data/lib/thor/Thorfile +45 -0
  646. data/lib/thor/bin/rake2thor +83 -0
  647. data/lib/thor/bin/thor +7 -0
  648. data/lib/thor/lib/thor.rb +170 -0
  649. data/lib/thor/lib/thor/error.rb +3 -0
  650. data/lib/thor/lib/thor/options.rb +267 -0
  651. data/lib/thor/lib/thor/ordered_hash.rb +64 -0
  652. data/lib/thor/lib/thor/runner.rb +305 -0
  653. data/lib/thor/lib/thor/task.rb +83 -0
  654. data/lib/thor/lib/thor/task_hash.rb +22 -0
  655. data/lib/thor/lib/thor/tasks.rb +77 -0
  656. data/lib/thor/lib/thor/tasks/package.rb +18 -0
  657. data/lib/thor/lib/thor/util.rb +75 -0
  658. data/lib/thor/script/destroy +14 -0
  659. data/lib/thor/script/generate +14 -0
  660. data/lib/thor/task.thor +15 -0
  661. metadata +664 -351
  662. data/VERSION +0 -1
  663. data/spec/buildtasks/build/copy_spec.rb +0 -60
  664. data/spec/buildtasks/build/spec_helper.rb +0 -36
  665. data/spec/buildtasks/manifest/catalog_spec.rb +0 -48
  666. data/spec/buildtasks/manifest/hide_buildfiles_spec.rb +0 -125
  667. data/spec/buildtasks/manifest/localize_spec.rb +0 -97
  668. data/spec/buildtasks/manifest/prepare_build_tasks/combine_spec.rb +0 -246
  669. data/spec/buildtasks/manifest/prepare_build_tasks/css_spec.rb +0 -87
  670. data/spec/buildtasks/manifest/prepare_build_tasks/html_spec.rb +0 -175
  671. data/spec/buildtasks/manifest/prepare_build_tasks/javascript_spec.rb +0 -65
  672. data/spec/buildtasks/manifest/prepare_build_tasks/minify_spec.rb +0 -70
  673. data/spec/buildtasks/manifest/prepare_build_tasks/packed_spec.rb +0 -152
  674. data/spec/buildtasks/manifest/prepare_build_tasks/sass_spec.rb +0 -98
  675. data/spec/buildtasks/manifest/prepare_build_tasks/strings_spec.rb +0 -64
  676. data/spec/buildtasks/manifest/prepare_build_tasks/tests_spec.rb +0 -163
  677. data/spec/buildtasks/manifest/prepare_spec.rb +0 -43
  678. data/spec/buildtasks/manifest/spec_helper.rb +0 -35
  679. data/spec/buildtasks/target_spec.rb +0 -214
  680. data/spec/fixtures/builder_tests/Buildfile +0 -15
  681. data/spec/fixtures/builder_tests/apps/combine_test/a.js +0 -1
  682. data/spec/fixtures/builder_tests/apps/combine_test/b.js +0 -1
  683. data/spec/fixtures/builder_tests/apps/combine_test/c.js +0 -1
  684. data/spec/fixtures/builder_tests/apps/combine_test/english.lproj/a.css +0 -1
  685. data/spec/fixtures/builder_tests/apps/combine_test/english.lproj/b.css +0 -1
  686. data/spec/fixtures/builder_tests/apps/combine_test/english.lproj/c.css +0 -1
  687. data/spec/fixtures/builder_tests/apps/html_test/english.lproj/bar1_sample.rhtml +0 -2
  688. data/spec/fixtures/builder_tests/apps/html_test/english.lproj/erb_sample.html.erb +0 -1
  689. data/spec/fixtures/builder_tests/apps/html_test/english.lproj/icons/image.png +0 -0
  690. data/spec/fixtures/builder_tests/apps/html_test/english.lproj/image.jpg +0 -0
  691. data/spec/fixtures/builder_tests/apps/html_test/english.lproj/rhtml_sample.rhtml +0 -1
  692. data/spec/fixtures/builder_tests/apps/html_test/english.lproj/strings.js +0 -4
  693. data/spec/fixtures/builder_tests/apps/html_test/english.lproj/style.css +0 -0
  694. data/spec/fixtures/builder_tests/apps/html_test/french.lproj/french-icons/fr.png +0 -0
  695. data/spec/fixtures/builder_tests/apps/html_test/french.lproj/strings.js +0 -4
  696. data/spec/fixtures/builder_tests/apps/html_test/lib/layout_template.rhtml +0 -1
  697. data/spec/fixtures/builder_tests/apps/html_test/scripts.js +0 -0
  698. data/spec/fixtures/builder_tests/apps/javascript_test/sc_static.js +0 -15
  699. data/spec/fixtures/builder_tests/apps/javascript_test/sc_super.js +0 -4
  700. data/spec/fixtures/builder_tests/apps/javascript_test/strings.js +0 -7
  701. data/spec/fixtures/builder_tests/apps/sass_test/sample.sass +0 -3
  702. data/spec/fixtures/builder_tests/apps/strings_test/lproj/strings.js +0 -8
  703. data/spec/fixtures/builder_tests/apps/stylesheet_test/build_directives.css +0 -9
  704. data/spec/fixtures/builder_tests/apps/stylesheet_test/sc_static.css +0 -12
  705. data/spec/fixtures/builder_tests/apps/test_test/lib/alt_layout.rhtml +0 -1
  706. data/spec/fixtures/builder_tests/apps/test_test/lib/test_layout.rhtml +0 -3
  707. data/spec/fixtures/builder_tests/apps/test_test/tests/qunit_test.js +0 -1
  708. data/spec/fixtures/builder_tests/apps/test_test/tests/qunit_test2.js +0 -1
  709. data/spec/fixtures/builder_tests/apps/test_test/tests/rhtml_test.rhtml +0 -4
  710. data/spec/fixtures/builder_tests/frameworks/debug/core.js +0 -0
  711. data/spec/fixtures/builder_tests/frameworks/debug/english.lproj/dummy.css +0 -0
  712. data/spec/fixtures/builder_tests/frameworks/qunit/core.js +0 -0
  713. data/spec/fixtures/builder_tests/frameworks/qunit/english.lproj/dummy.css +0 -0
  714. data/spec/fixtures/builder_tests/frameworks/req_target_1/english.lproj/req_style_1.css +0 -0
  715. data/spec/fixtures/builder_tests/frameworks/req_target_1/english.lproj/strings.js +0 -4
  716. data/spec/fixtures/builder_tests/frameworks/req_target_1/english.lproj/test.rhtml +0 -1
  717. data/spec/fixtures/builder_tests/frameworks/req_target_1/req_js_1.js +0 -0
  718. data/spec/fixtures/builder_tests/frameworks/req_target_2/english.lproj/req_style_2.css +0 -0
  719. data/spec/fixtures/builder_tests/frameworks/req_target_2/english.lproj/test.rhtml +0 -1
  720. data/spec/fixtures/builder_tests/frameworks/req_target_2/javascript.js +0 -1
  721. data/spec/fixtures/builder_tests/frameworks/req_target_2/lib/alt_layout.rhtml +0 -0
  722. data/spec/fixtures/builder_tests/frameworks/req_target_2/req_js_2.js +0 -0
  723. data/spec/fixtures/builder_tests/themes/sample_theme/Buildfile +0 -1
  724. data/spec/fixtures/buildfiles/basic/Buildfile +0 -16
  725. data/spec/fixtures/buildfiles/basic/task_module.rake +0 -6
  726. data/spec/fixtures/buildfiles/installed/Buildfile +0 -7
  727. data/spec/fixtures/buildfiles/installed/Buildfile2 +0 -5
  728. data/spec/fixtures/buildfiles/project_test/Buildfile +0 -4
  729. data/spec/fixtures/buildfiles/project_test/not_project/Buildfile +0 -2
  730. data/spec/fixtures/buildfiles/project_test/not_project/child/PLACEHOLDER +0 -0
  731. data/spec/fixtures/entry_for_project/Buildfile +0 -1
  732. data/spec/fixtures/entry_for_project/apps/test_app/entry.txt +0 -0
  733. data/spec/fixtures/entry_for_project/apps/test_app/frameworks/nested/PLACEHOLDER +0 -0
  734. data/spec/fixtures/entry_for_project/frameworks/shared/PLACEHOLDER +0 -0
  735. data/spec/fixtures/find_targets/custom/Buildfile +0 -8
  736. data/spec/fixtures/find_targets/custom/bars/bar1/bars/bar1/PLACEHOLDER +0 -0
  737. data/spec/fixtures/find_targets/custom/bars/bar1/bars/bar2/PLACEHOLDER +0 -0
  738. data/spec/fixtures/find_targets/custom/bars/bar1/foos/foo1/PLACEHOLDER +0 -0
  739. data/spec/fixtures/find_targets/custom/bars/bar1/foos/foo2/PLACEHOLDER +0 -0
  740. data/spec/fixtures/find_targets/custom/foos/custom_foos/Buildfile +0 -5
  741. data/spec/fixtures/find_targets/custom/foos/custom_foos/custom_foodir/foo1/PLACEHOLDER +0 -0
  742. data/spec/fixtures/find_targets/custom/foos/custom_foos/custom_foodir/foo2/PLACEHOLDER +0 -0
  743. data/spec/fixtures/find_targets/custom/foos/custom_foos/foos/not_foo1/PLACEHOLDER +0 -0
  744. data/spec/fixtures/find_targets/custom/foos/foo1/bars/bar1/PLACEHOLDER +0 -0
  745. data/spec/fixtures/find_targets/custom/foos/foo1/bars/bar2/PLACEHOLDER +0 -0
  746. data/spec/fixtures/find_targets/nested/Buildfile +0 -8
  747. data/spec/fixtures/find_targets/nested/apps/app1/Buildfile +0 -1
  748. data/spec/fixtures/find_targets/nested/apps/app1/apps/nested_app/PLACEHOLDER +0 -0
  749. data/spec/fixtures/find_targets/standard/Apps/app1/frameworks/framework1/PLACEHOLDER +0 -0
  750. data/spec/fixtures/find_targets/standard/Apps/app1/frameworks/framework2/PLACEHOLDER +0 -0
  751. data/spec/fixtures/find_targets/standard/clients/client1/PLACEHOLDER +0 -0
  752. data/spec/fixtures/find_targets/standard/frameworks/framework1/frameworks/framework1/PLACEHOLDER +0 -0
  753. data/spec/fixtures/find_targets/standard/frameworks/framework2/PLACEHOLDER +0 -0
  754. data/spec/fixtures/find_targets/standard/themes/theme1/PLACEHOLDER +0 -0
  755. data/spec/fixtures/find_targets/standard/themes/theme2/PLACEHOLDER +0 -0
  756. data/spec/fixtures/languages/apps/caps_long_names/English.lproj/PLACEHOLDER +0 -0
  757. data/spec/fixtures/languages/apps/caps_long_names/FreNCH.lproj/PLACEHOLDER +0 -0
  758. data/spec/fixtures/languages/apps/caps_long_names/UnknOWN.lproj/PLACEHOLDER +0 -0
  759. data/spec/fixtures/languages/apps/long_names/english.lproj/PLACEHOLDER +0 -0
  760. data/spec/fixtures/languages/apps/long_names/french.lproj/PLACEHOLDER +0 -0
  761. data/spec/fixtures/languages/apps/long_names/german.lproj/PLACEHOLDER +0 -0
  762. data/spec/fixtures/languages/apps/long_names/italian.lproj/PLACEHOLDER +0 -0
  763. data/spec/fixtures/languages/apps/long_names/japanese.lproj/PLACEHOLDER +0 -0
  764. data/spec/fixtures/languages/apps/long_names/spanish.lproj/PLACEHOLDER +0 -0
  765. data/spec/fixtures/languages/apps/long_names/unknown.lproj/PLACEHOLDER +0 -0
  766. data/spec/fixtures/languages/apps/no_names/PLACEHOLDER +0 -0
  767. data/spec/fixtures/languages/apps/short_names/de.lproj/PLACEHOLDER +0 -0
  768. data/spec/fixtures/languages/apps/short_names/en-CA.lproj/PLACEHOLDER +0 -0
  769. data/spec/fixtures/languages/apps/short_names/en-GB.lproj/PLACEHOLDER +0 -0
  770. data/spec/fixtures/languages/apps/short_names/en-US.lproj/PLACEHOLDER +0 -0
  771. data/spec/fixtures/languages/apps/short_names/en.lproj/PLACEHOLDER +0 -0
  772. data/spec/fixtures/languages/apps/short_names/es.lproj/PLACEHOLDER +0 -0
  773. data/spec/fixtures/languages/apps/short_names/foo.lproj/PLACEHOLDER +0 -0
  774. data/spec/fixtures/languages/apps/short_names/fr.lproj/PLACEHOLDER +0 -0
  775. data/spec/fixtures/languages/apps/short_names/it.lproj/PLACEHOLDER +0 -0
  776. data/spec/fixtures/languages/apps/short_names/ja.lproj/PLACEHOLDER +0 -0
  777. data/spec/fixtures/ordered_entries/apps/no_requires/1.js +0 -1
  778. data/spec/fixtures/ordered_entries/apps/no_requires/B.js +0 -1
  779. data/spec/fixtures/ordered_entries/apps/no_requires/a.js +0 -1
  780. data/spec/fixtures/ordered_entries/apps/no_requires/a/a.js +0 -1
  781. data/spec/fixtures/ordered_entries/apps/no_requires/a/b.js +0 -1
  782. data/spec/fixtures/ordered_entries/apps/no_requires/b/a.js +0 -1
  783. data/spec/fixtures/ordered_entries/apps/no_requires/c.js +0 -1
  784. data/spec/fixtures/ordered_entries/apps/no_requires/core.js +0 -1
  785. data/spec/fixtures/ordered_entries/apps/no_requires/english.lproj/B.css +0 -0
  786. data/spec/fixtures/ordered_entries/apps/no_requires/english.lproj/a.css +0 -0
  787. data/spec/fixtures/ordered_entries/apps/no_requires/english.lproj/a/a.css +0 -0
  788. data/spec/fixtures/ordered_entries/apps/no_requires/english.lproj/a/b.css +0 -0
  789. data/spec/fixtures/ordered_entries/apps/no_requires/english.lproj/b/a.css +0 -0
  790. data/spec/fixtures/ordered_entries/apps/no_requires/english.lproj/c.css +0 -0
  791. data/spec/fixtures/ordered_entries/apps/no_requires/lproj/strings.js +0 -1
  792. data/spec/fixtures/ordered_entries/apps/no_requires/utils.js +0 -1
  793. data/spec/fixtures/ordered_entries/apps/with_requires/a.js +0 -2
  794. data/spec/fixtures/ordered_entries/apps/with_requires/b.js +0 -3
  795. data/spec/fixtures/ordered_entries/apps/with_requires/c.js +0 -2
  796. data/spec/fixtures/ordered_entries/apps/with_requires/english.lproj/a.css +0 -2
  797. data/spec/fixtures/ordered_entries/apps/with_requires/english.lproj/b.css +0 -2
  798. data/spec/fixtures/ordered_entries/apps/with_requires/english.lproj/c.css +0 -2
  799. data/spec/fixtures/ordered_entries/apps/with_requires/english.lproj/d.js +0 -1
  800. data/spec/fixtures/real_world/Buildfile +0 -12
  801. data/spec/fixtures/real_world/apps/account/README +0 -1
  802. data/spec/fixtures/real_world/apps/calendar/README +0 -1
  803. data/spec/fixtures/real_world/apps/contacts/README_BEFORE_EDITING +0 -1
  804. data/spec/fixtures/real_world/apps/files/README +0 -1
  805. data/spec/fixtures/real_world/apps/mail/README +0 -1
  806. data/spec/fixtures/real_world/apps/mobile_photos/README +0 -1
  807. data/spec/fixtures/real_world/apps/photos/README +0 -1
  808. data/spec/fixtures/real_world/apps/uploader/README +0 -1
  809. data/spec/fixtures/real_world/frameworks/core_files/PLACEHOLDER +0 -0
  810. data/spec/fixtures/real_world/frameworks/core_photos/PLACEHOLDER +0 -0
  811. data/spec/fixtures/real_world/frameworks/shared/PLACEHOLDER +0 -0
  812. data/spec/fixtures/real_world/frameworks/sproutcore/Buildfile +0 -26
  813. data/spec/fixtures/real_world/frameworks/sproutcore/README +0 -1
  814. data/spec/fixtures/real_world/frameworks/sproutcore/apps/docs/PLACEHOLDER +0 -0
  815. data/spec/fixtures/real_world/frameworks/sproutcore/apps/test_runner/PLACEHOLDER +0 -0
  816. data/spec/fixtures/real_world/frameworks/sproutcore/core.js +0 -0
  817. data/spec/fixtures/real_world/frameworks/sproutcore/debug/debug-resource.html +0 -0
  818. data/spec/fixtures/real_world/frameworks/sproutcore/debug/sample_debug.js +0 -0
  819. data/spec/fixtures/real_world/frameworks/sproutcore/demo2.js +0 -0
  820. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/debug/sample_debug-loc.js +0 -0
  821. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/demo.css +0 -4
  822. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/demo.html +0 -1
  823. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/demo2.sass +0 -0
  824. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/file_extension_test.haml +0 -0
  825. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/file_extension_test.html.erb +0 -1
  826. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/file_extension_test.rhtml +0 -0
  827. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/fixtures/sample_fixtures-loc.js +0 -0
  828. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/has_require.css +0 -4
  829. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/no_require.css +0 -1
  830. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/no_sc_resource.rhtml +0 -1
  831. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/protocols/sample-loc.js +0 -0
  832. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/sc_resource.css +0 -6
  833. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/sc_resource.rhtml +0 -3
  834. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/strings.js +0 -1
  835. data/spec/fixtures/real_world/frameworks/sproutcore/english.lproj/tests/sample-loc.js +0 -0
  836. data/spec/fixtures/real_world/frameworks/sproutcore/fixtures/sample-json-fixture.json +0 -1
  837. data/spec/fixtures/real_world/frameworks/sproutcore/fixtures/sample_fixtures.js +0 -0
  838. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/application/PLACEHOLDER +0 -0
  839. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/costello/core.js +0 -0
  840. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/data_store/PLACEHOLDER +0 -0
  841. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/debug/PLACEHOLDER +0 -0
  842. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/desktop/PLACEHOLDER +0 -0
  843. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/empty_theme/PLACEHOLDER +0 -0
  844. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/foundation/PLACEHOLDER +0 -0
  845. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/mobile/PLACEHOLDER +0 -0
  846. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/qunit/PLACEHOLDER +0 -0
  847. data/spec/fixtures/real_world/frameworks/sproutcore/frameworks/uploader/PLACEHOLDER +0 -0
  848. data/spec/fixtures/real_world/frameworks/sproutcore/french.lproj/french-resource.js +0 -0
  849. data/spec/fixtures/real_world/frameworks/sproutcore/french.lproj/strings.js +0 -1
  850. data/spec/fixtures/real_world/frameworks/sproutcore/german.lproj/german-resource.js +0 -0
  851. data/spec/fixtures/real_world/frameworks/sproutcore/german.lproj/strings.js +0 -0
  852. data/spec/fixtures/real_world/frameworks/sproutcore/has_require.js +0 -4
  853. data/spec/fixtures/real_world/frameworks/sproutcore/lib/index.html +0 -1
  854. data/spec/fixtures/real_world/frameworks/sproutcore/no_require.js +0 -1
  855. data/spec/fixtures/real_world/frameworks/sproutcore/protocols/sample.js +0 -0
  856. data/spec/fixtures/real_world/frameworks/sproutcore/sc_resource.js +0 -6
  857. data/spec/fixtures/real_world/frameworks/sproutcore/tests/nested/sample1.js +0 -0
  858. data/spec/fixtures/real_world/frameworks/sproutcore/tests/nested/sample2.js +0 -0
  859. data/spec/fixtures/real_world/frameworks/sproutcore/tests/sample.js +0 -0
  860. data/spec/fixtures/real_world/frameworks/sproutcore/tests/sample.rhtml +0 -1
  861. data/spec/fixtures/real_world/frameworks/sproutcore/themes/standard_theme/README +0 -0
  862. data/spec/fixtures/real_world/frameworks/sproutcore/views/view.js +0 -1
  863. data/spec/fixtures/real_world/generators/sample_custom/Buildfile +0 -0
  864. data/spec/fixtures/recursive_project/Buildfile +0 -8
  865. data/spec/fixtures/recursive_project/frameworks/sproutcore/frameworks/costello/PLACEHOLDER +0 -0
  866. data/spec/lib/builders/combine_spec.rb +0 -67
  867. data/spec/lib/builders/html_spec.rb +0 -577
  868. data/spec/lib/builders/javascript_spec.rb +0 -81
  869. data/spec/lib/builders/sass_spec.rb +0 -43
  870. data/spec/lib/builders/spec_helper.rb +0 -30
  871. data/spec/lib/builders/strings_spec.rb +0 -52
  872. data/spec/lib/builders/stylesheet_spec.rb +0 -63
  873. data/spec/lib/builders/test_index_spec.rb +0 -44
  874. data/spec/lib/builders/test_spec.rb +0 -135
  875. data/spec/lib/buildfile/config_for_spec.rb +0 -81
  876. data/spec/lib/buildfile/define_spec.rb +0 -59
  877. data/spec/lib/buildfile/dup_spec.rb +0 -65
  878. data/spec/lib/buildfile/invoke_spec.rb +0 -130
  879. data/spec/lib/buildfile/load_spec.rb +0 -49
  880. data/spec/lib/buildfile/task/dup_spec.rb +0 -55
  881. data/spec/lib/buildfile/task_defined_spec.rb +0 -17
  882. data/spec/lib/buildfile_commands/build_task_spec.rb +0 -19
  883. data/spec/lib/buildfile_commands/config_spec.rb +0 -97
  884. data/spec/lib/buildfile_commands/import_spec.rb +0 -17
  885. data/spec/lib/buildfile_commands/namespace_spec.rb +0 -18
  886. data/spec/lib/buildfile_commands/proxies_spec.rb +0 -38
  887. data/spec/lib/buildfile_commands/replace_task_spec.rb +0 -29
  888. data/spec/lib/buildfile_commands/task_spec.rb +0 -36
  889. data/spec/lib/helpers/packing_optimizer/optimize_spec.rb +0 -26
  890. data/spec/lib/models/hash_struct/deep_clone_spec.rb +0 -27
  891. data/spec/lib/models/hash_struct/has_options_spec.rb +0 -32
  892. data/spec/lib/models/hash_struct/hash_spec.rb +0 -64
  893. data/spec/lib/models/hash_struct/merge_spec.rb +0 -26
  894. data/spec/lib/models/hash_struct/method_missing.rb +0 -41
  895. data/spec/lib/models/manifest/add_entry_spec.rb +0 -36
  896. data/spec/lib/models/manifest/add_transform_spec.rb +0 -90
  897. data/spec/lib/models/manifest/build_spec.rb +0 -78
  898. data/spec/lib/models/manifest/entry_for_spec.rb +0 -94
  899. data/spec/lib/models/manifest/find_entry.rb +0 -84
  900. data/spec/lib/models/manifest/prepare_spec.rb +0 -62
  901. data/spec/lib/models/manifest_entry/cacheable_url_spec.rb +0 -31
  902. data/spec/lib/models/manifest_entry/prepare_spec.rb +0 -54
  903. data/spec/lib/models/project/add_target_spec.rb +0 -44
  904. data/spec/lib/models/project/buildfile_spec.rb +0 -35
  905. data/spec/lib/models/project/find_targets_for_spec.rb +0 -77
  906. data/spec/lib/models/project/load_nearest_project_spec.rb +0 -23
  907. data/spec/lib/models/project/target_for_spec.rb +0 -33
  908. data/spec/lib/models/project/targets_spec.rb +0 -62
  909. data/spec/lib/models/target/compute_build_number_spec.rb +0 -125
  910. data/spec/lib/models/target/config_spec.rb +0 -30
  911. data/spec/lib/models/target/expand_required_targets_spec.rb +0 -48
  912. data/spec/lib/models/target/installed_languages_spec.rb +0 -47
  913. data/spec/lib/models/target/lproj_for_spec.rb +0 -38
  914. data/spec/lib/models/target/manifest_for_spec.rb +0 -42
  915. data/spec/lib/models/target/parent_target_spec.rb +0 -21
  916. data/spec/lib/models/target/prepare_spec.rb +0 -53
  917. data/spec/lib/models/target/required_targets_spec.rb +0 -119
  918. data/spec/lib/models/target/target_for_spec.rb +0 -56
  919. data/spec/lib/tools/build_number_spec.rb +0 -28
  920. data/spec/lib/tools/gen_spec.rb +0 -207
  921. data/spec/lib/tools/tools_spec.rb +0 -78
  922. data/spec/spec_helper.rb +0 -138
  923. data/sproutcore-abbot.gemspec +0 -640
  924. data/vendor/jsdoc/templates/jsdoc/allclasses.tmpl +0 -17
  925. data/vendor/jsdoc/templates/jsdoc/allfiles.tmpl +0 -56
  926. data/vendor/jsdoc/templates/jsdoc/class.tmpl +0 -487
  927. data/vendor/jsdoc/templates/jsdoc/index.tmpl +0 -38
  928. data/vendor/jsdoc/templates/jsdoc/symbol.tmpl +0 -35
  929. data/vendor/jsdoc/templates/sproutcore/allclasses.tmpl +0 -0
  930. data/vendor/jsdoc/templates/sproutcore/allfiles.tmpl +0 -56
  931. data/vendor/jsdoc/templates/sproutcore/class.tmpl +0 -674
  932. data/vendor/jsdoc/templates/sproutcore/index.tmpl +0 -55
  933. data/vendor/jsdoc/templates/sproutcore/symbol.tmpl +0 -35
@@ -0,0 +1,238 @@
1
+ // ==========================================================================
2
+ // Project: SproutCore - JavaScript Application Framework
3
+ // Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.
4
+ // Portions ©2008-2009 Apple, Inc. All rights reserved.
5
+ // License: Licened under MIT license (see license.js)
6
+ // ==========================================================================
7
+
8
+ sc_require('data_sources/data_source');
9
+ sc_require('models/record');
10
+ sc_require('system/query');
11
+
12
+ /** @class
13
+
14
+ TODO: Describe Class
15
+
16
+ @extends SC.DataSource
17
+ @since SproutCore 1.0
18
+ */
19
+ SC.FixturesWithQueriesDataSource = SC.DataSource.extend( {
20
+
21
+ // ..........................................................
22
+ // PREDEFINED EXAMPLE QUERIES
23
+ //
24
+
25
+ queries: {
26
+ nameIs: SC.Query.create({queryString: "name = %@"}),
27
+ countIsLesserThan: SC.Query.create({queryString: "count < %@"})
28
+ },
29
+
30
+
31
+ // ..........................................................
32
+ // STANDARD DATA SOURCE METHODS
33
+ //
34
+
35
+ /**
36
+ Invoked by the store whenever it needs to retrieve an array of records.
37
+
38
+ @param {SC.Store} store the requesting store
39
+ @param {SC.Array} the array with the storeKeys to be retrieved
40
+ @returns {SC.Bool} return YES because Fixtures supports the function.
41
+ */
42
+ retrieveRecords: function(store, storeKeys) {
43
+ var len = storeKeys.length, dataHash, storeKey, i;
44
+ for(i=0; i<len; i++){
45
+ storeKey = storeKeys[i];
46
+ dataHash = this.fixtureForStoreKey(store, storeKey);
47
+ if (dataHash) store.dataSourceDidComplete(storeKey, dataHash);
48
+ }
49
+ return YES;
50
+ },
51
+
52
+ /**
53
+ Invoked by the store whenever it needs to retrieve an array of storeKeys
54
+ matching a specific query. For the fixtures params are ignored and all
55
+ storeKeys for the specific recordType are returned.
56
+
57
+ @param {SC.Store} store the requesting store
58
+ @param {Object} recordType key describing the request, may be SC.Record
59
+ @param {Hash} params optional additonal fetch params
60
+ @returns {SC.Array} result set with storeKeys. May be sparse.
61
+ */
62
+ fetchRecords: function(store, queryKey, params) {
63
+ var ret = [], dataHashes, i, storeKey, recordType;
64
+ var query = null;
65
+
66
+ if (!params) params = {};
67
+
68
+ if (queryKey === SC.Record || SC.Record.hasSubclass(queryKey)) {
69
+ // loading by recordType now
70
+ recordType = queryKey;
71
+ dataHashes = this.fixturesFor(recordType);
72
+ for(i in dataHashes){
73
+ storeKey = recordType.storeKeyFor(i);
74
+ ret.push(storeKey);
75
+ }
76
+ }
77
+ else if (typeof queryKey == 'string') {
78
+ // doing a real query now
79
+ // first check if this is a known query
80
+ if (this.queries[queryKey]) query = this.queries[queryKey];
81
+ // if not, make a new query and remember it
82
+ else {
83
+ params.queryString = queryKey;
84
+ query = this.queries[queryKey] = SC.Query.create(params);
85
+ }
86
+
87
+ // now lets determine which records to check
88
+ if (query.recordType)
89
+ // !!! this doesn't work !!!
90
+ dataHashes = store.recordsFor(recordType);
91
+ else
92
+ // !!! this is a hack - but it works !!!
93
+ dataHashes = store.dataHashes;
94
+
95
+ // now match the dataHashes against the query
96
+ for(i in dataHashes){
97
+ if (query.contains(dataHashes[i],params.parameters)) {
98
+ //storeKey = recordType.storeKeyFor(i);
99
+ ret.push(i);
100
+ }
101
+ }
102
+ }
103
+
104
+
105
+
106
+ return ret;
107
+ },
108
+
109
+ /**
110
+ Fixture operations complete immediately so you cannot cancel them.
111
+ */
112
+ cancel: function(store, storeKeys) {
113
+ return NO;
114
+ },
115
+
116
+ /**
117
+ Update the dataHash in this._fixtures
118
+ */
119
+ updateRecord: function(store, storeKey) {
120
+ this.setFixtureForStoreKey(store, storeKey, store.readDataHash(storeKey));
121
+ store.dataSourceDidComplete(storeKey);
122
+ return YES ;
123
+ },
124
+
125
+
126
+ /**
127
+ Adds records to this._fixtures. If the record does not have an id yet,
128
+ then then calls generateIdFor() and sets that.
129
+
130
+ @param {SC.Store} store the store
131
+ @param {Number} storeKey the store key
132
+ @returns {Boolean} YES if successful
133
+ */
134
+ createRecord: function(store, storeKey) {
135
+ var id = store.idFor(storeKey),
136
+ recordType = store.recordTypeFor(storeKey),
137
+ dataHash = store.readDataHash(storeKey),
138
+ fixtures = this.fixturesFor(recordType);
139
+
140
+ if (!id) id = this.generateIdFor(recordType, dataHash, store, storeKey);
141
+ fixtures[id] = dataHash;
142
+
143
+ store.dataSourceDidComplete(storeKey, null, id);
144
+ return YES ;
145
+ },
146
+
147
+ /**
148
+ Removes the data from the fixtures.
149
+
150
+ @param {SC.Store} store the store
151
+ @param {Number} storeKey the store key
152
+ @returns {Boolean} YES if successful
153
+ */
154
+ destroyRecord: function(store, storeKey) {
155
+ var id = store.idFor(storeKey),
156
+ recordType = store.recordTypeFor(storeKey),
157
+ fixtures = this.fixturesFor(recordType);
158
+
159
+ if (id) delete fixtures[id];
160
+ store.dataSourceDidDestroy(storeKey);
161
+ return YES ;
162
+ },
163
+
164
+ // ..........................................................
165
+ // INTERNAL METHODS
166
+ //
167
+
168
+ /**
169
+ Generates an id for the passed record type. You can override this if
170
+ needed. The default generates a storekey and formats it as a string.
171
+ */
172
+ generateIdFor: function(recordType, dataHash, store, storeKey) {
173
+ return "@id%@".fmt(SC.Store.generateStoreKey());
174
+ },
175
+
176
+ /**
177
+ Based on the storeKey it returns the specified fixtures
178
+
179
+ @param {SC.Store} store the store
180
+ @param {Number} storeKey the storeKey
181
+ @returns {Hash} data hash or null
182
+ */
183
+ fixtureForStoreKey: function(store, storeKey) {
184
+ var id = store.idFor(storeKey),
185
+ recordType = store.recordTypeFor(storeKey),
186
+ fixtures = this.fixturesFor(recordType);
187
+ return fixtures ? fixtures[id] : null;
188
+ },
189
+
190
+ /**
191
+ Sets the data hash fixture for the named store key.
192
+
193
+ @param {SC.Store} store the store
194
+ @param {Number} storeKey the storeKey
195
+ @param {Hash} dataHash
196
+ @returns {SC.FixturesDataSource} receiver
197
+ */
198
+ setFixtureForStoreKey: function(store, storeKey, dataHash) {
199
+ var id = store.idFor(storeKey),
200
+ recordType = store.recordTypeFor(storeKey),
201
+ fixtures = this.fixturesFor(recordType);
202
+ fixtures[id] = dataHash;
203
+ return this ;
204
+ },
205
+
206
+ /**
207
+ Invoked methods to ensure fixtures for a particular record type have been
208
+ loaded.
209
+
210
+ @param {SC.Record} recordType
211
+ @returns {Hash} data hashes
212
+ */
213
+ fixturesFor: function(recordType) {
214
+ // get basic fixtures hash.
215
+ if (!this._fixtures) this._fixtures = {};
216
+ var fixtures = this._fixtures[SC.guidFor(recordType)];
217
+ if (fixtures) return fixtures ;
218
+
219
+ // need to load fixtures.
220
+ var dataHashes = recordType ? recordType.FIXTURES : null,
221
+ len = dataHashes ? dataHashes.length : 0,
222
+ primaryKey = recordType ? recordType.prototype.primaryKey : 'guid',
223
+ idx, dataHash, id ;
224
+
225
+ this._fixtures[SC.guidFor(recordType)] = fixtures = {} ;
226
+ for(idx=0;idx<len;idx++) {
227
+ dataHash = dataHashes[idx];
228
+ id = dataHash[primaryKey];
229
+ if (!id) id = this.generateIdFor(recordType, dataHash);
230
+ fixtures[id] = dataHash;
231
+ }
232
+ return fixtures;
233
+ }
234
+
235
+ });
236
+
237
+ // create default instance for use when configuring
238
+ SC.Record.fixturesWithQueries = SC.FixturesWithQueriesDataSource.create();
@@ -0,0 +1,71 @@
1
+ // ==========================================================================
2
+ // Project: SproutCore - JavaScript Application Framework
3
+ // Copyright: ©2006-2009 Apple, Inc. and contributors.
4
+ // License: Licened under MIT license (see license.js)
5
+ // ==========================================================================
6
+
7
+ // 50 JSON records.
8
+ var json0_9 = [
9
+ {"type": "Author", "guid": "4995bc653acad","fullName": "Trecia Williamson 4", "bookTitle": "The Death Doors", "address":" UC Santa Cruz, 35 First St, Wichita, KS"},
10
+ {"type": "Author", "guid": "4995bc653acfe","fullName": "Jarrod Schreckengost 1", "bookTitle": "The Fear of the Thieves", "address":" Michigan State University, 285 Lazaneo St, Ann Arbor, MI"},
11
+ {"type": "Author", "guid": "4995bc653ad23","fullName": "Colbert Ward 3", "bookTitle": "The Menace Myth", "address":" College University, 351 Van Ness Blvd, London, UK"},
12
+ {"type": "Author", "guid": "4995bc653ad43","fullName": "Kurtis Hall 3", "bookTitle": "The Creature of Madness", "address":" MIT, 122 Fifth Ave, Santa Clara, CA"},
13
+ {"type": "Author", "guid": "4995bc653ad56","fullName": "Marilyn Bellinger 2", "bookTitle": "The Fear of the Gods", "address":" New York University, 438 Dana St, Southampton, UK"},
14
+ {"type": "Author", "guid": "4995bc653ad6b","fullName": "Annalisa Butt 1", "bookTitle": "The Planet of Horror", "address":" Foothill College, 146 Bloom St, Los Angeles, CA"},
15
+ {"type": "Author", "guid": "4995bc653ad7f","fullName": "Jesse Robinson 4", "bookTitle": "The Ice of Madness", "address":" Michigan State University, 153 Broadway Blvd, Los Angeles, CA"},
16
+ {"type": "Author", "guid": "4995bc653ad93","fullName": "Zilla Fea 4", "bookTitle": "The Time of the Reign", "address":" Stanford University, 309 Van Ness Blvd, Wichita, KS"},
17
+ {"type": "Author", "guid": "4995bc653adad","fullName": "Milburn Holdeman 2", "bookTitle": "The Jaws of Night", "address":" Michigan State University, 236 Elm St, St. Louis, MO"},
18
+ {"type": "Author", "guid": "4995bc653adc4","fullName": "Martina Read 4", "bookTitle": "The Fear of the Spiders", "address":" London University, 142 Castro St, London, UK"}
19
+ ];
20
+
21
+ var json10_19 = [
22
+ {"type": "Author", "guid": "4995bc653ade7","fullName": "Gallagher Burch 1", "bookTitle": "The Day of Time", "address":" CalTech, 92 Main St, San Francisco, CA"},
23
+ {"type": "Author", "guid": "4995bc653ae03","fullName": "Sorrel Dugmore 3", "bookTitle": "The Madness of the History", "address":" MIT, 120 Dana St, Los Angeles, CA"},
24
+ {"type": "Author", "guid": "4995bc653ae17","fullName": "Pamila Blois 3", "bookTitle": "The Ultimate Resurrection", "address":" Michigan State University, 262 Fifth Ave, Cupertino, CA"},
25
+ {"type": "Author", "guid": "4995bc653ae2d","fullName": "Jessamyn Graff 4", "bookTitle": "The Fear of the Key", "address":" Foothill College, 442 Main St, Cupertino, CA"},
26
+ {"type": "Author", "guid": "4995bc653ae43","fullName": "Camden Whiteman 4", "bookTitle": "The Doomed Monster", "address":" UC Santa Cruz, 64 University Loop, St. Louis, MO"},
27
+ {"type": "Author", "guid": "4995bc653ae64","fullName": "Eldon Ream 1", "bookTitle": "The Impossible Herald", "address":" London University, 32 Dana St, New York, NY"},
28
+ {"type": "Author", "guid": "4995bc653ae78","fullName": "Erskine Aultman 2", "bookTitle": "The Thief", "address":" University of Southampton, 101 Oak Ave, Ann Arbor, MI"},
29
+ {"type": "Author", "guid": "4995bc653ae8c","fullName": "Missie Marjorie 4", "bookTitle": "The Warrior of Horror", "address":" Springfield University, 452 Lazaneo St, London, UK"},
30
+ {"type": "Author", "guid": "4995bc653ae9f","fullName": "Lonnie Linton 3", "bookTitle": "The Time of the Dead", "address":" Harvard, 140 Castro St, Cupertino, CA"},
31
+ {"type": "Author", "guid": "4995bc653aeba","fullName": "Lesley Sanforth 4", "bookTitle": "The Underworld", "address":" New York University, 43 Fifth Ave, Southampton, UK"}
32
+ ];
33
+
34
+ var json20_29 = [
35
+ {"type": "Author", "guid": "4995bc653aecc","fullName": "Alton Saline 4", "bookTitle": "The Horror Secret", "address":" Santa Clara University, 431 Main St, Seattle, WA"},
36
+ {"type": "Author", "guid": "4995bc653aee2","fullName": "Homer Sandys 2", "bookTitle": "The Day Seeds", "address":" Stanford University, 75 First St, Wichita, KS"},
37
+ {"type": "Author", "guid": "4995bc653aef6","fullName": "Katherine Hozier 3", "bookTitle": "The Dominators", "address":" Stanford University, 348 Broadway Blvd, Seattle, WA"},
38
+ {"type": "Author", "guid": "4995bc653af0a","fullName": "Lavone Baxter 2", "bookTitle": "The Bride of Day", "address":" Foothill College, 34 Bloom St, Cambridge, MA"},
39
+ {"type": "Author", "guid": "4995bc653af24","fullName": "Hailey Berkheimer 3", "bookTitle": "The Long Machine", "address":" Santa Clara University, 47 Broadway Blvd, San Francisco, CA"},
40
+ {"type": "Author", "guid": "4995bc653af3b","fullName": "Shanelle Fry 2", "bookTitle": "The Enemies of Fear", "address":" Foothill College, 323 Van Ness Blvd, Southampton, UK"},
41
+ {"type": "Author", "guid": "4995bc653af5e","fullName": "Booker Earl 2", "bookTitle": "The Fury Doors", "address":" Harvard, 180 Castro St, Cambridge, MA"},
42
+ {"type": "Author", "guid": "4995bc653af72","fullName": "Emery Cavalet 2", "bookTitle": "The Inferno", "address":" Stanford University, 430 Dana St, St. Louis, MO"},
43
+ {"type": "Author", "guid": "4995bc653af86","fullName": "Robynne Unk 3", "bookTitle": "The Fear Memories", "address":" Foothill College, 343 Lazaneo St, Santa Clara, CA"},
44
+ {"type": "Author", "guid": "4995bc653af9a","fullName": "Lyssa Ashbaugh 1", "bookTitle": "The Angels", "address":" Harvard, 42 First St, Palo Alto, CA"}
45
+ ];
46
+
47
+ var json30_39 = [
48
+ {"type": "Author", "guid": "4995bc653afb5","fullName": "Rolph Burris 3", "bookTitle": "Dreams of Menace", "address":" Springfield University, 256 Fifth Ave, Southampton, UK"},
49
+ {"type": "Author", "guid": "4995bc653afcb","fullName": "Sheree Kiefer 1", "bookTitle": "The Doom of the Night", "address":" Michigan State University, 432 Dana St, Palo Alto, CA"},
50
+ {"type": "Author", "guid": "4995bc653afde","fullName": "Shaun Drabble 2", "bookTitle": "The Future Creatures", "address":" Springfield University, 388 Fifth Ave, Los Angeles, CA"},
51
+ {"type": "Author", "guid": "4995bc653aff4","fullName": "Melvyn Stafford 1", "bookTitle": "The Fury of the Runaway", "address":" New York University, 252 Dana St, Southampton, UK"},
52
+ {"type": "Author", "guid": "4995bc653b008","fullName": "Alfreda Rahl 3", "bookTitle": "The Time of the Enemies", "address":" CalTech, 13 Bloom St, Los Angeles, CA"},
53
+ {"type": "Author", "guid": "4995bc653b022","fullName": "Auberon Coughenour 1", "bookTitle": "The Horror of the Rock", "address":" MIT, 429 Bloom St, Cambridge, MA"},
54
+ {"type": "Author", "guid": "4995bc653b043","fullName": "Clitus Mccallum 2", "bookTitle": "The Horror Dead", "address":" Springfield University, 121 Bloom St, Palo Alto, CA"},
55
+ {"type": "Author", "guid": "4995bc653b05f","fullName": "Jackie Munson 4", "bookTitle": "Seed of Day", "address":" Stanford University, 232 Oak Ave, San Francisco, CA"},
56
+ {"type": "Author", "guid": "4995bc653b075","fullName": "Kerri Mayers 3", "bookTitle": "The Madness of the Fear", "address":" Foothill College, 443 Lazaneo St, Southampton, UK"},
57
+ {"type": "Author", "guid": "4995bc653b08a","fullName": "Lyric Richards 3", "bookTitle": "The Horror Dead", "address":" Michigan State University, 391 Van Ness Blvd, London, UK"}
58
+ ];
59
+
60
+ var json40_49 = [
61
+ {"type": "Author", "guid": "4995bc653b09f","fullName": "Marci Caesar 1", "bookTitle": "The Seventh Child", "address":" College University, 469 Dana St, London, UK"},
62
+ {"type": "Author", "guid": "4995bc653b0b7","fullName": "Jade Sloan 4", "bookTitle": "The Menace of the Seas", "address":" UC Santa Cruz, 295 Van Ness Blvd, Cambridge, MA"},
63
+ {"type": "Author", "guid": "4995bc653b0cf","fullName": "Leyton Jyllian 2", "bookTitle": "The Foe", "address":" Stanford University, 419 University Loop, St. Louis, MO"},
64
+ {"type": "Author", "guid": "4995bc653b11d","fullName": "Janette Koepple 2", "bookTitle": "The Arc of Day", "address":" Springfield University, 57 Main St, Wichita, KS"},
65
+ {"type": "Author", "guid": "4995bc653b136","fullName": "Thea Sullivan 4", "bookTitle": "Suns of Doom", "address":" Michigan State University, 115 First St, Cupertino, CA"},
66
+ {"type": "Author", "guid": "4995bc653b14a","fullName": "Caileigh Todd 3", "bookTitle": "The Horror Leisure", "address":" UC Santa Cruz, 330 First St, London, UK"},
67
+ {"type": "Author", "guid": "4995bc653b15f","fullName": "Melvin Wilkerson 1", "bookTitle": "The Menace Alien", "address":" University of Southampton, 490 Elm St, Wichita, KS"},
68
+ {"type": "Author", "guid": "4995bc653b173","fullName": "Leyton Jyllian 4", "bookTitle": "The Assassin of Fear", "address":" Harvard, 60 Elm St, Palo Alto, CA"},
69
+ {"type": "Author", "guid": "4995bc653b187","fullName": "Sloane Moulton 1", "bookTitle": "The Crater of Horror", "address":" University of Southampton, 272 Broadway Blvd, New York, NY"},
70
+ {"type": "Author", "guid": "4995bc653b19b","fullName": "Tamsen Newton 3", "bookTitle": "The Long Crater", "address":" Harvard, 420 Second St, St. Louis, MO"}
71
+ ];
@@ -0,0 +1,96 @@
1
+ // ==========================================================================
2
+ // Project: SproutCore - JavaScript Application Framework
3
+ // Copyright: ©2006-2009 Apple, Inc. and contributors.
4
+ // License: Licened under MIT license (see license.js)
5
+ // ==========================================================================
6
+ /*globals module ok equals same test json0_9 json10_19 json20_29 json30_39 json40_49 */
7
+
8
+ var MyApp;
9
+
10
+ /* Define a standard test setup for use in most integration and unit tests. */
11
+ var StandardTestSetup = {
12
+ setup: function() {
13
+
14
+ // define namespace
15
+ MyApp = SC.Object.create({
16
+ store: SC.Store.create()
17
+ });
18
+
19
+ // define basic record
20
+ MyApp.Author = SC.Record.extend({
21
+ isCylon: function() {
22
+ switch(this.get('fullName')) {
23
+ case "Saul Tigh":
24
+ case "Galen Tyrol":
25
+ return YES;
26
+ default:
27
+ return NO;
28
+ }
29
+ }.property('fullName').cacheable()
30
+ });
31
+
32
+ // define fixture server.
33
+ // MyApp.fixtureServer = SC.FixtureServer.create({
34
+ // simulateResponseFromServer: function(guid, storeKey) {
35
+ // var json = [];
36
+ // if(guid === '123') {
37
+ // json = [ {"type": "Author", "guid": "123","fullName": "Galen Tyrol", "bookTitle": "The Fear of the Spiders", "address":" London University, 142 Castro St, London, UK"}];
38
+ // }
39
+ // if(guid === 'john locke') {
40
+ // this.get('childStore').didCreateRecords([storeKey], ['abcdefg'], [{guid: 'abcdefg', fullName: "John Locke", bookTitle: "A Letter Concerning Toleration"}]);
41
+ //
42
+ // return;
43
+ // }
44
+ // if(guid === 'jim locke') {
45
+ // console.log('LOADING JIM LOCKE %@'.fmt(storeKey));
46
+ // this.get('childStore').didCreateRecords([storeKey], ['abc'], [{guid: 'abc', fullName: "Jim Locke", bookTitle: "A Letter Concerning Toleration Part Deux"}]);
47
+ //
48
+ // return;
49
+ // }
50
+ //
51
+ // this.get('childStore').loadRecords(json, MyApp.Author);
52
+ //
53
+ // }
54
+ // });
55
+ //
56
+ // MyApp.fixtureServer.addStore(MyApp.store);
57
+
58
+
59
+ // verify initial state
60
+ // ok(MyApp, "MyApp is defined") ;
61
+ // ok(MyApp.store, "MyApp.store is defined") ;
62
+ // ok(MyApp.fixtureServer, "MyApp.fixtureServer is defined") ;
63
+ // ok(MyApp.Author, "MyApp.Author is defined") ;
64
+ // ok(json0_9, "json0_9 is defined") ;
65
+ // ok(json10_19, "json10_19 is defined") ;
66
+ // ok(json20_29, "json20_29 is defined") ;
67
+ // ok(json30_39, "json30_39 is defined") ;
68
+ // ok(json40_49, "json40_49 is defined") ;
69
+
70
+ return this ;
71
+ },
72
+
73
+ loadRecords: function() {
74
+
75
+ // load in some records -- dup json first so that edits to the data will
76
+ // not impact other tests
77
+ function dup(array) {
78
+ var ret = [], len = array.length, idx;
79
+ for(idx=0;idx<len;idx++) ret[idx] = SC.clone(array[idx]);
80
+ return ret ;
81
+ }
82
+
83
+ MyApp.store.loadRecords(dup(json0_9), MyApp.Author);
84
+ MyApp.store.loadRecords(dup(json10_19), MyApp.Author, 'guid');
85
+
86
+ var recordTypes = [MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author];
87
+ MyApp.store.loadRecords(dup(json20_29), recordTypes);
88
+
89
+ recordTypes = [MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author, MyApp.Author];
90
+ MyApp.store.loadRecords(dup(json30_39), recordTypes, 'guid');
91
+
92
+ MyApp.store.loadRecords(dup(json40_49));
93
+ return this ;
94
+ }
95
+ };
96
+
@@ -0,0 +1,2503 @@
1
+ // 500 records.
2
+
3
+ var AuthorFixtures = [{"type": "Author",
4
+ "guid": "4995bc373454a",
5
+ "fullName": "Gerry Woolery 4",
6
+ "bookTitle": "The Madness of the Meddler",
7
+ "address":" MIT, 21 Castro St, San Francisco, CA"},
8
+ {"type": "Author",
9
+ "guid": "4995bc37345ab",
10
+ "fullName": "Forrest Eggbert 2",
11
+ "bookTitle": "The Night Inferno",
12
+ "address":" Harvard, 86 University Loop, Southampton, UK"},
13
+ {"type": "Author",
14
+ "guid": "4995bc37345c0",
15
+ "fullName": "Dorthy Wilson 4",
16
+ "bookTitle": "The Nightmare of Space",
17
+ "address":" Harvard, 283 Elm St, Los Angeles, CA"},
18
+ {"type": "Author",
19
+ "guid": "4995bc37345e4",
20
+ "fullName": "Nathan Lineman 4",
21
+ "bookTitle": "The Night of the Ice",
22
+ "address":" College University, 199 First St, Seattle, WA"},
23
+ {"type": "Author",
24
+ "guid": "4995bc3734605",
25
+ "fullName": "Phinehas Laurenzi 3",
26
+ "bookTitle": "The Day Infinity",
27
+ "address":" Foothill College, 144 First St, Wichita, KS"},
28
+ {"type": "Author",
29
+ "guid": "4995bc3734618",
30
+ "fullName": "Avis Cass 3",
31
+ "bookTitle": "Masque of Space",
32
+ "address":" London University, 75 Fifth Ave, Los Angeles, CA"},
33
+ {"type": "Author",
34
+ "guid": "4995bc373462d",
35
+ "fullName": "Everard Richardson 1",
36
+ "bookTitle": "The Day of the Horn",
37
+ "address":" London University, 265 Lazaneo St, New York, NY"},
38
+ {"type": "Author",
39
+ "guid": "4995bc3734641",
40
+ "fullName": "Su Strickland 2",
41
+ "bookTitle": "The Day Ambassador",
42
+ "address":" Santa Clara University, 461 Dana St, Los Angeles, CA"},
43
+ {"type": "Author",
44
+ "guid": "4995bc3734655",
45
+ "fullName": "Patton Kooser 2",
46
+ "bookTitle": "The Ultimate Seed",
47
+ "address":" London University, 235 Van Ness Blvd, St. Louis, MO"},
48
+ {"type": "Author",
49
+ "guid": "4995bc373466e",
50
+ "fullName": "Janelle Howard 3",
51
+ "bookTitle": "The Fury Massacre",
52
+ "address":" Springfield University, 411 Main St, Southampton, UK"},
53
+ {"type": "Author",
54
+ "guid": "4995bc3734685",
55
+ "fullName": "Eliza Ropes 2",
56
+ "bookTitle": "The Fear Robots",
57
+ "address":" Foothill College, 386 Broadway Blvd, Ann Arbor, MI"},
58
+ {"type": "Author",
59
+ "guid": "4995bc373469a",
60
+ "fullName": "Alisya Drennan 2",
61
+ "bookTitle": "The Fear Paradise",
62
+ "address":" University of Southampton, 282 Elm St, Santa Clara, CA"},
63
+ {"type": "Author",
64
+ "guid": "4995bc37346b1",
65
+ "fullName": "Lori Magor 4",
66
+ "bookTitle": "The Madness Attack",
67
+ "address":" MIT, 429 Dana St, San Francisco, CA"},
68
+ {"type": "Author",
69
+ "guid": "4995bc37346c4",
70
+ "fullName": "Amethyst Evans 4",
71
+ "bookTitle": "The Fear of the Thieves",
72
+ "address":" London University, 309 Main St, Cupertino, CA"},
73
+ {"type": "Author",
74
+ "guid": "4995bc37346d8",
75
+ "fullName": "Ridley Ewing 2",
76
+ "bookTitle": "The Killer Angel",
77
+ "address":" New York University, 470 Broadway Blvd, New York, NY"},
78
+ {"type": "Author",
79
+ "guid": "4995bc37346ef",
80
+ "fullName": "Sloane Moulton 1",
81
+ "bookTitle": "The Dead of Time",
82
+ "address":" Springfield University, 1 Dana St, Southampton, UK"},
83
+ {"type": "Author",
84
+ "guid": "4995bc3734704",
85
+ "fullName": "Marquis Fuchs 3",
86
+ "bookTitle": "The Seeds of Menace",
87
+ "address":" CalTech, 348 Fifth Ave, Santa Clara, CA"},
88
+ {"type": "Author",
89
+ "guid": "4995bc3734718",
90
+ "fullName": "August Feufer 4",
91
+ "bookTitle": "The Fangs",
92
+ "address":" CalTech, 244 Broadway Blvd, Cambridge, MA"},
93
+ {"type": "Author",
94
+ "guid": "4995bc373472c",
95
+ "fullName": "Alix Rifler 1",
96
+ "bookTitle": "The Day Whisper",
97
+ "address":" Santa Clara University, 368 Oak Ave, Los Angeles, CA"},
98
+ {"type": "Author",
99
+ "guid": "4995bc3734740",
100
+ "fullName": "Virgil Pinney 3",
101
+ "bookTitle": "The Death of the Hive",
102
+ "address":" College University, 452 Elm St, Los Angeles, CA"},
103
+ {"type": "Author",
104
+ "guid": "4995bc373475d",
105
+ "fullName": "Carin Burnett 4",
106
+ "bookTitle": "The Space of the Mist",
107
+ "address":" Michigan State University, 331 University Loop, Santa Clara, CA"},
108
+ {"type": "Author",
109
+ "guid": "4995bc3734774",
110
+ "fullName": "Matty Cypret 2",
111
+ "bookTitle": "Crater of Day",
112
+ "address":" London University, 37 Broadway Blvd, Seattle, WA"},
113
+ {"type": "Author",
114
+ "guid": "4995bc3734794",
115
+ "fullName": "Matilda Rockwell 3",
116
+ "bookTitle": "The Pirate Masters",
117
+ "address":" CalTech, 487 Bloom St, Cambridge, MA"},
118
+ {"type": "Author",
119
+ "guid": "4995bc37347b0",
120
+ "fullName": "Luann Garneis 1",
121
+ "bookTitle": "The Day of the Keys",
122
+ "address":" Springfield University, 418 Dana St, New York, NY"},
123
+ {"type": "Author",
124
+ "guid": "4995bc37347c4",
125
+ "fullName": "Alysha Fox 1",
126
+ "bookTitle": "The Death Face",
127
+ "address":" Springfield University, 423 Castro St, Southampton, UK"},
128
+ {"type": "Author",
129
+ "guid": "4995bc37347d9",
130
+ "fullName": "Clifford Dugger 3",
131
+ "bookTitle": "The Ultimate Inferno",
132
+ "address":" MIT, 478 Lazaneo St, San Francisco, CA"},
133
+ {"type": "Author",
134
+ "guid": "4995bc37347ec",
135
+ "fullName": "Christianne Taggart 3",
136
+ "bookTitle": "The Curse of Day",
137
+ "address":" Stanford University, 83 Lazaneo St, Cambridge, MA"},
138
+ {"type": "Author",
139
+ "guid": "4995bc373480b",
140
+ "fullName": "Kestrel Nehling 2",
141
+ "bookTitle": "The Machines History",
142
+ "address":" Santa Clara University, 296 Bloom St, Ann Arbor, MI"},
143
+ {"type": "Author",
144
+ "guid": "4995bc373481f",
145
+ "fullName": "Mackenzie Pittman 1",
146
+ "bookTitle": "Cave of Night",
147
+ "address":" New York University, 489 Elm St, Ann Arbor, MI"},
148
+ {"type": "Author",
149
+ "guid": "4995bc3734833",
150
+ "fullName": "Sheila Ammons 4",
151
+ "bookTitle": "Robots of Menace",
152
+ "address":" Harvard, 211 Second St, Cambridge, MA"},
153
+ {"type": "Author",
154
+ "guid": "4995bc3734847",
155
+ "fullName": "September Glover 4",
156
+ "bookTitle": "The Illusion Carnival",
157
+ "address":" London University, 370 Fifth Ave, New York, NY"},
158
+ {"type": "Author",
159
+ "guid": "4995bc3734863",
160
+ "fullName": "Porsche Gilman 1",
161
+ "bookTitle": "The Seeds of Menace",
162
+ "address":" Michigan State University, 1 Fifth Ave, Los Angeles, CA"},
163
+ {"type": "Author",
164
+ "guid": "4995bc3734875",
165
+ "fullName": "Vance Jolce 1",
166
+ "bookTitle": "The Final Time",
167
+ "address":" CalTech, 364 University Loop, London, UK"},
168
+ {"type": "Author",
169
+ "guid": "4995bc373488a",
170
+ "fullName": "Clifford Dugger 4",
171
+ "bookTitle": "Dreams of Menace",
172
+ "address":" Springfield University, 211 First St, New York, NY"},
173
+ {"type": "Author",
174
+ "guid": "4995bc373489e",
175
+ "fullName": "Zander Pershing 1",
176
+ "bookTitle": "Killer of Menace",
177
+ "address":" Harvard, 464 Dana St, London, UK"},
178
+ {"type": "Author",
179
+ "guid": "4995bc37348b2",
180
+ "fullName": "Joye Eisenman 3",
181
+ "bookTitle": "The Whisper Faces",
182
+ "address":" College University, 171 Lazaneo St, St. Louis, MO"},
183
+ {"type": "Author",
184
+ "guid": "4995bc37348c5",
185
+ "fullName": "Phyliss Saylor 3",
186
+ "bookTitle": "The Fury Secret",
187
+ "address":" London University, 443 Dana St, St. Louis, MO"},
188
+ {"type": "Author",
189
+ "guid": "4995bc37348e1",
190
+ "fullName": "Duke Rosenstiehl 1",
191
+ "bookTitle": "The Time Fangs",
192
+ "address":" CalTech, 28 Oak Ave, Los Angeles, CA"},
193
+ {"type": "Author",
194
+ "guid": "4995bc37348f3",
195
+ "fullName": "Silvester Mcfall 3",
196
+ "bookTitle": "Whispers of Madness",
197
+ "address":" MIT, 217 First St, Cambridge, MA"},
198
+ {"type": "Author",
199
+ "guid": "4995bc3734909",
200
+ "fullName": "Branda Wood 1",
201
+ "bookTitle": "The Inferno",
202
+ "address":" London University, 120 University Loop, Wichita, KS"},
203
+ {"type": "Author",
204
+ "guid": "4995bc373491d",
205
+ "fullName": "Em Leichter 1",
206
+ "bookTitle": "The Day of the Massacre",
207
+ "address":" CalTech, 113 Castro St, Wichita, KS"},
208
+ {"type": "Author",
209
+ "guid": "4995bc3734931",
210
+ "fullName": "Bonita Downing 4",
211
+ "bookTitle": "Minds of Fury",
212
+ "address":" Santa Clara University, 64 University Loop, London, UK"},
213
+ {"type": "Author",
214
+ "guid": "4995bc3734944",
215
+ "fullName": "Norm Burns 4",
216
+ "bookTitle": "The Machines Mists",
217
+ "address":" UC Santa Cruz, 27 Lazaneo St, Cupertino, CA"},
218
+ {"type": "Author",
219
+ "guid": "4995bc373495f",
220
+ "fullName": "Victor Painter 3",
221
+ "bookTitle": "The Laboratory",
222
+ "address":" MIT, 5 Elm St, Los Angeles, CA"},
223
+ {"type": "Author",
224
+ "guid": "4995bc3734974",
225
+ "fullName": "Lalla Haverrman 2",
226
+ "bookTitle": "Planet of Death",
227
+ "address":" University of Southampton, 60 Oak Ave, London, UK"},
228
+ {"type": "Author",
229
+ "guid": "4995bc3734988",
230
+ "fullName": "Jeri Stroh 3",
231
+ "bookTitle": "The Meddler",
232
+ "address":" London University, 390 Oak Ave, Southampton, UK"},
233
+ {"type": "Author",
234
+ "guid": "4995bc373499c",
235
+ "fullName": "Raynard Peters 1",
236
+ "bookTitle": "The Horror of the Minds",
237
+ "address":" Michigan State University, 186 Van Ness Blvd, New York, NY"},
238
+ {"type": "Author",
239
+ "guid": "4995bc37349bb",
240
+ "fullName": "Buck Eisaman 3",
241
+ "bookTitle": "Future of Night",
242
+ "address":" New York University, 470 First St, Southampton, UK"},
243
+ {"type": "Author",
244
+ "guid": "4995bc37349d8",
245
+ "fullName": "Annie Surrency 3",
246
+ "bookTitle": "The Menace Androids",
247
+ "address":" Foothill College, 192 Bloom St, Southampton, UK"},
248
+ {"type": "Author",
249
+ "guid": "4995bc37349f3",
250
+ "fullName": "Ashlie Newman 4",
251
+ "bookTitle": "The Horror Key",
252
+ "address":" MIT, 106 First St, Cupertino, CA"},
253
+ {"type": "Author",
254
+ "guid": "4995bc3734a07",
255
+ "fullName": "Mabelle Staymates 2",
256
+ "bookTitle": "The Riders of Death",
257
+ "address":" Foothill College, 42 Broadway Blvd, Ann Arbor, MI"},
258
+ {"type": "Author",
259
+ "guid": "4995bc3734a22",
260
+ "fullName": "Eveleen Mixey 3",
261
+ "bookTitle": "The Doom of the Jaws",
262
+ "address":" New York University, 218 University Loop, Los Angeles, CA"},
263
+ {"type": "Author",
264
+ "guid": "4995bc3734a5f",
265
+ "fullName": "Anneka Gist 3",
266
+ "bookTitle": "Ark of Space",
267
+ "address":" London University, 301 Van Ness Blvd, Cambridge, MA"},
268
+ {"type": "Author",
269
+ "guid": "4995bc3734a75",
270
+ "fullName": "Avis Cass 3",
271
+ "bookTitle": "The Doomed Pit",
272
+ "address":" Foothill College, 40 Second St, Seattle, WA"},
273
+ {"type": "Author",
274
+ "guid": "4995bc3734a89",
275
+ "fullName": "Cedar Garry 3",
276
+ "bookTitle": "The Death Dead",
277
+ "address":" University of Southampton, 206 Bloom St, Palo Alto, CA"},
278
+ {"type": "Author",
279
+ "guid": "4995bc3734aa3",
280
+ "fullName": "Kezia Henry 1",
281
+ "bookTitle": "The Operation",
282
+ "address":" MIT, 294 First St, New York, NY"},
283
+ {"type": "Author",
284
+ "guid": "4995bc3734ab8",
285
+ "fullName": "Lindsey Straub 3",
286
+ "bookTitle": "The Fury of the Angel",
287
+ "address":" Stanford University, 11 Dana St, Cambridge, MA"},
288
+ {"type": "Author",
289
+ "guid": "4995bc3734aca",
290
+ "fullName": "Cornell Siegrist 1",
291
+ "bookTitle": "The Ghost",
292
+ "address":" College University, 310 Second St, Southampton, UK"},
293
+ {"type": "Author",
294
+ "guid": "4995bc3734ae5",
295
+ "fullName": "Raine Warrick 2",
296
+ "bookTitle": "The Menace Myth",
297
+ "address":" Springfield University, 360 University Loop, San Francisco, CA"},
298
+ {"type": "Author",
299
+ "guid": "4995bc3734af9",
300
+ "fullName": "Marci Caesar 2",
301
+ "bookTitle": "Fangs of Fury",
302
+ "address":" Santa Clara University, 486 Main St, Ann Arbor, MI"},
303
+ {"type": "Author",
304
+ "guid": "4995bc3734b0d",
305
+ "fullName": "Hewie Rose 2",
306
+ "bookTitle": "Mirror of Night",
307
+ "address":" CalTech, 419 Elm St, Wichita, KS"},
308
+ {"type": "Author",
309
+ "guid": "4995bc3734b26",
310
+ "fullName": "Titania Tilton 3",
311
+ "bookTitle": "The Day of the Mists",
312
+ "address":" Michigan State University, 251 Main St, Los Angeles, CA"},
313
+ {"type": "Author",
314
+ "guid": "4995bc3734b3b",
315
+ "fullName": "Amyas Hice 1",
316
+ "bookTitle": "City of Menace",
317
+ "address":" Santa Clara University, 380 Lazaneo St, San Francisco, CA"},
318
+ {"type": "Author",
319
+ "guid": "4995bc3734b5c",
320
+ "fullName": "Lyric Richards 1",
321
+ "bookTitle": "The Impossible Doors",
322
+ "address":" MIT, 412 Elm St, Cambridge, MA"},
323
+ {"type": "Author",
324
+ "guid": "4995bc3734b6f",
325
+ "fullName": "Lianne Kemble 4",
326
+ "bookTitle": "The Mind Massacre",
327
+ "address":" Harvard, 318 Fifth Ave, Ann Arbor, MI"},
328
+ {"type": "Author",
329
+ "guid": "4995bc3734b83",
330
+ "fullName": "Gabe Milliron 4",
331
+ "bookTitle": "The Carnival",
332
+ "address":" MIT, 187 Second St, Los Angeles, CA"},
333
+ {"type": "Author",
334
+ "guid": "4995bc3734b97",
335
+ "fullName": "Willis Costello 4",
336
+ "bookTitle": "The Night of the Bandits",
337
+ "address":" Michigan State University, 114 Elm St, Cambridge, MA"},
338
+ {"type": "Author",
339
+ "guid": "4995bc3734bb6",
340
+ "fullName": "Lottie Sherlock 3",
341
+ "bookTitle": "The Space Skull",
342
+ "address":" Foothill College, 165 Main St, Cambridge, MA"},
343
+ {"type": "Author",
344
+ "guid": "4995bc3734bc8",
345
+ "fullName": "Frieda Wade 2",
346
+ "bookTitle": "The Operation",
347
+ "address":" Santa Clara University, 179 University Loop, Cupertino, CA"},
348
+ {"type": "Author",
349
+ "guid": "4995bc3734bde",
350
+ "fullName": "Chip Haynes 1",
351
+ "bookTitle": "The Robot of Night",
352
+ "address":" Foothill College, 258 First St, Ann Arbor, MI"},
353
+ {"type": "Author",
354
+ "guid": "4995bc3734bf2",
355
+ "fullName": "Denzel Buehler 3",
356
+ "bookTitle": "The Night of the Brides",
357
+ "address":" Michigan State University, 138 First St, Cambridge, MA"},
358
+ {"type": "Author",
359
+ "guid": "4995bc3734c0e",
360
+ "fullName": "Kaelee Johnson 3",
361
+ "bookTitle": "The Evil Invasion",
362
+ "address":" MIT, 121 Fifth Ave, Southampton, UK"},
363
+ {"type": "Author",
364
+ "guid": "4995bc3734c25",
365
+ "fullName": "Prissy Cressman 1",
366
+ "bookTitle": "Monster of Day",
367
+ "address":" CalTech, 53 Second St, Los Angeles, CA"},
368
+ {"type": "Author",
369
+ "guid": "4995bc3734c38",
370
+ "fullName": "Anne Roadman 4",
371
+ "bookTitle": "The Meddler of Fear",
372
+ "address":" MIT, 374 Broadway Blvd, St. Louis, MO"},
373
+ {"type": "Author",
374
+ "guid": "4995bc3734c57",
375
+ "fullName": "Stacy Moffat 3",
376
+ "bookTitle": "The Menace Mist",
377
+ "address":" University of Southampton, 42 Second St, London, UK"},
378
+ {"type": "Author",
379
+ "guid": "4995bc3734c6b",
380
+ "fullName": "Jerold Jenkins 3",
381
+ "bookTitle": "The Thieves of Time",
382
+ "address":" London University, 188 Broadway Blvd, London, UK"},
383
+ {"type": "Author",
384
+ "guid": "4995bc3734c7f",
385
+ "fullName": "Berniece Berry 2",
386
+ "bookTitle": "The Illusion Ark",
387
+ "address":" College University, 148 Second St, Palo Alto, CA"},
388
+ {"type": "Author",
389
+ "guid": "4995bc3734c92",
390
+ "fullName": "Tim Beck 3",
391
+ "bookTitle": "The Warrior",
392
+ "address":" New York University, 47 Broadway Blvd, London, UK"},
393
+ {"type": "Author",
394
+ "guid": "4995bc3734cad",
395
+ "fullName": "Alexis Weisgarber 1",
396
+ "bookTitle": "The Space of the Crater",
397
+ "address":" Harvard, 47 Elm St, Palo Alto, CA"},
398
+ {"type": "Author",
399
+ "guid": "4995bc3734cc0",
400
+ "fullName": "Levi Wilkinson 1",
401
+ "bookTitle": "The Ambassador of Horror",
402
+ "address":" UC Santa Cruz, 34 Lazaneo St, Ann Arbor, MI"},
403
+ {"type": "Author",
404
+ "guid": "4995bc3734cd4",
405
+ "fullName": "Bailey Lauffer 3",
406
+ "bookTitle": "Fury of Doom",
407
+ "address":" New York University, 227 Castro St, Santa Clara, CA"},
408
+ {"type": "Author",
409
+ "guid": "4995bc3734ce7",
410
+ "fullName": "Gerry Woolery 1",
411
+ "bookTitle": "The Menace of the Computers",
412
+ "address":" Springfield University, 8 Main St, Ann Arbor, MI"},
413
+ {"type": "Author",
414
+ "guid": "4995bc3734cfb",
415
+ "fullName": "Hale Alliman 2",
416
+ "bookTitle": "The Paradise of Death",
417
+ "address":" Santa Clara University, 21 University Loop, Cupertino, CA"},
418
+ {"type": "Author",
419
+ "guid": "4995bc3734d0f",
420
+ "fullName": "Everard Richardson 2",
421
+ "bookTitle": "The Skull",
422
+ "address":" Santa Clara University, 391 Elm St, Cupertino, CA"},
423
+ {"type": "Author",
424
+ "guid": "4995bc3734d2c",
425
+ "fullName": "Tammie Crawford 1",
426
+ "bookTitle": "The Empty Runaway",
427
+ "address":" Michigan State University, 155 Van Ness Blvd, Cambridge, MA"},
428
+ {"type": "Author",
429
+ "guid": "4995bc3734d3f",
430
+ "fullName": "Xavier Porter 3",
431
+ "bookTitle": "The Resurrection of Death",
432
+ "address":" Springfield University, 187 Lazaneo St, Palo Alto, CA"},
433
+ {"type": "Author",
434
+ "guid": "4995bc3734d53",
435
+ "fullName": "Alec Owens 3",
436
+ "bookTitle": "The Madness of the History",
437
+ "address":" New York University, 385 University Loop, St. Louis, MO"},
438
+ {"type": "Author",
439
+ "guid": "4995bc3734d67",
440
+ "fullName": "Jancis Busk 2",
441
+ "bookTitle": "The Mind Seed",
442
+ "address":" Harvard, 49 Main St, Santa Clara, CA"},
443
+ {"type": "Author",
444
+ "guid": "4995bc3734d7b",
445
+ "fullName": "Daffodil Harper 1",
446
+ "bookTitle": "Monster of Day",
447
+ "address":" Michigan State University, 254 Castro St, Ann Arbor, MI"},
448
+ {"type": "Author",
449
+ "guid": "4995bc3734d8f",
450
+ "fullName": "Davey Moore 2",
451
+ "bookTitle": "Ghost of Fury",
452
+ "address":" Harvard, 160 Broadway Blvd, Cupertino, CA"},
453
+ {"type": "Author",
454
+ "guid": "4995bc3734dca",
455
+ "fullName": "Ridley Ewing 3",
456
+ "bookTitle": "The Fear Awakening",
457
+ "address":" College University, 86 Lazaneo St, San Francisco, CA"},
458
+ {"type": "Author",
459
+ "guid": "4995bc3734dde",
460
+ "fullName": "Loreto Isemann 1",
461
+ "bookTitle": "The Madness Night",
462
+ "address":" Foothill College, 496 Van Ness Blvd, Wichita, KS"},
463
+ {"type": "Author",
464
+ "guid": "4995bc3734df2",
465
+ "fullName": "Deshawn Pyle 4",
466
+ "bookTitle": "Suns of Time",
467
+ "address":" Santa Clara University, 271 Fifth Ave, Southampton, UK"},
468
+ {"type": "Author",
469
+ "guid": "4995bc3734e07",
470
+ "fullName": "Hailey Berkheimer 3",
471
+ "bookTitle": "The Time Smuggler",
472
+ "address":" Stanford University, 345 Main St, St. Louis, MO"},
473
+ {"type": "Author",
474
+ "guid": "4995bc3734e51",
475
+ "fullName": " 3",
476
+ "bookTitle": "The Menace Nightmares",
477
+ "address":" Stanford University, 346 Main St, Santa Clara, CA"},
478
+ {"type": "Author",
479
+ "guid": "4995bc3734e74",
480
+ "fullName": "Simona Craig 2",
481
+ "bookTitle": "The Horror of the Ice",
482
+ "address":" Michigan State University, 47 Bloom St, Cambridge, MA"},
483
+ {"type": "Author",
484
+ "guid": "4995bc3734e89",
485
+ "fullName": "Peta Filby 1",
486
+ "bookTitle": "Masque of Space",
487
+ "address":" Santa Clara University, 95 Broadway Blvd, Wichita, KS"},
488
+ {"type": "Author",
489
+ "guid": "4995bc3734ea6",
490
+ "fullName": "Kathi Williams 4",
491
+ "bookTitle": "Madness of Death",
492
+ "address":" Springfield University, 307 Second St, San Francisco, CA"},
493
+ {"type": "Author",
494
+ "guid": "4995bc3734eba",
495
+ "fullName": "Barret Lalty 1",
496
+ "bookTitle": "The Space of the Mirror",
497
+ "address":" University of Southampton, 287 Fifth Ave, St. Louis, MO"},
498
+ {"type": "Author",
499
+ "guid": "4995bc3734ed9",
500
+ "fullName": "Russ Nicola 4",
501
+ "bookTitle": "The Bride of Horror",
502
+ "address":" University of Southampton, 270 Elm St, Cupertino, CA"},
503
+ {"type": "Author",
504
+ "guid": "4995bc3734eed",
505
+ "fullName": "Maya Schrader 2",
506
+ "bookTitle": "The Terrible Sea",
507
+ "address":" College University, 206 First St, London, UK"},
508
+ {"type": "Author",
509
+ "guid": "4995bc3734f01",
510
+ "fullName": "Hazel Holts 1",
511
+ "bookTitle": "The Carnival",
512
+ "address":" CalTech, 65 University Loop, London, UK"},
513
+ {"type": "Author",
514
+ "guid": "4995bc3734f26",
515
+ "fullName": "Saffron Elinor 3",
516
+ "bookTitle": "The Seeds of Menace",
517
+ "address":" Springfield University, 462 Castro St, San Francisco, CA"},
518
+ {"type": "Author",
519
+ "guid": "4995bc3734f39",
520
+ "fullName": "Tiger Whitling 2",
521
+ "bookTitle": "The Night of the Brides",
522
+ "address":" MIT, 139 Castro St, Palo Alto, CA"},
523
+ {"type": "Author",
524
+ "guid": "4995bc3734f4e",
525
+ "fullName": "Rolph Burris 4",
526
+ "bookTitle": "The Horror Power",
527
+ "address":" Harvard, 418 Second St, London, UK"},
528
+ {"type": "Author",
529
+ "guid": "4995bc3734f61",
530
+ "fullName": "Mark Wheeler 1",
531
+ "bookTitle": "The Horror Key",
532
+ "address":" University of Southampton, 441 Bloom St, New York, NY"},
533
+ {"type": "Author",
534
+ "guid": "4995bc3734f75",
535
+ "fullName": "Wenona Tennant 2",
536
+ "bookTitle": "The Men",
537
+ "address":" Stanford University, 122 Main St, New York, NY"},
538
+ {"type": "Author",
539
+ "guid": "4995bc3734f89",
540
+ "fullName": "Callista Bishop 1",
541
+ "bookTitle": "The Pirate Masters",
542
+ "address":" UC Santa Cruz, 127 Main St, Cambridge, MA"},
543
+ {"type": "Author",
544
+ "guid": "4995bc3734fa4",
545
+ "fullName": "Cecil Rodacker 2",
546
+ "bookTitle": "The Fury of the Wings",
547
+ "address":" MIT, 499 Fifth Ave, Santa Clara, CA"},
548
+ {"type": "Author",
549
+ "guid": "4995bc3734fb7",
550
+ "fullName": "Liliana Northey 4",
551
+ "bookTitle": "The Fear Awakening",
552
+ "address":" Harvard, 185 First St, Cambridge, MA"},
553
+ {"type": "Author",
554
+ "guid": "4995bc3734fcb",
555
+ "fullName": "Webster Jelliman 1",
556
+ "bookTitle": "The Talons of Day",
557
+ "address":" University of Southampton, 472 Lazaneo St, Los Angeles, CA"},
558
+ {"type": "Author",
559
+ "guid": "4995bc3734fdf",
560
+ "fullName": "Loreen Buck 4",
561
+ "bookTitle": "The Masque of Doom",
562
+ "address":" UC Santa Cruz, 122 Broadway Blvd, Cupertino, CA"},
563
+ {"type": "Author",
564
+ "guid": "4995bc3734ff3",
565
+ "fullName": "Keisha Klockman 2",
566
+ "bookTitle": "The Ice Web",
567
+ "address":" MIT, 88 Lazaneo St, Cupertino, CA"},
568
+ {"type": "Author",
569
+ "guid": "4995bc3735006",
570
+ "fullName": "Bennett Little 1",
571
+ "bookTitle": "Revelation of Menace",
572
+ "address":" UC Santa Cruz, 118 University Loop, Palo Alto, CA"},
573
+ {"type": "Author",
574
+ "guid": "4995bc3735022",
575
+ "fullName": "Louis Waldron 1",
576
+ "bookTitle": "The Mountain Suns",
577
+ "address":" CalTech, 79 First St, San Francisco, CA"},
578
+ {"type": "Author",
579
+ "guid": "4995bc3735034",
580
+ "fullName": "Sophia Spring 1",
581
+ "bookTitle": "The Death of the Nightmares",
582
+ "address":" Santa Clara University, 450 First St, San Francisco, CA"},
583
+ {"type": "Author",
584
+ "guid": "4995bc3735048",
585
+ "fullName": "Joscelin Nash 3",
586
+ "bookTitle": "The Day Monster",
587
+ "address":" Santa Clara University, 191 Lazaneo St, St. Louis, MO"},
588
+ {"type": "Author",
589
+ "guid": "4995bc373505c",
590
+ "fullName": "Porsche Gilman 1",
591
+ "bookTitle": "Robots of Night",
592
+ "address":" CalTech, 338 First St, St. Louis, MO"},
593
+ {"type": "Author",
594
+ "guid": "4995bc3735070",
595
+ "fullName": "Deshawn Pyle 4",
596
+ "bookTitle": "The Space Brides",
597
+ "address":" Michigan State University, 204 Second St, Southampton, UK"},
598
+ {"type": "Author",
599
+ "guid": "4995bc3735084",
600
+ "fullName": "Galen Flanders 2",
601
+ "bookTitle": "The Secret Devils",
602
+ "address":" CalTech, 219 Castro St, Palo Alto, CA"},
603
+ {"type": "Author",
604
+ "guid": "4995bc37350a5",
605
+ "fullName": "Lonnie Linton 3",
606
+ "bookTitle": "The Armageddon",
607
+ "address":" London University, 214 Elm St, Los Angeles, CA"},
608
+ {"type": "Author",
609
+ "guid": "4995bc37350ba",
610
+ "fullName": "Melvin Wilkerson 4",
611
+ "bookTitle": "The Space Reign",
612
+ "address":" Harvard, 71 Bloom St, San Francisco, CA"},
613
+ {"type": "Author",
614
+ "guid": "4995bc37350d0",
615
+ "fullName": "Eleanor Bennett 4",
616
+ "bookTitle": "Runaway of Death",
617
+ "address":" Harvard, 148 Castro St, San Francisco, CA"},
618
+ {"type": "Author",
619
+ "guid": "4995bc37350e4",
620
+ "fullName": "Fawn Carr 3",
621
+ "bookTitle": "The Warrior of Menace",
622
+ "address":" Springfield University, 202 Oak Ave, Ann Arbor, MI"},
623
+ {"type": "Author",
624
+ "guid": "4995bc37350f8",
625
+ "fullName": "Linsay Mcmullen 4",
626
+ "bookTitle": "The Doom Masters",
627
+ "address":" Harvard, 116 First St, Los Angeles, CA"},
628
+ {"type": "Author",
629
+ "guid": "4995bc3735110",
630
+ "fullName": "Amyas Hice 4",
631
+ "bookTitle": "The Space Skull",
632
+ "address":" College University, 6 Fifth Ave, St. Louis, MO"},
633
+ {"type": "Author",
634
+ "guid": "4995bc3735123",
635
+ "fullName": "Monty Kava 4",
636
+ "bookTitle": "The Day Ice",
637
+ "address":" Santa Clara University, 175 Elm St, Cambridge, MA"},
638
+ {"type": "Author",
639
+ "guid": "4995bc3735138",
640
+ "fullName": "Brock Young 4",
641
+ "bookTitle": "The Killer Sound",
642
+ "address":" College University, 414 University Loop, Southampton, UK"},
643
+ {"type": "Author",
644
+ "guid": "4995bc373514c",
645
+ "fullName": "Belinda Alice 3",
646
+ "bookTitle": "The Deadly Memories",
647
+ "address":" UC Santa Cruz, 172 Elm St, Wichita, KS"},
648
+ {"type": "Author",
649
+ "guid": "4995bc3735160",
650
+ "fullName": "Marlene Agnes 4",
651
+ "bookTitle": "The Death Creature",
652
+ "address":" CalTech, 291 Van Ness Blvd, Ann Arbor, MI"},
653
+ {"type": "Author",
654
+ "guid": "4995bc3735174",
655
+ "fullName": "Godric Sommer 3",
656
+ "bookTitle": "The Fury Infinity",
657
+ "address":" CalTech, 290 Oak Ave, Southampton, UK"},
658
+ {"type": "Author",
659
+ "guid": "4995bc373518d",
660
+ "fullName": "Janis Bullard 2",
661
+ "bookTitle": "The Wings",
662
+ "address":" Foothill College, 265 Van Ness Blvd, Southampton, UK"},
663
+ {"type": "Author",
664
+ "guid": "4995bc37351a3",
665
+ "fullName": "Pamella Mckee 3",
666
+ "bookTitle": "The Children of Madness",
667
+ "address":" London University, 273 Broadway Blvd, London, UK"},
668
+ {"type": "Author",
669
+ "guid": "4995bc37351c8",
670
+ "fullName": "Prince Demuth 4",
671
+ "bookTitle": "The Riders",
672
+ "address":" Michigan State University, 193 Main St, St. Louis, MO"},
673
+ {"type": "Author",
674
+ "guid": "4995bc37351dc",
675
+ "fullName": "Kristal Young 2",
676
+ "bookTitle": "The Pirate Nightmares",
677
+ "address":" Foothill College, 354 Castro St, St. Louis, MO"},
678
+ {"type": "Author",
679
+ "guid": "4995bc37351ef",
680
+ "fullName": "Osmund Pritchard 1",
681
+ "bookTitle": "The Time Suns",
682
+ "address":" University of Southampton, 250 Dana St, Ann Arbor, MI"},
683
+ {"type": "Author",
684
+ "guid": "4995bc3735209",
685
+ "fullName": "Jazmine Adams 3",
686
+ "bookTitle": "The Day of the Computers",
687
+ "address":" Stanford University, 340 Van Ness Blvd, Cambridge, MA"},
688
+ {"type": "Author",
689
+ "guid": "4995bc3735221",
690
+ "fullName": "Rose Mays 3",
691
+ "bookTitle": "Meddler of Space",
692
+ "address":" UC Santa Cruz, 409 Bloom St, Los Angeles, CA"},
693
+ {"type": "Author",
694
+ "guid": "4995bc373523f",
695
+ "fullName": "Rylee Fiddler 2",
696
+ "bookTitle": "Masque of Space",
697
+ "address":" UC Santa Cruz, 413 Fifth Ave, Wichita, KS"},
698
+ {"type": "Author",
699
+ "guid": "4995bc3735253",
700
+ "fullName": "Meg Coveney 1",
701
+ "bookTitle": "Devils of Fury",
702
+ "address":" MIT, 446 Oak Ave, Southampton, UK"},
703
+ {"type": "Author",
704
+ "guid": "4995bc3735267",
705
+ "fullName": "Pamelia Mang 4",
706
+ "bookTitle": "The Time of the Pyramid",
707
+ "address":" New York University, 131 Main St, Cupertino, CA"},
708
+ {"type": "Author",
709
+ "guid": "4995bc373527b",
710
+ "fullName": "Raphael Wilks 4",
711
+ "bookTitle": "Ark of Day",
712
+ "address":" Foothill College, 44 Fifth Ave, Cambridge, MA"},
713
+ {"type": "Author",
714
+ "guid": "4995bc373529a",
715
+ "fullName": "Matilda Rockwell 4",
716
+ "bookTitle": "The Time Smugglers",
717
+ "address":" Michigan State University, 135 Van Ness Blvd, Ann Arbor, MI"},
718
+ {"type": "Author",
719
+ "guid": "4995bc37352ae",
720
+ "fullName": "Duke Rosenstiehl 1",
721
+ "bookTitle": "Mist of Death",
722
+ "address":" Santa Clara University, 160 First St, Ann Arbor, MI"},
723
+ {"type": "Author",
724
+ "guid": "4995bc37352cf",
725
+ "fullName": "Effie Greenwood 2",
726
+ "bookTitle": "The Fury Mist",
727
+ "address":" UC Santa Cruz, 288 Main St, Santa Clara, CA"},
728
+ {"type": "Author",
729
+ "guid": "4995bc37352e3",
730
+ "fullName": "Kathy Huston 4",
731
+ "bookTitle": "History of Doom",
732
+ "address":" Harvard, 299 Bloom St, Cupertino, CA"},
733
+ {"type": "Author",
734
+ "guid": "4995bc37352f6",
735
+ "fullName": "Rina Prescott 1",
736
+ "bookTitle": "The Children of Madness",
737
+ "address":" College University, 458 Elm St, Los Angeles, CA"},
738
+ {"type": "Author",
739
+ "guid": "4995bc3735319",
740
+ "fullName": "Raven Pirl 4",
741
+ "bookTitle": "Smugglers of Night",
742
+ "address":" UC Santa Cruz, 467 Main St, St. Louis, MO"},
743
+ {"type": "Author",
744
+ "guid": "4995bc373532c",
745
+ "fullName": "Xavier Porter 2",
746
+ "bookTitle": "The Robot of Night",
747
+ "address":" University of Southampton, 52 Lazaneo St, London, UK"},
748
+ {"type": "Author",
749
+ "guid": "4995bc373533f",
750
+ "fullName": "Lianne Kemble 1",
751
+ "bookTitle": "The Seeds",
752
+ "address":" College University, 482 Castro St, Cupertino, CA"},
753
+ {"type": "Author",
754
+ "guid": "4995bc3735353",
755
+ "fullName": "Byrne Bruxner 1",
756
+ "bookTitle": "The Long Suns",
757
+ "address":" CalTech, 238 Dana St, Ann Arbor, MI"},
758
+ {"type": "Author",
759
+ "guid": "4995bc3735367",
760
+ "fullName": "Byrne Bruxner 3",
761
+ "bookTitle": "The Wings",
762
+ "address":" New York University, 331 Van Ness Blvd, Cambridge, MA"},
763
+ {"type": "Author",
764
+ "guid": "4995bc373537a",
765
+ "fullName": "Fawn Carr 4",
766
+ "bookTitle": "The Laboratory",
767
+ "address":" CalTech, 237 Fifth Ave, London, UK"},
768
+ {"type": "Author",
769
+ "guid": "4995bc3735398",
770
+ "fullName": "Alyx Hincken 2",
771
+ "bookTitle": "The Revelation",
772
+ "address":" CalTech, 41 First St, Palo Alto, CA"},
773
+ {"type": "Author",
774
+ "guid": "4995bc37353aa",
775
+ "fullName": "Xerxes Newbern 1",
776
+ "bookTitle": "The Ghost",
777
+ "address":" Stanford University, 424 Van Ness Blvd, Southampton, UK"},
778
+ {"type": "Author",
779
+ "guid": "4995bc37353c0",
780
+ "fullName": "Alton Saline 3",
781
+ "bookTitle": "The Space of the Leisure",
782
+ "address":" London University, 102 Bloom St, London, UK"},
783
+ {"type": "Author",
784
+ "guid": "4995bc37353d3",
785
+ "fullName": "Lina Sanborn 1",
786
+ "bookTitle": "The Night Caves",
787
+ "address":" Michigan State University, 79 Second St, Ann Arbor, MI"},
788
+ {"type": "Author",
789
+ "guid": "4995bc37353e7",
790
+ "fullName": "Laura Herrold 3",
791
+ "bookTitle": "The Runaway Gods",
792
+ "address":" College University, 476 Dana St, Ann Arbor, MI"},
793
+ {"type": "Author",
794
+ "guid": "4995bc37353fb",
795
+ "fullName": "Maximilian Wolfe 1",
796
+ "bookTitle": "The Doom Meddler",
797
+ "address":" Stanford University, 400 Lazaneo St, Santa Clara, CA"},
798
+ {"type": "Author",
799
+ "guid": "4995bc3735418",
800
+ "fullName": "Ben Lombardi 3",
801
+ "bookTitle": "The Day",
802
+ "address":" College University, 139 Bloom St, St. Louis, MO"},
803
+ {"type": "Author",
804
+ "guid": "4995bc373543d",
805
+ "fullName": "Tiger Whitling 4",
806
+ "bookTitle": "The Fury Sea",
807
+ "address":" MIT, 55 Second St, St. Louis, MO"},
808
+ {"type": "Author",
809
+ "guid": "4995bc3735450",
810
+ "fullName": "Nena Davis 1",
811
+ "bookTitle": "The Operation of Menace",
812
+ "address":" University of Southampton, 2 First St, Cambridge, MA"},
813
+ {"type": "Author",
814
+ "guid": "4995bc3735464",
815
+ "fullName": "Luther Johnston 3",
816
+ "bookTitle": "The Keeper of Space",
817
+ "address":" Foothill College, 76 University Loop, San Francisco, CA"},
818
+ {"type": "Author",
819
+ "guid": "4995bc373547e",
820
+ "fullName": "Rikki Graham 3",
821
+ "bookTitle": "The Devil",
822
+ "address":" Foothill College, 322 Castro St, Cupertino, CA"},
823
+ {"type": "Author",
824
+ "guid": "4995bc3735493",
825
+ "fullName": "Alec Owens 1",
826
+ "bookTitle": "The Hive of Doom",
827
+ "address":" Michigan State University, 448 Bloom St, Wichita, KS"},
828
+ {"type": "Author",
829
+ "guid": "4995bc37354b2",
830
+ "fullName": "Lettie Roberts 3",
831
+ "bookTitle": "Dead of Time",
832
+ "address":" Stanford University, 152 Second St, Southampton, UK"},
833
+ {"type": "Author",
834
+ "guid": "4995bc37354c5",
835
+ "fullName": "Amalia Grant 2",
836
+ "bookTitle": "The Talons of Day",
837
+ "address":" University of Southampton, 42 Oak Ave, New York, NY"},
838
+ {"type": "Author",
839
+ "guid": "4995bc37354d9",
840
+ "fullName": "Brady Smail 2",
841
+ "bookTitle": "The Horror Visitor",
842
+ "address":" University of Southampton, 350 Castro St, Ann Arbor, MI"},
843
+ {"type": "Author",
844
+ "guid": "4995bc37354ed",
845
+ "fullName": "Lori Magor 2",
846
+ "bookTitle": "The Ultimate Seed",
847
+ "address":" London University, 397 Main St, Cambridge, MA"},
848
+ {"type": "Author",
849
+ "guid": "4995bc373550f",
850
+ "fullName": "Jewel Mortland 2",
851
+ "bookTitle": "The Horror of the Ragnarok",
852
+ "address":" College University, 46 Elm St, St. Louis, MO"},
853
+ {"type": "Author",
854
+ "guid": "4995bc3735538",
855
+ "fullName": "Kaitlyn Paul 1",
856
+ "bookTitle": "The Memories",
857
+ "address":" New York University, 489 Lazaneo St, Los Angeles, CA"},
858
+ {"type": "Author",
859
+ "guid": "4995bc373554e",
860
+ "fullName": "Aletha Lambert 1",
861
+ "bookTitle": "The Horror of the Universe",
862
+ "address":" Stanford University, 425 Van Ness Blvd, Los Angeles, CA"},
863
+ {"type": "Author",
864
+ "guid": "4995bc3735563",
865
+ "fullName": "Lela Warner 2",
866
+ "bookTitle": "The Menace of the Anvil",
867
+ "address":" CalTech, 430 Fifth Ave, Seattle, WA"},
868
+ {"type": "Author",
869
+ "guid": "4995bc3735578",
870
+ "fullName": "Brandi Bauerle 4",
871
+ "bookTitle": "The Fear of the Key",
872
+ "address":" College University, 485 Elm St, San Francisco, CA"},
873
+ {"type": "Author",
874
+ "guid": "4995bc373558c",
875
+ "fullName": "Marva Wise 4",
876
+ "bookTitle": "The Meddler",
877
+ "address":" Stanford University, 388 Second St, Cupertino, CA"},
878
+ {"type": "Author",
879
+ "guid": "4995bc373559e",
880
+ "fullName": "Seymour Fischer 1",
881
+ "bookTitle": "The Rock",
882
+ "address":" Springfield University, 375 First St, San Francisco, CA"},
883
+ {"type": "Author",
884
+ "guid": "4995bc37355b2",
885
+ "fullName": "Honor Simmons 3",
886
+ "bookTitle": "The Menace Mist",
887
+ "address":" CalTech, 179 Broadway Blvd, San Francisco, CA"},
888
+ {"type": "Author",
889
+ "guid": "4995bc37355c7",
890
+ "fullName": "Sarah Chapman 1",
891
+ "bookTitle": "The Day Androids",
892
+ "address":" UC Santa Cruz, 317 Dana St, Cupertino, CA"},
893
+ {"type": "Author",
894
+ "guid": "4995bc37355db",
895
+ "fullName": "Suzanna Neely 1",
896
+ "bookTitle": "The Secret Devils",
897
+ "address":" CalTech, 201 Main St, New York, NY"},
898
+ {"type": "Author",
899
+ "guid": "4995bc37355ee",
900
+ "fullName": "Wil Hoffhants 2",
901
+ "bookTitle": "The Empty Machines",
902
+ "address":" UC Santa Cruz, 446 Bloom St, San Francisco, CA"},
903
+ {"type": "Author",
904
+ "guid": "4995bc3735602",
905
+ "fullName": "Ridley Ewing 4",
906
+ "bookTitle": "The Ghost of Menace",
907
+ "address":" College University, 252 Broadway Blvd, Southampton, UK"},
908
+ {"type": "Author",
909
+ "guid": "4995bc3735616",
910
+ "fullName": "Rodge Catherina 2",
911
+ "bookTitle": "The Empty Herald",
912
+ "address":" Michigan State University, 367 Van Ness Blvd, Palo Alto, CA"},
913
+ {"type": "Author",
914
+ "guid": "4995bc373562a",
915
+ "fullName": "Brady Smail 1",
916
+ "bookTitle": "The Day Ice",
917
+ "address":" London University, 426 Elm St, Los Angeles, CA"},
918
+ {"type": "Author",
919
+ "guid": "4995bc373563e",
920
+ "fullName": "Antony Stern 4",
921
+ "bookTitle": "Reign of Night",
922
+ "address":" University of Southampton, 6 Van Ness Blvd, St. Louis, MO"},
923
+ {"type": "Author",
924
+ "guid": "4995bc3735652",
925
+ "fullName": "Loreen Buck 1",
926
+ "bookTitle": "The Day Whisper",
927
+ "address":" Michigan State University, 47 Main St, Palo Alto, CA"},
928
+ {"type": "Author",
929
+ "guid": "4995bc3735666",
930
+ "fullName": "Melita Barkley 1",
931
+ "bookTitle": "The Meddler of Fear",
932
+ "address":" CalTech, 328 Lazaneo St, Cambridge, MA"},
933
+ {"type": "Author",
934
+ "guid": "4995bc373567a",
935
+ "fullName": "Kerensa Benford 2",
936
+ "bookTitle": "The Menace of the Ghosts",
937
+ "address":" New York University, 411 Elm St, Seattle, WA"},
938
+ {"type": "Author",
939
+ "guid": "4995bc373568e",
940
+ "fullName": "Prue Putnam 2",
941
+ "bookTitle": "The Doom of the Night",
942
+ "address":" College University, 340 Oak Ave, Southampton, UK"},
943
+ {"type": "Author",
944
+ "guid": "4995bc37356aa",
945
+ "fullName": "Rosaleen Mench 3",
946
+ "bookTitle": "The Devil",
947
+ "address":" College University, 266 First St, Palo Alto, CA"},
948
+ {"type": "Author",
949
+ "guid": "4995bc37356bc",
950
+ "fullName": "Washington Rummel 4",
951
+ "bookTitle": "Man of Madness",
952
+ "address":" College University, 54 Castro St, San Francisco, CA"},
953
+ {"type": "Author",
954
+ "guid": "4995bc37356d0",
955
+ "fullName": "Leyton Jyllian 1",
956
+ "bookTitle": "The Menace of the Computers",
957
+ "address":" Springfield University, 432 First St, St. Louis, MO"},
958
+ {"type": "Author",
959
+ "guid": "4995bc37356e4",
960
+ "fullName": "Perce Pennington 3",
961
+ "bookTitle": "The Seventh Child",
962
+ "address":" College University, 178 Oak Ave, London, UK"},
963
+ {"type": "Author",
964
+ "guid": "4995bc37356f8",
965
+ "fullName": "Sabrina Beedell 3",
966
+ "bookTitle": "Runaway of Death",
967
+ "address":" Stanford University, 105 Lazaneo St, Ann Arbor, MI"},
968
+ {"type": "Author",
969
+ "guid": "4995bc3735713",
970
+ "fullName": "Mckenzie Carden 2",
971
+ "bookTitle": "The Universe",
972
+ "address":" Springfield University, 436 Broadway Blvd, Palo Alto, CA"},
973
+ {"type": "Author",
974
+ "guid": "4995bc3735728",
975
+ "fullName": "Ginny Finlay 2",
976
+ "bookTitle": "The Doom of the Massacre",
977
+ "address":" Foothill College, 56 Broadway Blvd, Wichita, KS"},
978
+ {"type": "Author",
979
+ "guid": "4995bc373573c",
980
+ "fullName": "Fox Omara 4",
981
+ "bookTitle": "The Madness Horns",
982
+ "address":" Foothill College, 239 Fifth Ave, London, UK"},
983
+ {"type": "Author",
984
+ "guid": "4995bc373574f",
985
+ "fullName": "Cherice Blatenberger 2",
986
+ "bookTitle": "The Claws of Fury",
987
+ "address":" Harvard, 235 Van Ness Blvd, Cupertino, CA"},
988
+ {"type": "Author",
989
+ "guid": "4995bc3735763",
990
+ "fullName": "Harriette Alington 4",
991
+ "bookTitle": "The Whispers",
992
+ "address":" College University, 203 Lazaneo St, Wichita, KS"},
993
+ {"type": "Author",
994
+ "guid": "4995bc3735777",
995
+ "fullName": "Eldon Ream 2",
996
+ "bookTitle": "The Revelation",
997
+ "address":" University of Southampton, 97 Broadway Blvd, Cambridge, MA"},
998
+ {"type": "Author",
999
+ "guid": "4995bc373578b",
1000
+ "fullName": "Ambrosine Echard 4",
1001
+ "bookTitle": "The Android of Madness",
1002
+ "address":" University of Southampton, 133 Oak Ave, Los Angeles, CA"},
1003
+ {"type": "Author",
1004
+ "guid": "4995bc373579f",
1005
+ "fullName": "Bekki Blunt 4",
1006
+ "bookTitle": "Evil of Fury",
1007
+ "address":" Springfield University, 236 Oak Ave, Los Angeles, CA"},
1008
+ {"type": "Author",
1009
+ "guid": "4995bc37357b2",
1010
+ "fullName": "Zena Giesler 1",
1011
+ "bookTitle": "The Terrible Ghosts",
1012
+ "address":" Foothill College, 228 Bloom St, Santa Clara, CA"},
1013
+ {"type": "Author",
1014
+ "guid": "4995bc37357c6",
1015
+ "fullName": "Lalo Pery 4",
1016
+ "bookTitle": "The Fury of the Devils",
1017
+ "address":" Michigan State University, 39 Lazaneo St, Cupertino, CA"},
1018
+ {"type": "Author",
1019
+ "guid": "4995bc37357da",
1020
+ "fullName": "Rowina Bicknell 2",
1021
+ "bookTitle": "Evil of Fury",
1022
+ "address":" University of Southampton, 471 Second St, Santa Clara, CA"},
1023
+ {"type": "Author",
1024
+ "guid": "4995bc37357ee",
1025
+ "fullName": "Candis Kanaga 4",
1026
+ "bookTitle": "The Operation",
1027
+ "address":" UC Santa Cruz, 11 Bloom St, London, UK"},
1028
+ {"type": "Author",
1029
+ "guid": "4995bc3735802",
1030
+ "fullName": "Jess Richter 4",
1031
+ "bookTitle": "The Bride of Fury",
1032
+ "address":" MIT, 91 University Loop, Seattle, WA"},
1033
+ {"type": "Author",
1034
+ "guid": "4995bc3735816",
1035
+ "fullName": "Elfreda Vanleer 1",
1036
+ "bookTitle": "The Madness of the Face",
1037
+ "address":" College University, 147 Main St, Cupertino, CA"},
1038
+ {"type": "Author",
1039
+ "guid": "4995bc373582a",
1040
+ "fullName": "Rolo Orner 1",
1041
+ "bookTitle": "The Dead Sea",
1042
+ "address":" London University, 475 Dana St, St. Louis, MO"},
1043
+ {"type": "Author",
1044
+ "guid": "4995bc373583e",
1045
+ "fullName": "Lottie Sherlock 1",
1046
+ "bookTitle": "The Robbers",
1047
+ "address":" Michigan State University, 306 Van Ness Blvd, New York, NY"},
1048
+ {"type": "Author",
1049
+ "guid": "4995bc3735851",
1050
+ "fullName": "Shyla Clarke 3",
1051
+ "bookTitle": "The Attack",
1052
+ "address":" College University, 299 Dana St, Cupertino, CA"},
1053
+ {"type": "Author",
1054
+ "guid": "4995bc3735865",
1055
+ "fullName": "Bethany Veith 3",
1056
+ "bookTitle": "The Secret Pyramids",
1057
+ "address":" Harvard, 248 Fifth Ave, Wichita, KS"},
1058
+ {"type": "Author",
1059
+ "guid": "4995bc3735879",
1060
+ "fullName": "Bertha Jesse 3",
1061
+ "bookTitle": "The Space of the Pit",
1062
+ "address":" Harvard, 364 University Loop, London, UK"},
1063
+ {"type": "Author",
1064
+ "guid": "4995bc373588d",
1065
+ "fullName": "Marylou Frankenberger 1",
1066
+ "bookTitle": "The Time Keys",
1067
+ "address":" College University, 322 Elm St, Cambridge, MA"},
1068
+ {"type": "Author",
1069
+ "guid": "4995bc37358a1",
1070
+ "fullName": "Roderick Powell 3",
1071
+ "bookTitle": "The Inferno of Death",
1072
+ "address":" University of Southampton, 266 Main St, St. Louis, MO"},
1073
+ {"type": "Author",
1074
+ "guid": "4995bc37358b5",
1075
+ "fullName": "Maureen Leach 3",
1076
+ "bookTitle": "The Unearthly Assassin",
1077
+ "address":" Santa Clara University, 170 Bloom St, Cupertino, CA"},
1078
+ {"type": "Author",
1079
+ "guid": "4995bc37358c8",
1080
+ "fullName": "Jaclyn Stiffey 1",
1081
+ "bookTitle": "Dominator of Death",
1082
+ "address":" Harvard, 236 Second St, Palo Alto, CA"},
1083
+ {"type": "Author",
1084
+ "guid": "4995bc37358dc",
1085
+ "fullName": "Lindsey Straub 3",
1086
+ "bookTitle": "The Decay of Space",
1087
+ "address":" UC Santa Cruz, 155 Castro St, Cambridge, MA"},
1088
+ {"type": "Author",
1089
+ "guid": "4995bc37358f7",
1090
+ "fullName": "Lyric Richards 1",
1091
+ "bookTitle": "The Paradise of Menace",
1092
+ "address":" Foothill College, 293 Elm St, Santa Clara, CA"},
1093
+ {"type": "Author",
1094
+ "guid": "4995bc373590b",
1095
+ "fullName": "Allycia Mackendrick 1",
1096
+ "bookTitle": "The Long Suns",
1097
+ "address":" Santa Clara University, 449 Castro St, San Francisco, CA"},
1098
+ {"type": "Author",
1099
+ "guid": "4995bc373591f",
1100
+ "fullName": "James Buzzard 2",
1101
+ "bookTitle": "The Death of the Thieves",
1102
+ "address":" University of Southampton, 341 Oak Ave, San Francisco, CA"},
1103
+ {"type": "Author",
1104
+ "guid": "4995bc3735933",
1105
+ "fullName": "Pamelia Mang 2",
1106
+ "bookTitle": "The Masque of Doom",
1107
+ "address":" Santa Clara University, 411 University Loop, Southampton, UK"},
1108
+ {"type": "Author",
1109
+ "guid": "4995bc3735947",
1110
+ "fullName": "Chandler Wildman 3",
1111
+ "bookTitle": "The Fear Awakening",
1112
+ "address":" Santa Clara University, 144 Main St, New York, NY"},
1113
+ {"type": "Author",
1114
+ "guid": "4995bc373595b",
1115
+ "fullName": "Tyrese Knight 2",
1116
+ "bookTitle": "The Messenger of Fear",
1117
+ "address":" Michigan State University, 342 Castro St, Ann Arbor, MI"},
1118
+ {"type": "Author",
1119
+ "guid": "4995bc373596e",
1120
+ "fullName": "Emery Cavalet 2",
1121
+ "bookTitle": "City of Menace",
1122
+ "address":" CalTech, 477 Fifth Ave, Ann Arbor, MI"},
1123
+ {"type": "Author",
1124
+ "guid": "4995bc3735982",
1125
+ "fullName": "Jackson Garratt 3",
1126
+ "bookTitle": "The Claws of Fear",
1127
+ "address":" College University, 25 Dana St, London, UK"},
1128
+ {"type": "Author",
1129
+ "guid": "4995bc3735996",
1130
+ "fullName": "Gussie Bowman 2",
1131
+ "bookTitle": "The Space of the Runaway",
1132
+ "address":" Michigan State University, 372 Main St, San Francisco, CA"},
1133
+ {"type": "Author",
1134
+ "guid": "4995bc37359aa",
1135
+ "fullName": "Kezia Henry 2",
1136
+ "bookTitle": "The Time Ark",
1137
+ "address":" Stanford University, 199 Main St, San Francisco, CA"},
1138
+ {"type": "Author",
1139
+ "guid": "4995bc37359bd",
1140
+ "fullName": "Quintin Hays 1",
1141
+ "bookTitle": "The Nightmares of Doom",
1142
+ "address":" Santa Clara University, 172 University Loop, London, UK"},
1143
+ {"type": "Author",
1144
+ "guid": "4995bc37359d1",
1145
+ "fullName": "Amalia Grant 2",
1146
+ "bookTitle": "The Fang Ghost",
1147
+ "address":" University of Southampton, 471 Fifth Ave, Seattle, WA"},
1148
+ {"type": "Author",
1149
+ "guid": "4995bc37359e5",
1150
+ "fullName": "Jasper Swarner 4",
1151
+ "bookTitle": "The Time Armageddon",
1152
+ "address":" Foothill College, 65 Lazaneo St, Southampton, UK"},
1153
+ {"type": "Author",
1154
+ "guid": "4995bc37359f9",
1155
+ "fullName": "Tania Scott 4",
1156
+ "bookTitle": "The Secret Monster",
1157
+ "address":" Michigan State University, 24 Second St, London, UK"},
1158
+ {"type": "Author",
1159
+ "guid": "4995bc3735a0d",
1160
+ "fullName": "Jarrod Schreckengost 3",
1161
+ "bookTitle": "Dreams of Menace",
1162
+ "address":" New York University, 126 Bloom St, Cambridge, MA"},
1163
+ {"type": "Author",
1164
+ "guid": "4995bc3735a21",
1165
+ "fullName": "Lesley Sanforth 3",
1166
+ "bookTitle": "The Jaws of Death",
1167
+ "address":" CalTech, 357 Castro St, New York, NY"},
1168
+ {"type": "Author",
1169
+ "guid": "4995bc3735a34",
1170
+ "fullName": "Roosevelt Stewart 3",
1171
+ "bookTitle": "The Fear of the Mist",
1172
+ "address":" College University, 6 Main St, Cambridge, MA"},
1173
+ {"type": "Author",
1174
+ "guid": "4995bc3735a48",
1175
+ "fullName": "Jacaline Mathews 2",
1176
+ "bookTitle": "The Day of the Runaway",
1177
+ "address":" Santa Clara University, 420 Broadway Blvd, Seattle, WA"},
1178
+ {"type": "Author",
1179
+ "guid": "4995bc3735a5c",
1180
+ "fullName": "Kaitlyn Paul 3",
1181
+ "bookTitle": "The Carnival",
1182
+ "address":" Michigan State University, 322 Bloom St, London, UK"},
1183
+ {"type": "Author",
1184
+ "guid": "4995bc3735a70",
1185
+ "fullName": "Christianne Taggart 1",
1186
+ "bookTitle": "The Doomed Bride",
1187
+ "address":" Michigan State University, 289 Van Ness Blvd, London, UK"},
1188
+ {"type": "Author",
1189
+ "guid": "4995bc3735a84",
1190
+ "fullName": "Lawrie Toyley 1",
1191
+ "bookTitle": "The Night of the Ice",
1192
+ "address":" University of Southampton, 367 University Loop, Palo Alto, CA"},
1193
+ {"type": "Author",
1194
+ "guid": "4995bc3735a98",
1195
+ "fullName": "Gladwyn Handyside 1",
1196
+ "bookTitle": "The Fury Face",
1197
+ "address":" Springfield University, 350 University Loop, Wichita, KS"},
1198
+ {"type": "Author",
1199
+ "guid": "4995bc3735ab0",
1200
+ "fullName": "Raphael Wilks 4",
1201
+ "bookTitle": "Myth of Madness",
1202
+ "address":" CalTech, 187 Fifth Ave, London, UK"},
1203
+ {"type": "Author",
1204
+ "guid": "4995bc3735ad1",
1205
+ "fullName": "Matilda Rockwell 3",
1206
+ "bookTitle": "The Unearthly Assassin",
1207
+ "address":" Stanford University, 84 Fifth Ave, Southampton, UK"},
1208
+ {"type": "Author",
1209
+ "guid": "4995bc3735ae5",
1210
+ "fullName": "Alan Brown 4",
1211
+ "bookTitle": "The Menace of the Visitor",
1212
+ "address":" Springfield University, 45 Oak Ave, Santa Clara, CA"},
1213
+ {"type": "Author",
1214
+ "guid": "4995bc3735af8",
1215
+ "fullName": "Romy Ward 3",
1216
+ "bookTitle": "The Space Underworld",
1217
+ "address":" Harvard, 387 Lazaneo St, Los Angeles, CA"},
1218
+ {"type": "Author",
1219
+ "guid": "4995bc3735b0c",
1220
+ "fullName": "Eldreda Flick 2",
1221
+ "bookTitle": "The Death of the Dominators",
1222
+ "address":" MIT, 453 Oak Ave, Santa Clara, CA"},
1223
+ {"type": "Author",
1224
+ "guid": "4995bc3735b20",
1225
+ "fullName": "Em Leichter 1",
1226
+ "bookTitle": "The Future Web",
1227
+ "address":" University of Southampton, 291 First St, Santa Clara, CA"},
1228
+ {"type": "Author",
1229
+ "guid": "4995bc3735b34",
1230
+ "fullName": "Janella Warner 3",
1231
+ "bookTitle": "The Final Claws",
1232
+ "address":" Springfield University, 398 Castro St, New York, NY"},
1233
+ {"type": "Author",
1234
+ "guid": "4995bc3735b48",
1235
+ "fullName": "Chip Haynes 3",
1236
+ "bookTitle": "The Menace Thieves",
1237
+ "address":" Michigan State University, 490 Broadway Blvd, Seattle, WA"},
1238
+ {"type": "Author",
1239
+ "guid": "4995bc3735b5c",
1240
+ "fullName": "Lita Rumbaugh 3",
1241
+ "bookTitle": "The Child of Space",
1242
+ "address":" Springfield University, 444 First St, Ann Arbor, MI"},
1243
+ {"type": "Author",
1244
+ "guid": "4995bc3735b6f",
1245
+ "fullName": "Zena Giesler 3",
1246
+ "bookTitle": "The Deadly Memories",
1247
+ "address":" Harvard, 420 Main St, Ann Arbor, MI"},
1248
+ {"type": "Author",
1249
+ "guid": "4995bc3735b83",
1250
+ "fullName": "Polly Van 3",
1251
+ "bookTitle": "Horns of Day",
1252
+ "address":" New York University, 57 Dana St, Palo Alto, CA"},
1253
+ {"type": "Author",
1254
+ "guid": "4995bc3735b97",
1255
+ "fullName": "Ceara Sanner 1",
1256
+ "bookTitle": "The Evil Assassin",
1257
+ "address":" Michigan State University, 410 Second St, St. Louis, MO"},
1258
+ {"type": "Author",
1259
+ "guid": "4995bc3735bab",
1260
+ "fullName": "Nola Bell 4",
1261
+ "bookTitle": "The Last Alien",
1262
+ "address":" Harvard, 261 Oak Ave, Seattle, WA"},
1263
+ {"type": "Author",
1264
+ "guid": "4995bc3735bbf",
1265
+ "fullName": "Hamilton Heyman 1",
1266
+ "bookTitle": "The Minds of Madness",
1267
+ "address":" New York University, 352 Fifth Ave, Cambridge, MA"},
1268
+ {"type": "Author",
1269
+ "guid": "4995bc3735bd2",
1270
+ "fullName": "Neville Mildred 3",
1271
+ "bookTitle": "Mutants of Night",
1272
+ "address":" CalTech, 115 University Loop, Ann Arbor, MI"},
1273
+ {"type": "Author",
1274
+ "guid": "4995bc3735be6",
1275
+ "fullName": "Fran Willcox 4",
1276
+ "bookTitle": "The Menace of the Spider",
1277
+ "address":" London University, 432 Second St, San Francisco, CA"},
1278
+ {"type": "Author",
1279
+ "guid": "4995bc3735bfa",
1280
+ "fullName": "Matty Cypret 3",
1281
+ "bookTitle": "The Day of the Vengeance",
1282
+ "address":" College University, 218 Lazaneo St, Cupertino, CA"},
1283
+ {"type": "Author",
1284
+ "guid": "4995bc3735c0e",
1285
+ "fullName": "Austen Fonblanque 4",
1286
+ "bookTitle": "The Space Reign",
1287
+ "address":" Foothill College, 142 Bloom St, Cupertino, CA"},
1288
+ {"type": "Author",
1289
+ "guid": "4995bc3735c21",
1290
+ "fullName": "Felix Mitchell 4",
1291
+ "bookTitle": "God of Doom",
1292
+ "address":" Foothill College, 45 Castro St, Wichita, KS"},
1293
+ {"type": "Author",
1294
+ "guid": "4995bc3735c35",
1295
+ "fullName": "Matty Cypret 3",
1296
+ "bookTitle": "The Night of the Leisure",
1297
+ "address":" London University, 9 Fifth Ave, Seattle, WA"},
1298
+ {"type": "Author",
1299
+ "guid": "4995bc3735c49",
1300
+ "fullName": "Cassarah Vinsant 4",
1301
+ "bookTitle": "The Seed of Night",
1302
+ "address":" Michigan State University, 20 Van Ness Blvd, London, UK"},
1303
+ {"type": "Author",
1304
+ "guid": "4995bc3735c5d",
1305
+ "fullName": "Vernon Perkins 1",
1306
+ "bookTitle": "Reign of Night",
1307
+ "address":" MIT, 274 Fifth Ave, Cupertino, CA"},
1308
+ {"type": "Author",
1309
+ "guid": "4995bc3735c71",
1310
+ "fullName": "Shirley Mingle 2",
1311
+ "bookTitle": "The Smugglers of Menace",
1312
+ "address":" Harvard, 125 Dana St, Cambridge, MA"},
1313
+ {"type": "Author",
1314
+ "guid": "4995bc3735c85",
1315
+ "fullName": "Kemp Lord 4",
1316
+ "bookTitle": "The Horror Angel",
1317
+ "address":" London University, 159 Second St, Palo Alto, CA"},
1318
+ {"type": "Author",
1319
+ "guid": "4995bc3735c98",
1320
+ "fullName": "Kermit Throckmorton 1",
1321
+ "bookTitle": "The Tenth Web",
1322
+ "address":" London University, 106 Van Ness Blvd, Palo Alto, CA"},
1323
+ {"type": "Author",
1324
+ "guid": "4995bc3735cb3",
1325
+ "fullName": "Delma Auman 4",
1326
+ "bookTitle": "Killer of Night",
1327
+ "address":" University of Southampton, 226 Second St, Cambridge, MA"},
1328
+ {"type": "Author",
1329
+ "guid": "4995bc3735cc7",
1330
+ "fullName": "Marly Friedline 4",
1331
+ "bookTitle": "Runaway of Horror",
1332
+ "address":" Foothill College, 256 Dana St, San Francisco, CA"},
1333
+ {"type": "Author",
1334
+ "guid": "4995bc3735cdb",
1335
+ "fullName": "Noah Kline 4",
1336
+ "bookTitle": "The Menace of the Ragnarok",
1337
+ "address":" Springfield University, 63 Bloom St, St. Louis, MO"},
1338
+ {"type": "Author",
1339
+ "guid": "4995bc3735cef",
1340
+ "fullName": "Wendy Sayre 1",
1341
+ "bookTitle": "History of Doom",
1342
+ "address":" New York University, 39 Castro St, Southampton, UK"},
1343
+ {"type": "Author",
1344
+ "guid": "4995bc3735d03",
1345
+ "fullName": "Izzy Wyatt 4",
1346
+ "bookTitle": "The Assassin of Fear",
1347
+ "address":" University of Southampton, 73 Bloom St, Los Angeles, CA"},
1348
+ {"type": "Author",
1349
+ "guid": "4995bc3735d17",
1350
+ "fullName": "Ann Sachse 2",
1351
+ "bookTitle": "The Doom Fury",
1352
+ "address":" CalTech, 133 Elm St, Ann Arbor, MI"},
1353
+ {"type": "Author",
1354
+ "guid": "4995bc3735d2b",
1355
+ "fullName": "Ebba Hil 1",
1356
+ "bookTitle": "Talons of Madness",
1357
+ "address":" Harvard, 54 Broadway Blvd, Santa Clara, CA"},
1358
+ {"type": "Author",
1359
+ "guid": "4995bc3735d3f",
1360
+ "fullName": "Alexina Compton 2",
1361
+ "bookTitle": "War of Time",
1362
+ "address":" University of Southampton, 44 Main St, St. Louis, MO"},
1363
+ {"type": "Author",
1364
+ "guid": "4995bc3735d53",
1365
+ "fullName": "Sybella Henley 2",
1366
+ "bookTitle": "The Illusion Revelation",
1367
+ "address":" UC Santa Cruz, 107 Van Ness Blvd, Santa Clara, CA"},
1368
+ {"type": "Author",
1369
+ "guid": "4995bc3735d66",
1370
+ "fullName": "Tylar Monahan 1",
1371
+ "bookTitle": "Image of Space",
1372
+ "address":" London University, 126 Second St, Los Angeles, CA"},
1373
+ {"type": "Author",
1374
+ "guid": "4995bc3735d7a",
1375
+ "fullName": " 4",
1376
+ "bookTitle": "The False Masque",
1377
+ "address":" MIT, 318 Oak Ave, Wichita, KS"},
1378
+ {"type": "Author",
1379
+ "guid": "4995bc3735d91",
1380
+ "fullName": "Lorrin Reichard 2",
1381
+ "bookTitle": "The Fear of the Androids",
1382
+ "address":" Springfield University, 467 Main St, Cambridge, MA"},
1383
+ {"type": "Author",
1384
+ "guid": "4995bc3735da5",
1385
+ "fullName": "Harriette Alington 1",
1386
+ "bookTitle": "The Future of Time",
1387
+ "address":" Stanford University, 5 Castro St, St. Louis, MO"},
1388
+ {"type": "Author",
1389
+ "guid": "4995bc3735db9",
1390
+ "fullName": "Dominic Groah 3",
1391
+ "bookTitle": "Smuggler of Day",
1392
+ "address":" UC Santa Cruz, 246 Fifth Ave, St. Louis, MO"},
1393
+ {"type": "Author",
1394
+ "guid": "4995bc3735dcc",
1395
+ "fullName": "Everard Richardson 1",
1396
+ "bookTitle": "The Revelation",
1397
+ "address":" Springfield University, 261 Dana St, Seattle, WA"},
1398
+ {"type": "Author",
1399
+ "guid": "4995bc3735de0",
1400
+ "fullName": "Gladwyn Handyside 2",
1401
+ "bookTitle": "The Secret Monster",
1402
+ "address":" UC Santa Cruz, 94 Main St, Wichita, KS"},
1403
+ {"type": "Author",
1404
+ "guid": "4995bc3735df4",
1405
+ "fullName": "Kyla Moore 3",
1406
+ "bookTitle": "The Horror Robot",
1407
+ "address":" Santa Clara University, 456 Castro St, London, UK"},
1408
+ {"type": "Author",
1409
+ "guid": "4995bc3735e08",
1410
+ "fullName": "Latonya Roche 4",
1411
+ "bookTitle": "The Machines Spider",
1412
+ "address":" Michigan State University, 429 Elm St, Palo Alto, CA"},
1413
+ {"type": "Author",
1414
+ "guid": "4995bc3735e1c",
1415
+ "fullName": "Chanel Boyd 2",
1416
+ "bookTitle": "The Horror of the Minds",
1417
+ "address":" London University, 482 Elm St, Southampton, UK"},
1418
+ {"type": "Author",
1419
+ "guid": "4995bc3735e2f",
1420
+ "fullName": "Delice Kimmons 4",
1421
+ "bookTitle": "The Death of the Memory",
1422
+ "address":" MIT, 257 Broadway Blvd, Palo Alto, CA"},
1423
+ {"type": "Author",
1424
+ "guid": "4995bc3735e43",
1425
+ "fullName": "Cornelius Metzer 2",
1426
+ "bookTitle": "City of Menace",
1427
+ "address":" Springfield University, 353 Bloom St, Wichita, KS"},
1428
+ {"type": "Author",
1429
+ "guid": "4995bc3735e57",
1430
+ "fullName": "Meg Coveney 2",
1431
+ "bookTitle": "The Assassin of Fear",
1432
+ "address":" College University, 348 Lazaneo St, Los Angeles, CA"},
1433
+ {"type": "Author",
1434
+ "guid": "4995bc3735e6a",
1435
+ "fullName": "Roxanna Loewentsein 2",
1436
+ "bookTitle": "The Riders of Death",
1437
+ "address":" CalTech, 125 Bloom St, St. Louis, MO"},
1438
+ {"type": "Author",
1439
+ "guid": "4995bc3735e7e",
1440
+ "fullName": "Emmett Agg 2",
1441
+ "bookTitle": "The Last Mists",
1442
+ "address":" UC Santa Cruz, 210 Oak Ave, Los Angeles, CA"},
1443
+ {"type": "Author",
1444
+ "guid": "4995bc3735e99",
1445
+ "fullName": "Junior Christman 4",
1446
+ "bookTitle": "Ragnarok of Space",
1447
+ "address":" Foothill College, 264 Second St, Palo Alto, CA"},
1448
+ {"type": "Author",
1449
+ "guid": "4995bc3735eae",
1450
+ "fullName": "Wendy Sayre 2",
1451
+ "bookTitle": "The Madness Myth",
1452
+ "address":" University of Southampton, 398 Bloom St, Santa Clara, CA"},
1453
+ {"type": "Author",
1454
+ "guid": "4995bc3735ec0",
1455
+ "fullName": "Amandine Catlay 1",
1456
+ "bookTitle": "The Night Inferno",
1457
+ "address":" MIT, 364 Oak Ave, Santa Clara, CA"},
1458
+ {"type": "Author",
1459
+ "guid": "4995bc3735ed8",
1460
+ "fullName": "Gordon Zadovsky 4",
1461
+ "bookTitle": "The Key of Death",
1462
+ "address":" Foothill College, 68 Fifth Ave, Los Angeles, CA"},
1463
+ {"type": "Author",
1464
+ "guid": "4995bc3735eec",
1465
+ "fullName": "Earline Judge 1",
1466
+ "bookTitle": "The Doom of the Claws",
1467
+ "address":" CalTech, 462 Bloom St, London, UK"},
1468
+ {"type": "Author",
1469
+ "guid": "4995bc3735f00",
1470
+ "fullName": "Chryssa Robertson 3",
1471
+ "bookTitle": "The Fear of Day",
1472
+ "address":" New York University, 323 First St, San Francisco, CA"},
1473
+ {"type": "Author",
1474
+ "guid": "4995bc3735f14",
1475
+ "fullName": "Tim Beck 4",
1476
+ "bookTitle": "The Fear of the Arc",
1477
+ "address":" New York University, 287 Lazaneo St, Seattle, WA"},
1478
+ {"type": "Author",
1479
+ "guid": "4995bc3735f28",
1480
+ "fullName": "Sarah Chapman 4",
1481
+ "bookTitle": "Pyramids of Menace",
1482
+ "address":" University of Southampton, 289 Lazaneo St, Los Angeles, CA"},
1483
+ {"type": "Author",
1484
+ "guid": "4995bc3735f3b",
1485
+ "fullName": "Serrena Canham 2",
1486
+ "bookTitle": "The Ultimate Seed",
1487
+ "address":" Springfield University, 268 Castro St, Seattle, WA"},
1488
+ {"type": "Author",
1489
+ "guid": "4995bc3735f4f",
1490
+ "fullName": "Pierce Conrad 4",
1491
+ "bookTitle": "Future of Night",
1492
+ "address":" New York University, 44 Elm St, Southampton, UK"},
1493
+ {"type": "Author",
1494
+ "guid": "4995bc3735f63",
1495
+ "fullName": "Sheard Alcocke 1",
1496
+ "bookTitle": "The Claws of Day",
1497
+ "address":" Springfield University, 23 Van Ness Blvd, Wichita, KS"},
1498
+ {"type": "Author",
1499
+ "guid": "4995bc3735f77",
1500
+ "fullName": "Prue Putnam 1",
1501
+ "bookTitle": "Robbers of Doom",
1502
+ "address":" College University, 244 Main St, San Francisco, CA"},
1503
+ {"type": "Author",
1504
+ "guid": "4995bc3735f8a",
1505
+ "fullName": "Kezia Henry 3",
1506
+ "bookTitle": "Creature of Space",
1507
+ "address":" Stanford University, 440 Lazaneo St, New York, NY"},
1508
+ {"type": "Author",
1509
+ "guid": "4995bc3735f9f",
1510
+ "fullName": "Chrystal Prevatt 4",
1511
+ "bookTitle": "The Day of the Mirror",
1512
+ "address":" New York University, 135 Main St, Cupertino, CA"},
1513
+ {"type": "Author",
1514
+ "guid": "4995bc3735fb3",
1515
+ "fullName": "Kim Oppenheimer 2",
1516
+ "bookTitle": "The Killers of Time",
1517
+ "address":" London University, 226 Oak Ave, Cambridge, MA"},
1518
+ {"type": "Author",
1519
+ "guid": "4995bc3735fc8",
1520
+ "fullName": "Adolph Hayhurst 2",
1521
+ "bookTitle": "Messenger of Fear",
1522
+ "address":" MIT, 298 Fifth Ave, Ann Arbor, MI"},
1523
+ {"type": "Author",
1524
+ "guid": "4995bc3735fdb",
1525
+ "fullName": "Luann Garneis 1",
1526
+ "bookTitle": "The Masque",
1527
+ "address":" Santa Clara University, 109 Van Ness Blvd, Cupertino, CA"},
1528
+ {"type": "Author",
1529
+ "guid": "4995bc3735ff0",
1530
+ "fullName": "Hazel Holts 4",
1531
+ "bookTitle": "The Pirate Memory",
1532
+ "address":" Santa Clara University, 241 Dana St, London, UK"},
1533
+ {"type": "Author",
1534
+ "guid": "4995bc3736005",
1535
+ "fullName": "Brittney Lowe 1",
1536
+ "bookTitle": "The Time Smugglers",
1537
+ "address":" Springfield University, 216 University Loop, Palo Alto, CA"},
1538
+ {"type": "Author",
1539
+ "guid": "4995bc3736367",
1540
+ "fullName": "Missie Marjorie 2",
1541
+ "bookTitle": "The Computer Time",
1542
+ "address":" Michigan State University, 306 Elm St, New York, NY"},
1543
+ {"type": "Author",
1544
+ "guid": "4995bc3736381",
1545
+ "fullName": "Blondie Rogers 3",
1546
+ "bookTitle": "The Empty Runaway",
1547
+ "address":" UC Santa Cruz, 336 Castro St, Seattle, WA"},
1548
+ {"type": "Author",
1549
+ "guid": "4995bc3736396",
1550
+ "fullName": "Kyla Moore 2",
1551
+ "bookTitle": "The First Cave",
1552
+ "address":" Michigan State University, 269 University Loop, Santa Clara, CA"},
1553
+ {"type": "Author",
1554
+ "guid": "4995bc37363ab",
1555
+ "fullName": "Kaylynn Herndon 4",
1556
+ "bookTitle": "The Time of the Seeds",
1557
+ "address":" Stanford University, 201 Bloom St, Seattle, WA"},
1558
+ {"type": "Author",
1559
+ "guid": "4995bc37363bf",
1560
+ "fullName": "Jancis Busk 1",
1561
+ "bookTitle": "The Ultimate Resurrection",
1562
+ "address":" Harvard, 314 Main St, London, UK"},
1563
+ {"type": "Author",
1564
+ "guid": "4995bc37363e0",
1565
+ "fullName": "Linnie Fraser 3",
1566
+ "bookTitle": "The God",
1567
+ "address":" University of Southampton, 302 Fifth Ave, San Francisco, CA"},
1568
+ {"type": "Author",
1569
+ "guid": "4995bc37363f5",
1570
+ "fullName": "Tyrell Riggle 1",
1571
+ "bookTitle": "Visitors of Time",
1572
+ "address":" University of Southampton, 258 First St, Southampton, UK"},
1573
+ {"type": "Author",
1574
+ "guid": "4995bc373640a",
1575
+ "fullName": "Luanne Mens 3",
1576
+ "bookTitle": "The Day Sea",
1577
+ "address":" Stanford University, 422 Fifth Ave, San Francisco, CA"},
1578
+ {"type": "Author",
1579
+ "guid": "4995bc373641e",
1580
+ "fullName": "Everitt Thompson 3",
1581
+ "bookTitle": "The Enemies",
1582
+ "address":" University of Southampton, 57 Fifth Ave, Cambridge, MA"},
1583
+ {"type": "Author",
1584
+ "guid": "4995bc3736432",
1585
+ "fullName": "Robynne Unk 4",
1586
+ "bookTitle": "The Fear of the Devil",
1587
+ "address":" Springfield University, 326 Castro St, Cambridge, MA"},
1588
+ {"type": "Author",
1589
+ "guid": "4995bc373644e",
1590
+ "fullName": "Lake Elder 1",
1591
+ "bookTitle": "Spiders of Death",
1592
+ "address":" University of Southampton, 237 Fifth Ave, Santa Clara, CA"},
1593
+ {"type": "Author",
1594
+ "guid": "4995bc3736465",
1595
+ "fullName": "Gale Cross 4",
1596
+ "bookTitle": "The Mutants",
1597
+ "address":" Foothill College, 323 Broadway Blvd, St. Louis, MO"},
1598
+ {"type": "Author",
1599
+ "guid": "4995bc3736479",
1600
+ "fullName": "Amy Mcelroy 4",
1601
+ "bookTitle": "The Caves of Madness",
1602
+ "address":" MIT, 255 Fifth Ave, San Francisco, CA"},
1603
+ {"type": "Author",
1604
+ "guid": "4995bc373648d",
1605
+ "fullName": "Lowell Holtzer 3",
1606
+ "bookTitle": "The Spider",
1607
+ "address":" College University, 370 Oak Ave, Cambridge, MA"},
1608
+ {"type": "Author",
1609
+ "guid": "4995bc37364a1",
1610
+ "fullName": "Zola Haines 4",
1611
+ "bookTitle": "The Fear of the Mist",
1612
+ "address":" New York University, 286 Fifth Ave, Palo Alto, CA"},
1613
+ {"type": "Author",
1614
+ "guid": "4995bc37364b4",
1615
+ "fullName": "Pearce Swartzbaugh 4",
1616
+ "bookTitle": "The Menace Killers",
1617
+ "address":" Stanford University, 34 Dana St, New York, NY"},
1618
+ {"type": "Author",
1619
+ "guid": "4995bc37364cc",
1620
+ "fullName": "Lorayne Losey 1",
1621
+ "bookTitle": "The Messenger",
1622
+ "address":" Springfield University, 70 University Loop, Cupertino, CA"},
1623
+ {"type": "Author",
1624
+ "guid": "4995bc37364e0",
1625
+ "fullName": "Perdita Casteel 3",
1626
+ "bookTitle": "Illusion of Doom",
1627
+ "address":" College University, 103 First St, Los Angeles, CA"},
1628
+ {"type": "Author",
1629
+ "guid": "4995bc37364f4",
1630
+ "fullName": "Jules Leech 4",
1631
+ "bookTitle": "The Dominator",
1632
+ "address":" Foothill College, 405 Broadway Blvd, St. Louis, MO"},
1633
+ {"type": "Author",
1634
+ "guid": "4995bc3736508",
1635
+ "fullName": "Reagan Ironmonger 1",
1636
+ "bookTitle": "Hive of Menace",
1637
+ "address":" London University, 447 University Loop, Los Angeles, CA"},
1638
+ {"type": "Author",
1639
+ "guid": "4995bc373651c",
1640
+ "fullName": "Bevis Powers 3",
1641
+ "bookTitle": "The Sun of Death",
1642
+ "address":" Foothill College, 447 Main St, Santa Clara, CA"},
1643
+ {"type": "Author",
1644
+ "guid": "4995bc3736530",
1645
+ "fullName": "Kip Mosser 4",
1646
+ "bookTitle": "The Door of Space",
1647
+ "address":" Stanford University, 294 University Loop, London, UK"},
1648
+ {"type": "Author",
1649
+ "guid": "4995bc3736543",
1650
+ "fullName": "Jilly Poorbaugh 3",
1651
+ "bookTitle": "The Doom of the Battlefield",
1652
+ "address":" Harvard, 360 Elm St, Los Angeles, CA"},
1653
+ {"type": "Author",
1654
+ "guid": "4995bc3736557",
1655
+ "fullName": "Chip Haynes 1",
1656
+ "bookTitle": "The Unearthly Androids",
1657
+ "address":" MIT, 483 Elm St, Cupertino, CA"},
1658
+ {"type": "Author",
1659
+ "guid": "4995bc373656b",
1660
+ "fullName": "Daffodil Harper 4",
1661
+ "bookTitle": "The War of Fury",
1662
+ "address":" Michigan State University, 483 Second St, Palo Alto, CA"},
1663
+ {"type": "Author",
1664
+ "guid": "4995bc373657f",
1665
+ "fullName": "Dorthy Wilson 2",
1666
+ "bookTitle": "The Mind Crime",
1667
+ "address":" Michigan State University, 412 Broadway Blvd, Seattle, WA"},
1668
+ {"type": "Author",
1669
+ "guid": "4995bc3736593",
1670
+ "fullName": "Ridley Ewing 3",
1671
+ "bookTitle": "The Night of the Universe",
1672
+ "address":" New York University, 287 First St, Wichita, KS"},
1673
+ {"type": "Author",
1674
+ "guid": "4995bc37365a7",
1675
+ "fullName": "Brennan Whishaw 1",
1676
+ "bookTitle": "The War of Fury",
1677
+ "address":" University of Southampton, 499 First St, Los Angeles, CA"},
1678
+ {"type": "Author",
1679
+ "guid": "4995bc37365bb",
1680
+ "fullName": "Hale Alliman 1",
1681
+ "bookTitle": "Devils of Fury",
1682
+ "address":" Foothill College, 265 Main St, Southampton, UK"},
1683
+ {"type": "Author",
1684
+ "guid": "4995bc37365d6",
1685
+ "fullName": "Petronella Eckhardstein 1",
1686
+ "bookTitle": "The Mind Massacre",
1687
+ "address":" MIT, 78 Castro St, St. Louis, MO"},
1688
+ {"type": "Author",
1689
+ "guid": "4995bc37365ea",
1690
+ "fullName": "Maurice Bagley 4",
1691
+ "bookTitle": "The Decay Claws",
1692
+ "address":" Foothill College, 159 Fifth Ave, Ann Arbor, MI"},
1693
+ {"type": "Author",
1694
+ "guid": "4995bc37365fe",
1695
+ "fullName": "Shaun Drabble 3",
1696
+ "bookTitle": "The Fang Secret",
1697
+ "address":" Michigan State University, 79 Broadway Blvd, Wichita, KS"},
1698
+ {"type": "Author",
1699
+ "guid": "4995bc3736612",
1700
+ "fullName": "Brady Smail 3",
1701
+ "bookTitle": "Sound of Time",
1702
+ "address":" UC Santa Cruz, 456 Elm St, Los Angeles, CA"},
1703
+ {"type": "Author",
1704
+ "guid": "4995bc3736626",
1705
+ "fullName": "Juliet Shaw 3",
1706
+ "bookTitle": "The Ghost Universe",
1707
+ "address":" New York University, 379 Castro St, Los Angeles, CA"},
1708
+ {"type": "Author",
1709
+ "guid": "4995bc373663a",
1710
+ "fullName": "Lorayne Losey 3",
1711
+ "bookTitle": "The Jaws of Death",
1712
+ "address":" Michigan State University, 398 University Loop, Ann Arbor, MI"},
1713
+ {"type": "Author",
1714
+ "guid": "4995bc373664e",
1715
+ "fullName": "Lisha Enderly 4",
1716
+ "bookTitle": "The Web",
1717
+ "address":" Santa Clara University, 86 Broadway Blvd, Ann Arbor, MI"},
1718
+ {"type": "Author",
1719
+ "guid": "4995bc3736662",
1720
+ "fullName": "Becky Davis 1",
1721
+ "bookTitle": "The Doom of the Claws",
1722
+ "address":" London University, 284 Van Ness Blvd, New York, NY"},
1723
+ {"type": "Author",
1724
+ "guid": "4995bc3736676",
1725
+ "fullName": "Leyton Jyllian 3",
1726
+ "bookTitle": "Operation of Night",
1727
+ "address":" MIT, 137 Dana St, Wichita, KS"},
1728
+ {"type": "Author",
1729
+ "guid": "4995bc373668a",
1730
+ "fullName": "Alice Yates 1",
1731
+ "bookTitle": "The Madness of the Spiders",
1732
+ "address":" Stanford University, 484 First St, London, UK"},
1733
+ {"type": "Author",
1734
+ "guid": "4995bc373669d",
1735
+ "fullName": "Lemoine James 1",
1736
+ "bookTitle": "The Deadly Mutants",
1737
+ "address":" Springfield University, 359 Oak Ave, Cambridge, MA"},
1738
+ {"type": "Author",
1739
+ "guid": "4995bc37366b1",
1740
+ "fullName": "Baylee Raybould 1",
1741
+ "bookTitle": "Curse of Fear",
1742
+ "address":" Michigan State University, 154 Lazaneo St, London, UK"},
1743
+ {"type": "Author",
1744
+ "guid": "4995bc37366c5",
1745
+ "fullName": "Ford Steiner 2",
1746
+ "bookTitle": "The Masque of Doom",
1747
+ "address":" Michigan State University, 390 Second St, Southampton, UK"},
1748
+ {"type": "Author",
1749
+ "guid": "4995bc37366d9",
1750
+ "fullName": "Laureen Moon 1",
1751
+ "bookTitle": "The Fear Memories",
1752
+ "address":" Stanford University, 372 Castro St, Ann Arbor, MI"},
1753
+ {"type": "Author",
1754
+ "guid": "4995bc37366ed",
1755
+ "fullName": "Colin Hair 4",
1756
+ "bookTitle": "The Time of the Secret",
1757
+ "address":" Springfield University, 464 Bloom St, Cupertino, CA"},
1758
+ {"type": "Author",
1759
+ "guid": "4995bc3736701",
1760
+ "fullName": "Haven Crissman 1",
1761
+ "bookTitle": "The Armageddon Laboratory",
1762
+ "address":" College University, 141 Lazaneo St, Palo Alto, CA"},
1763
+ {"type": "Author",
1764
+ "guid": "4995bc373671a",
1765
+ "fullName": "Ludmilla Candles 2",
1766
+ "bookTitle": "The Pyramids",
1767
+ "address":" CalTech, 303 Bloom St, Southampton, UK"},
1768
+ {"type": "Author",
1769
+ "guid": "4995bc373672f",
1770
+ "fullName": "Alberta Fowler 1",
1771
+ "bookTitle": "The Day of the Door",
1772
+ "address":" London University, 271 University Loop, Cambridge, MA"},
1773
+ {"type": "Author",
1774
+ "guid": "4995bc3736744",
1775
+ "fullName": "Lowell Holtzer 3",
1776
+ "bookTitle": "The Night of the Bandits",
1777
+ "address":" University of Southampton, 173 Second St, Seattle, WA"},
1778
+ {"type": "Author",
1779
+ "guid": "4995bc3736758",
1780
+ "fullName": "Lesley Sanforth 4",
1781
+ "bookTitle": "Robbers of Doom",
1782
+ "address":" University of Southampton, 129 Van Ness Blvd, Seattle, WA"},
1783
+ {"type": "Author",
1784
+ "guid": "4995bc373676c",
1785
+ "fullName": "Vic Close 1",
1786
+ "bookTitle": "The Bride of Horror",
1787
+ "address":" MIT, 390 Main St, Santa Clara, CA"},
1788
+ {"type": "Author",
1789
+ "guid": "4995bc3736780",
1790
+ "fullName": "Lorraine Butler 2",
1791
+ "bookTitle": "The Time of the Seeds",
1792
+ "address":" New York University, 13 Oak Ave, Wichita, KS"},
1793
+ {"type": "Author",
1794
+ "guid": "4995bc3736794",
1795
+ "fullName": "Cedar Garry 3",
1796
+ "bookTitle": "The Madness Myth",
1797
+ "address":" CalTech, 45 Fifth Ave, New York, NY"},
1798
+ {"type": "Author",
1799
+ "guid": "4995bc37367a8",
1800
+ "fullName": "Sinclair Dale 2",
1801
+ "bookTitle": "The Night of the Dominator",
1802
+ "address":" New York University, 493 Bloom St, Cambridge, MA"},
1803
+ {"type": "Author",
1804
+ "guid": "4995bc37367bc",
1805
+ "fullName": "Goldie Pickering 1",
1806
+ "bookTitle": "Menace of Day",
1807
+ "address":" University of Southampton, 216 First St, St. Louis, MO"},
1808
+ {"type": "Author",
1809
+ "guid": "4995bc37367cf",
1810
+ "fullName": "Kaleigh Brooks 2",
1811
+ "bookTitle": "The Doom Fury",
1812
+ "address":" UC Santa Cruz, 189 Bloom St, London, UK"},
1813
+ {"type": "Author",
1814
+ "guid": "4995bc37367e3",
1815
+ "fullName": "Rain Joyce 3",
1816
+ "bookTitle": "The Day",
1817
+ "address":" New York University, 499 Dana St, Palo Alto, CA"},
1818
+ {"type": "Author",
1819
+ "guid": "4995bc37367f7",
1820
+ "fullName": "Merton Fillmore 3",
1821
+ "bookTitle": "Dreams of Menace",
1822
+ "address":" Santa Clara University, 98 Bloom St, Cambridge, MA"},
1823
+ {"type": "Author",
1824
+ "guid": "4995bc373680b",
1825
+ "fullName": "Bekki Blunt 4",
1826
+ "bookTitle": "The Whispers of Day",
1827
+ "address":" UC Santa Cruz, 112 Lazaneo St, Ann Arbor, MI"},
1828
+ {"type": "Author",
1829
+ "guid": "4995bc373681f",
1830
+ "fullName": "Godric Sommer 1",
1831
+ "bookTitle": "Men of Night",
1832
+ "address":" College University, 88 Lazaneo St, New York, NY"},
1833
+ {"type": "Author",
1834
+ "guid": "4995bc3736832",
1835
+ "fullName": "Thorburn Smith 4",
1836
+ "bookTitle": "Door of Horror",
1837
+ "address":" CalTech, 401 Elm St, Santa Clara, CA"},
1838
+ {"type": "Author",
1839
+ "guid": "4995bc3736846",
1840
+ "fullName": "Frankie Giesen 3",
1841
+ "bookTitle": "The Jaws",
1842
+ "address":" Harvard, 117 Van Ness Blvd, London, UK"},
1843
+ {"type": "Author",
1844
+ "guid": "4995bc373685a",
1845
+ "fullName": "Brock Young 3",
1846
+ "bookTitle": "The Killer Key",
1847
+ "address":" New York University, 225 Van Ness Blvd, Santa Clara, CA"},
1848
+ {"type": "Author",
1849
+ "guid": "4995bc373686e",
1850
+ "fullName": "Pleasance Mcloskey 1",
1851
+ "bookTitle": "Sound of Fear",
1852
+ "address":" College University, 331 Fifth Ave, Cupertino, CA"},
1853
+ {"type": "Author",
1854
+ "guid": "4995bc3736881",
1855
+ "fullName": "Colin Hair 3",
1856
+ "bookTitle": "The Faceless Universe",
1857
+ "address":" Harvard, 185 Broadway Blvd, New York, NY"},
1858
+ {"type": "Author",
1859
+ "guid": "4995bc3736895",
1860
+ "fullName": "Jo Brindle 2",
1861
+ "bookTitle": "The Day Ice",
1862
+ "address":" UC Santa Cruz, 278 Fifth Ave, Palo Alto, CA"},
1863
+ {"type": "Author",
1864
+ "guid": "4995bc37368a9",
1865
+ "fullName": "Loreen Buck 2",
1866
+ "bookTitle": "Underworld of Space",
1867
+ "address":" Harvard, 385 Main St, London, UK"},
1868
+ {"type": "Author",
1869
+ "guid": "4995bc37368bd",
1870
+ "fullName": "Darrell Reade 4",
1871
+ "bookTitle": "The Madness Seeds",
1872
+ "address":" UC Santa Cruz, 423 Dana St, Cambridge, MA"},
1873
+ {"type": "Author",
1874
+ "guid": "4995bc37368d0",
1875
+ "fullName": "Delice Kimmons 2",
1876
+ "bookTitle": "The Fear of the Key",
1877
+ "address":" MIT, 161 First St, New York, NY"},
1878
+ {"type": "Author",
1879
+ "guid": "4995bc37368e4",
1880
+ "fullName": "Bettye Bode 1",
1881
+ "bookTitle": "The Thieves of Time",
1882
+ "address":" College University, 207 Main St, Southampton, UK"},
1883
+ {"type": "Author",
1884
+ "guid": "4995bc37368f8",
1885
+ "fullName": "Dillon Rowe 3",
1886
+ "bookTitle": "The Mind Wings",
1887
+ "address":" Foothill College, 374 Broadway Blvd, Cambridge, MA"},
1888
+ {"type": "Author",
1889
+ "guid": "4995bc373690c",
1890
+ "fullName": "Bennett Little 4",
1891
+ "bookTitle": "The Day Nemesis",
1892
+ "address":" MIT, 129 Lazaneo St, Los Angeles, CA"},
1893
+ {"type": "Author",
1894
+ "guid": "4995bc373691f",
1895
+ "fullName": "Bevis Powers 4",
1896
+ "bookTitle": "The Horror of Madness",
1897
+ "address":" Santa Clara University, 68 Oak Ave, St. Louis, MO"},
1898
+ {"type": "Author",
1899
+ "guid": "4995bc3736933",
1900
+ "fullName": "Perce Pennington 3",
1901
+ "bookTitle": "The Massacre",
1902
+ "address":" New York University, 432 Bloom St, Los Angeles, CA"},
1903
+ {"type": "Author",
1904
+ "guid": "4995bc3736947",
1905
+ "fullName": "America Thigpen 4",
1906
+ "bookTitle": "The Long Suns",
1907
+ "address":" University of Southampton, 217 University Loop, Cupertino, CA"},
1908
+ {"type": "Author",
1909
+ "guid": "4995bc373695b",
1910
+ "fullName": "Lyndsea Roberts 4",
1911
+ "bookTitle": "The Keeper",
1912
+ "address":" UC Santa Cruz, 153 Fifth Ave, Los Angeles, CA"},
1913
+ {"type": "Author",
1914
+ "guid": "4995bc373696f",
1915
+ "fullName": "Loreen Buck 1",
1916
+ "bookTitle": "The Space of the Devil",
1917
+ "address":" CalTech, 65 University Loop, Santa Clara, CA"},
1918
+ {"type": "Author",
1919
+ "guid": "4995bc3736983",
1920
+ "fullName": "Unique Whitten 1",
1921
+ "bookTitle": "Infinity of Night",
1922
+ "address":" University of Southampton, 238 Dana St, Ann Arbor, MI"},
1923
+ {"type": "Author",
1924
+ "guid": "4995bc3736997",
1925
+ "fullName": "Bernadine Raub 4",
1926
+ "bookTitle": "The Menace of the Ark",
1927
+ "address":" London University, 369 Dana St, London, UK"},
1928
+ {"type": "Author",
1929
+ "guid": "4995bc37369b2",
1930
+ "fullName": "Gabe Milliron 4",
1931
+ "bookTitle": "The Machines",
1932
+ "address":" UC Santa Cruz, 331 University Loop, London, UK"},
1933
+ {"type": "Author",
1934
+ "guid": "4995bc37369c6",
1935
+ "fullName": "Ronda Higgens 2",
1936
+ "bookTitle": "Spiders of Death",
1937
+ "address":" Foothill College, 496 Castro St, Cupertino, CA"},
1938
+ {"type": "Author",
1939
+ "guid": "4995bc37369da",
1940
+ "fullName": "Oscar Camp 2",
1941
+ "bookTitle": "The Day of the Computers",
1942
+ "address":" Santa Clara University, 292 Fifth Ave, New York, NY"},
1943
+ {"type": "Author",
1944
+ "guid": "4995bc37369ed",
1945
+ "fullName": "Hudson Cable 4",
1946
+ "bookTitle": "The Fury of the Angel",
1947
+ "address":" Stanford University, 116 Oak Ave, San Francisco, CA"},
1948
+ {"type": "Author",
1949
+ "guid": "4995bc3736a01",
1950
+ "fullName": "Willis Costello 4",
1951
+ "bookTitle": "The Ghosts of Day",
1952
+ "address":" Foothill College, 370 Castro St, Cupertino, CA"},
1953
+ {"type": "Author",
1954
+ "guid": "4995bc3736a15",
1955
+ "fullName": "Douglas Bennett 3",
1956
+ "bookTitle": "The Universe",
1957
+ "address":" New York University, 74 University Loop, Seattle, WA"},
1958
+ {"type": "Author",
1959
+ "guid": "4995bc3736a29",
1960
+ "fullName": "Chonsie Conkle 1",
1961
+ "bookTitle": "The Seas of Fear",
1962
+ "address":" Santa Clara University, 479 Main St, London, UK"},
1963
+ {"type": "Author",
1964
+ "guid": "4995bc3736a3c",
1965
+ "fullName": "Lalage Schmidt 3",
1966
+ "bookTitle": "The Fear of the Awakening",
1967
+ "address":" CalTech, 415 Elm St, St. Louis, MO"},
1968
+ {"type": "Author",
1969
+ "guid": "4995bc3736a50",
1970
+ "fullName": "Patton Kooser 1",
1971
+ "bookTitle": "The Madness Nightmares",
1972
+ "address":" Stanford University, 38 University Loop, Los Angeles, CA"},
1973
+ {"type": "Author",
1974
+ "guid": "4995bc3736a64",
1975
+ "fullName": "Mya Eckert 3",
1976
+ "bookTitle": "The Tenth Web",
1977
+ "address":" Harvard, 89 Dana St, New York, NY"},
1978
+ {"type": "Author",
1979
+ "guid": "4995bc3736a78",
1980
+ "fullName": "Kayleen Trout 2",
1981
+ "bookTitle": "The Riders",
1982
+ "address":" London University, 355 Second St, Wichita, KS"},
1983
+ {"type": "Author",
1984
+ "guid": "4995bc3736a8c",
1985
+ "fullName": "Tawnie Vorrasi 2",
1986
+ "bookTitle": "The Runaway Gods",
1987
+ "address":" College University, 183 Elm St, Southampton, UK"},
1988
+ {"type": "Author",
1989
+ "guid": "4995bc3736aa0",
1990
+ "fullName": "Marian Gearhart 4",
1991
+ "bookTitle": "The Pyramids of Death",
1992
+ "address":" UC Santa Cruz, 176 First St, Cambridge, MA"},
1993
+ {"type": "Author",
1994
+ "guid": "4995bc3736ab4",
1995
+ "fullName": "York Merryman 2",
1996
+ "bookTitle": "The Horns",
1997
+ "address":" New York University, 154 Castro St, Ann Arbor, MI"},
1998
+ {"type": "Author",
1999
+ "guid": "4995bc3736ac8",
2000
+ "fullName": "Dene Fair 1",
2001
+ "bookTitle": "The Menace Pyramid",
2002
+ "address":" MIT, 226 First St, Santa Clara, CA"},
2003
+ {"type": "Author",
2004
+ "guid": "4995bc3736adb",
2005
+ "fullName": "Konnor Wells 4",
2006
+ "bookTitle": "Planet of Death",
2007
+ "address":" UC Santa Cruz, 94 Fifth Ave, Ann Arbor, MI"},
2008
+ {"type": "Author",
2009
+ "guid": "4995bc3736aef",
2010
+ "fullName": "Chanel Boyd 4",
2011
+ "bookTitle": "The Horror Alien",
2012
+ "address":" CalTech, 125 Broadway Blvd, Cupertino, CA"},
2013
+ {"type": "Author",
2014
+ "guid": "4995bc3736b03",
2015
+ "fullName": "Crispian Nickolson 2",
2016
+ "bookTitle": "The Impossible Armageddon",
2017
+ "address":" CalTech, 67 Oak Ave, Los Angeles, CA"},
2018
+ {"type": "Author",
2019
+ "guid": "4995bc3736b1d",
2020
+ "fullName": "Elouise Langston 3",
2021
+ "bookTitle": "The Doom of the Night",
2022
+ "address":" New York University, 48 University Loop, Ann Arbor, MI"},
2023
+ {"type": "Author",
2024
+ "guid": "4995bc3736b33",
2025
+ "fullName": "Eliza Ropes 4",
2026
+ "bookTitle": "The Mirror",
2027
+ "address":" CalTech, 158 University Loop, Southampton, UK"},
2028
+ {"type": "Author",
2029
+ "guid": "4995bc3736b46",
2030
+ "fullName": "Raynard Peters 3",
2031
+ "bookTitle": "Child of Fear",
2032
+ "address":" MIT, 385 Lazaneo St, Seattle, WA"},
2033
+ {"type": "Author",
2034
+ "guid": "4995bc3736b5a",
2035
+ "fullName": "Kaylynn Herndon 4",
2036
+ "bookTitle": "The Reign",
2037
+ "address":" Stanford University, 237 Van Ness Blvd, Cambridge, MA"},
2038
+ {"type": "Author",
2039
+ "guid": "4995bc3736b6e",
2040
+ "fullName": "Priscilla Dean 4",
2041
+ "bookTitle": "The Space of the Horn",
2042
+ "address":" CalTech, 317 First St, St. Louis, MO"},
2043
+ {"type": "Author",
2044
+ "guid": "4995bc3736b81",
2045
+ "fullName": "Leighton Wickes 3",
2046
+ "bookTitle": "Pyramids of Menace",
2047
+ "address":" Springfield University, 313 Oak Ave, Los Angeles, CA"},
2048
+ {"type": "Author",
2049
+ "guid": "4995bc3736b9c",
2050
+ "fullName": "Anneka Gist 3",
2051
+ "bookTitle": "The God",
2052
+ "address":" Foothill College, 6 University Loop, Los Angeles, CA"},
2053
+ {"type": "Author",
2054
+ "guid": "4995bc3736bb0",
2055
+ "fullName": "Roseanne Rowley 2",
2056
+ "bookTitle": "The Horror of the Ice",
2057
+ "address":" Harvard, 253 First St, Seattle, WA"},
2058
+ {"type": "Author",
2059
+ "guid": "4995bc3736bc4",
2060
+ "fullName": "Brandi Bauerle 1",
2061
+ "bookTitle": "The Children of Madness",
2062
+ "address":" Foothill College, 497 First St, Santa Clara, CA"},
2063
+ {"type": "Author",
2064
+ "guid": "4995bc3736bd8",
2065
+ "fullName": "Kaitlyn Paul 3",
2066
+ "bookTitle": "The Mind Massacre",
2067
+ "address":" College University, 490 Lazaneo St, St. Louis, MO"},
2068
+ {"type": "Author",
2069
+ "guid": "4995bc3736beb",
2070
+ "fullName": "Silvester Mcfall 3",
2071
+ "bookTitle": "The Fear Child",
2072
+ "address":" CalTech, 348 Broadway Blvd, St. Louis, MO"},
2073
+ {"type": "Author",
2074
+ "guid": "4995bc3736bff",
2075
+ "fullName": "Woodrow Fleming 2",
2076
+ "bookTitle": "The Empty Fear",
2077
+ "address":" Springfield University, 340 First St, Los Angeles, CA"},
2078
+ {"type": "Author",
2079
+ "guid": "4995bc3736c13",
2080
+ "fullName": "Wynonna Erskine 3",
2081
+ "bookTitle": "Cave of Night",
2082
+ "address":" UC Santa Cruz, 37 Castro St, Ann Arbor, MI"},
2083
+ {"type": "Author",
2084
+ "guid": "4995bc3736c27",
2085
+ "fullName": "Lawrie Toyley 2",
2086
+ "bookTitle": "The Horror City",
2087
+ "address":" Stanford University, 172 University Loop, Southampton, UK"},
2088
+ {"type": "Author",
2089
+ "guid": "4995bc3736c3b",
2090
+ "fullName": "Breana Bastion 3",
2091
+ "bookTitle": "The Doomed Whisper",
2092
+ "address":" London University, 157 Lazaneo St, Cupertino, CA"},
2093
+ {"type": "Author",
2094
+ "guid": "4995bc3736c4e",
2095
+ "fullName": "Delice Kimmons 2",
2096
+ "bookTitle": "The Space of the Leisure",
2097
+ "address":" Stanford University, 308 Bloom St, Seattle, WA"},
2098
+ {"type": "Author",
2099
+ "guid": "4995bc3736c62",
2100
+ "fullName": "Sybella Henley 2",
2101
+ "bookTitle": "The Armageddon",
2102
+ "address":" University of Southampton, 314 Lazaneo St, New York, NY"},
2103
+ {"type": "Author",
2104
+ "guid": "4995bc3736c76",
2105
+ "fullName": "Sebastian Stone 2",
2106
+ "bookTitle": "The Stone",
2107
+ "address":" Springfield University, 348 Second St, St. Louis, MO"},
2108
+ {"type": "Author",
2109
+ "guid": "4995bc3736c8a",
2110
+ "fullName": "Perdita Casteel 2",
2111
+ "bookTitle": "The Space Alien",
2112
+ "address":" Stanford University, 38 Castro St, Santa Clara, CA"},
2113
+ {"type": "Author",
2114
+ "guid": "4995bc3736c9e",
2115
+ "fullName": "Lyndsea Roberts 4",
2116
+ "bookTitle": "The Fear Paradise",
2117
+ "address":" New York University, 433 Second St, Ann Arbor, MI"},
2118
+ {"type": "Author",
2119
+ "guid": "4995bc3736cb2",
2120
+ "fullName": "Reanna Meyers 2",
2121
+ "bookTitle": "Image of Menace",
2122
+ "address":" MIT, 452 Second St, San Francisco, CA"},
2123
+ {"type": "Author",
2124
+ "guid": "4995bc3736cc6",
2125
+ "fullName": "Paul Parrish 4",
2126
+ "bookTitle": "The Death Angels",
2127
+ "address":" MIT, 468 Castro St, Ann Arbor, MI"},
2128
+ {"type": "Author",
2129
+ "guid": "4995bc3736cda",
2130
+ "fullName": "Eldred West 2",
2131
+ "bookTitle": "The Time of the Mirror",
2132
+ "address":" College University, 420 Bloom St, Los Angeles, CA"},
2133
+ {"type": "Author",
2134
+ "guid": "4995bc3736ced",
2135
+ "fullName": "Tawnie Vorrasi 2",
2136
+ "bookTitle": "The Madness of the Horror",
2137
+ "address":" Michigan State University, 289 Lazaneo St, Cupertino, CA"},
2138
+ {"type": "Author",
2139
+ "guid": "4995bc3736d01",
2140
+ "fullName": "Vic Close 4",
2141
+ "bookTitle": "The Death of the Pyramid",
2142
+ "address":" New York University, 229 Main St, Southampton, UK"},
2143
+ {"type": "Author",
2144
+ "guid": "4995bc3736d15",
2145
+ "fullName": "Shana Owen 4",
2146
+ "bookTitle": "The Killer Fury",
2147
+ "address":" London University, 438 First St, Southampton, UK"},
2148
+ {"type": "Author",
2149
+ "guid": "4995bc3736d29",
2150
+ "fullName": "Lissa Tillson 1",
2151
+ "bookTitle": "The Fear Killers",
2152
+ "address":" Harvard, 100 Castro St, San Francisco, CA"},
2153
+ {"type": "Author",
2154
+ "guid": "4995bc3736d3d",
2155
+ "fullName": "Gabriel Cherry 1",
2156
+ "bookTitle": "The Reign of Madness",
2157
+ "address":" Stanford University, 319 Elm St, San Francisco, CA"},
2158
+ {"type": "Author",
2159
+ "guid": "4995bc3736d51",
2160
+ "fullName": "Willis Costello 4",
2161
+ "bookTitle": "The Horror Angel",
2162
+ "address":" UC Santa Cruz, 411 Van Ness Blvd, Ann Arbor, MI"},
2163
+ {"type": "Author",
2164
+ "guid": "4995bc3736d65",
2165
+ "fullName": "Seward Romanoff 2",
2166
+ "bookTitle": "The Day Monster",
2167
+ "address":" University of Southampton, 371 University Loop, Wichita, KS"},
2168
+ {"type": "Author",
2169
+ "guid": "4995bc3736d80",
2170
+ "fullName": "Cornelius Metzer 3",
2171
+ "bookTitle": "Hive of Menace",
2172
+ "address":" CalTech, 99 Second St, Seattle, WA"},
2173
+ {"type": "Author",
2174
+ "guid": "4995bc3736d94",
2175
+ "fullName": "Pansy Summy 4",
2176
+ "bookTitle": "The Day Thieves",
2177
+ "address":" New York University, 419 University Loop, London, UK"},
2178
+ {"type": "Author",
2179
+ "guid": "4995bc3736da8",
2180
+ "fullName": "Jaymes Cox 3",
2181
+ "bookTitle": "The Fear of the Minds",
2182
+ "address":" MIT, 54 First St, Palo Alto, CA"},
2183
+ {"type": "Author",
2184
+ "guid": "4995bc3736dbc",
2185
+ "fullName": "Pansy Summy 4",
2186
+ "bookTitle": "The Runaway Gods",
2187
+ "address":" Foothill College, 85 Elm St, Palo Alto, CA"},
2188
+ {"type": "Author",
2189
+ "guid": "4995bc3736dcf",
2190
+ "fullName": "August Feufer 2",
2191
+ "bookTitle": "God of Doom",
2192
+ "address":" Michigan State University, 237 Second St, Cambridge, MA"},
2193
+ {"type": "Author",
2194
+ "guid": "4995bc3736de3",
2195
+ "fullName": "Raphael Wilks 4",
2196
+ "bookTitle": "The Creature",
2197
+ "address":" College University, 46 Main St, Los Angeles, CA"},
2198
+ {"type": "Author",
2199
+ "guid": "4995bc3736df7",
2200
+ "fullName": "Colin Hair 4",
2201
+ "bookTitle": "The Horror Child",
2202
+ "address":" Foothill College, 244 Castro St, Seattle, WA"},
2203
+ {"type": "Author",
2204
+ "guid": "4995bc3736e0a",
2205
+ "fullName": "Colten Stange 2",
2206
+ "bookTitle": "Dreams of Menace",
2207
+ "address":" CalTech, 212 Fifth Ave, San Francisco, CA"},
2208
+ {"type": "Author",
2209
+ "guid": "4995bc3736e1e",
2210
+ "fullName": "Chonsie Conkle 3",
2211
+ "bookTitle": "The Menace Carnival",
2212
+ "address":" CalTech, 470 Broadway Blvd, Southampton, UK"},
2213
+ {"type": "Author",
2214
+ "guid": "4995bc3736e32",
2215
+ "fullName": "Kaleigh Brooks 4",
2216
+ "bookTitle": "The Fury Massacre",
2217
+ "address":" New York University, 361 Lazaneo St, Cupertino, CA"},
2218
+ {"type": "Author",
2219
+ "guid": "4995bc3736e46",
2220
+ "fullName": "Kaye Harding 3",
2221
+ "bookTitle": "The Doom of the Battlefield",
2222
+ "address":" Harvard, 246 Castro St, San Francisco, CA"},
2223
+ {"type": "Author",
2224
+ "guid": "4995bc3736e59",
2225
+ "fullName": "Kendal Ritter 1",
2226
+ "bookTitle": "The Whisper Faces",
2227
+ "address":" Foothill College, 80 Fifth Ave, San Francisco, CA"},
2228
+ {"type": "Author",
2229
+ "guid": "4995bc3736e6d",
2230
+ "fullName": "Eleanor Bennett 4",
2231
+ "bookTitle": "The Angels of Madness",
2232
+ "address":" CalTech, 263 Oak Ave, San Francisco, CA"},
2233
+ {"type": "Author",
2234
+ "guid": "4995bc3736e81",
2235
+ "fullName": "Lindsey Straub 3",
2236
+ "bookTitle": "The Doom of the Jaws",
2237
+ "address":" MIT, 146 Van Ness Blvd, St. Louis, MO"},
2238
+ {"type": "Author",
2239
+ "guid": "4995bc3736e95",
2240
+ "fullName": "Fawn Carr 1",
2241
+ "bookTitle": "Door of Space",
2242
+ "address":" Stanford University, 22 Oak Ave, Los Angeles, CA"},
2243
+ {"type": "Author",
2244
+ "guid": "4995bc3736ea9",
2245
+ "fullName": "Deshawn Pyle 3",
2246
+ "bookTitle": "The Secret",
2247
+ "address":" MIT, 180 University Loop, Wichita, KS"},
2248
+ {"type": "Author",
2249
+ "guid": "4995bc3736ebd",
2250
+ "fullName": "Virgee Mcdonald 1",
2251
+ "bookTitle": "The Space Mists",
2252
+ "address":" MIT, 288 Lazaneo St, San Francisco, CA"},
2253
+ {"type": "Author",
2254
+ "guid": "4995bc3736ed0",
2255
+ "fullName": "Tex Koster 4",
2256
+ "bookTitle": "The Time Ambassador",
2257
+ "address":" Santa Clara University, 372 Main St, Ann Arbor, MI"},
2258
+ {"type": "Author",
2259
+ "guid": "4995bc3736ee4",
2260
+ "fullName": "Sorrel Dugmore 2",
2261
+ "bookTitle": "The Robber",
2262
+ "address":" Stanford University, 390 Oak Ave, Santa Clara, CA"},
2263
+ {"type": "Author",
2264
+ "guid": "4995bc3736ef8",
2265
+ "fullName": "Beverly Harrold 2",
2266
+ "bookTitle": "The Planet of Doom",
2267
+ "address":" Harvard, 289 Fifth Ave, London, UK"},
2268
+ {"type": "Author",
2269
+ "guid": "4995bc3736f0c",
2270
+ "fullName": "Webster Jelliman 4",
2271
+ "bookTitle": "The Madness Masters",
2272
+ "address":" Foothill College, 316 First St, London, UK"},
2273
+ {"type": "Author",
2274
+ "guid": "4995bc3736f24",
2275
+ "fullName": "Tracee Martin 4",
2276
+ "bookTitle": "The Minds of Fury",
2277
+ "address":" UC Santa Cruz, 272 First St, Wichita, KS"},
2278
+ {"type": "Author",
2279
+ "guid": "4995bc3736f3b",
2280
+ "fullName": "Delice Kimmons 2",
2281
+ "bookTitle": "The Warrior of Day",
2282
+ "address":" University of Southampton, 364 University Loop, London, UK"},
2283
+ {"type": "Author",
2284
+ "guid": "4995bc3736f5c",
2285
+ "fullName": "Godric Sommer 1",
2286
+ "bookTitle": "Robots of Menace",
2287
+ "address":" MIT, 251 University Loop, Palo Alto, CA"},
2288
+ {"type": "Author",
2289
+ "guid": "4995bc3736f70",
2290
+ "fullName": "Tatianna Johns 3",
2291
+ "bookTitle": "The Death of the Riders",
2292
+ "address":" Santa Clara University, 416 Oak Ave, St. Louis, MO"},
2293
+ {"type": "Author",
2294
+ "guid": "4995bc3736f8c",
2295
+ "fullName": "Herbert Durstine 1",
2296
+ "bookTitle": "The Space of the Devil",
2297
+ "address":" New York University, 384 Fifth Ave, Seattle, WA"},
2298
+ {"type": "Author",
2299
+ "guid": "4995bc3736fa0",
2300
+ "fullName": "Myron Rhodes 4",
2301
+ "bookTitle": "The Devil",
2302
+ "address":" London University, 8 Castro St, Los Angeles, CA"},
2303
+ {"type": "Author",
2304
+ "guid": "4995bc3736fb3",
2305
+ "fullName": "Hank Hughes 2",
2306
+ "bookTitle": "The Machine of Doom",
2307
+ "address":" Springfield University, 42 First St, London, UK"},
2308
+ {"type": "Author",
2309
+ "guid": "4995bc3736fc7",
2310
+ "fullName": "Fox Omara 2",
2311
+ "bookTitle": "The Night of the Leisure",
2312
+ "address":" CalTech, 468 Fifth Ave, Wichita, KS"},
2313
+ {"type": "Author",
2314
+ "guid": "4995bc3736fdb",
2315
+ "fullName": "Dyan Bratton 1",
2316
+ "bookTitle": "The Child of Space",
2317
+ "address":" Springfield University, 463 Castro St, St. Louis, MO"},
2318
+ {"type": "Author",
2319
+ "guid": "4995bc3736fef",
2320
+ "fullName": "Eleanor Bennett 4",
2321
+ "bookTitle": "Machine of Night",
2322
+ "address":" Springfield University, 301 Second St, London, UK"},
2323
+ {"type": "Author",
2324
+ "guid": "4995bc3737002",
2325
+ "fullName": "Seward Romanoff 3",
2326
+ "bookTitle": "The Secret Pit",
2327
+ "address":" College University, 353 University Loop, Wichita, KS"},
2328
+ {"type": "Author",
2329
+ "guid": "4995bc3737016",
2330
+ "fullName": "Erick Sulyard 1",
2331
+ "bookTitle": "Whispers of Day",
2332
+ "address":" Harvard, 223 Castro St, Wichita, KS"},
2333
+ {"type": "Author",
2334
+ "guid": "4995bc373702a",
2335
+ "fullName": "Godric Sommer 3",
2336
+ "bookTitle": "The Menace Mist",
2337
+ "address":" London University, 260 Van Ness Blvd, Cupertino, CA"},
2338
+ {"type": "Author",
2339
+ "guid": "4995bc373703d",
2340
+ "fullName": " 2",
2341
+ "bookTitle": "The Horror Robot",
2342
+ "address":" New York University, 499 Castro St, Palo Alto, CA"},
2343
+ {"type": "Author",
2344
+ "guid": "4995bc3737055",
2345
+ "fullName": "Porsche Gilman 3",
2346
+ "bookTitle": "The Time Suns",
2347
+ "address":" CalTech, 336 First St, San Francisco, CA"},
2348
+ {"type": "Author",
2349
+ "guid": "4995bc3737069",
2350
+ "fullName": "Phineas Poehl 1",
2351
+ "bookTitle": "Ark of Day",
2352
+ "address":" London University, 162 Bloom St, Wichita, KS"},
2353
+ {"type": "Author",
2354
+ "guid": "4995bc373707d",
2355
+ "fullName": "Tylar Monahan 3",
2356
+ "bookTitle": "The Menace of the Robbers",
2357
+ "address":" Springfield University, 498 Broadway Blvd, Seattle, WA"},
2358
+ {"type": "Author",
2359
+ "guid": "4995bc3737091",
2360
+ "fullName": "Harvey Wardle 3",
2361
+ "bookTitle": "Mutants of Night",
2362
+ "address":" MIT, 58 Bloom St, Ann Arbor, MI"},
2363
+ {"type": "Author",
2364
+ "guid": "4995bc37370a5",
2365
+ "fullName": "Thea Sullivan 1",
2366
+ "bookTitle": "The Night of the Dominator",
2367
+ "address":" Santa Clara University, 443 Lazaneo St, San Francisco, CA"},
2368
+ {"type": "Author",
2369
+ "guid": "4995bc37370b9",
2370
+ "fullName": "Brandie Tue 2",
2371
+ "bookTitle": "The Fury Secret",
2372
+ "address":" CalTech, 130 Lazaneo St, London, UK"},
2373
+ {"type": "Author",
2374
+ "guid": "4995bc37370cd",
2375
+ "fullName": "Tessa Pullman 3",
2376
+ "bookTitle": "The Menace of the Pit",
2377
+ "address":" CalTech, 393 Oak Ave, San Francisco, CA"},
2378
+ {"type": "Author",
2379
+ "guid": "4995bc37370e0",
2380
+ "fullName": "Freeman Marcotte 4",
2381
+ "bookTitle": "The Jaws of Night",
2382
+ "address":" Harvard, 288 Second St, Seattle, WA"},
2383
+ {"type": "Author",
2384
+ "guid": "4995bc37370f4",
2385
+ "fullName": "Tex Koster 2",
2386
+ "bookTitle": "The Madness Attack",
2387
+ "address":" College University, 233 Fifth Ave, Ann Arbor, MI"},
2388
+ {"type": "Author",
2389
+ "guid": "4995bc3737108",
2390
+ "fullName": "Barret Lalty 2",
2391
+ "bookTitle": "The Unearthly Assassin",
2392
+ "address":" London University, 399 Elm St, Seattle, WA"},
2393
+ {"type": "Author",
2394
+ "guid": "4995bc373711c",
2395
+ "fullName": "Timotha Weeks 4",
2396
+ "bookTitle": "The Death Face",
2397
+ "address":" Stanford University, 302 Lazaneo St, Cambridge, MA"},
2398
+ {"type": "Author",
2399
+ "guid": "4995bc3737130",
2400
+ "fullName": "Tybalt Hahn 2",
2401
+ "bookTitle": "Masque of Space",
2402
+ "address":" New York University, 108 Elm St, Los Angeles, CA"},
2403
+ {"type": "Author",
2404
+ "guid": "4995bc3737144",
2405
+ "fullName": "Dewayne Patton 3",
2406
+ "bookTitle": "The Armageddon",
2407
+ "address":" Harvard, 83 Bloom St, Seattle, WA"},
2408
+ {"type": "Author",
2409
+ "guid": "4995bc3737158",
2410
+ "fullName": "Tommie Keilbach 4",
2411
+ "bookTitle": "The First Cave",
2412
+ "address":" College University, 124 First St, Ann Arbor, MI"},
2413
+ {"type": "Author",
2414
+ "guid": "4995bc3737196",
2415
+ "fullName": "Boyce Baughman 3",
2416
+ "bookTitle": "The Stone of Madness",
2417
+ "address":" Stanford University, 366 Second St, London, UK"},
2418
+ {"type": "Author",
2419
+ "guid": "4995bc37371ac",
2420
+ "fullName": "Godric Sommer 3",
2421
+ "bookTitle": "Killer of Night",
2422
+ "address":" London University, 489 Oak Ave, Southampton, UK"},
2423
+ {"type": "Author",
2424
+ "guid": "4995bc37371c1",
2425
+ "fullName": "Kenelm Tomco 2",
2426
+ "bookTitle": "The Fury of the Master",
2427
+ "address":" UC Santa Cruz, 142 Bloom St, London, UK"},
2428
+ {"type": "Author",
2429
+ "guid": "4995bc37371d4",
2430
+ "fullName": "Wendell Osteen 3",
2431
+ "bookTitle": "The Fear Awakening",
2432
+ "address":" New York University, 419 First St, Santa Clara, CA"},
2433
+ {"type": "Author",
2434
+ "guid": "4995bc37371eb",
2435
+ "fullName": "Antwan Biery 4",
2436
+ "bookTitle": "The Day of the Invasion",
2437
+ "address":" Santa Clara University, 445 Fifth Ave, Cupertino, CA"},
2438
+ {"type": "Author",
2439
+ "guid": "4995bc37371ff",
2440
+ "fullName": "Stacy Moffat 4",
2441
+ "bookTitle": "Door of Horror",
2442
+ "address":" College University, 282 Oak Ave, Ann Arbor, MI"},
2443
+ {"type": "Author",
2444
+ "guid": "4995bc3737213",
2445
+ "fullName": "Alyx Hincken 3",
2446
+ "bookTitle": "The Day Nemesis",
2447
+ "address":" CalTech, 235 University Loop, St. Louis, MO"},
2448
+ {"type": "Author",
2449
+ "guid": "4995bc3737227",
2450
+ "fullName": "Silvester Mcfall 1",
2451
+ "bookTitle": "The Monster",
2452
+ "address":" Springfield University, 86 Lazaneo St, Southampton, UK"},
2453
+ {"type": "Author",
2454
+ "guid": "4995bc373723a",
2455
+ "fullName": "Janella Warner 2",
2456
+ "bookTitle": "The Madness Man",
2457
+ "address":" Stanford University, 96 Dana St, Ann Arbor, MI"},
2458
+ {"type": "Author",
2459
+ "guid": "4995bc373724e",
2460
+ "fullName": "Braeden Seidner 2",
2461
+ "bookTitle": "The Menace Pit",
2462
+ "address":" Santa Clara University, 154 Bloom St, New York, NY"},
2463
+ {"type": "Author",
2464
+ "guid": "4995bc3737263",
2465
+ "fullName": "Cyrus Hatfield 2",
2466
+ "bookTitle": "The Night Nightmares",
2467
+ "address":" Michigan State University, 46 Van Ness Blvd, St. Louis, MO"},
2468
+ {"type": "Author",
2469
+ "guid": "4995bc3737277",
2470
+ "fullName": "Carly Reiss 4",
2471
+ "bookTitle": "The Spiders of Fear",
2472
+ "address":" CalTech, 420 Dana St, San Francisco, CA"},
2473
+ {"type": "Author",
2474
+ "guid": "4995bc373728b",
2475
+ "fullName": "Anselm Swift 4",
2476
+ "bookTitle": "The Final Time",
2477
+ "address":" Stanford University, 203 Main St, Seattle, WA"},
2478
+ {"type": "Author",
2479
+ "guid": "4995bc373729f",
2480
+ "fullName": "Dallas Hawker 2",
2481
+ "bookTitle": "The Day Galaxy",
2482
+ "address":" CalTech, 195 First St, San Francisco, CA"},
2483
+ {"type": "Author",
2484
+ "guid": "4995bc37372b3",
2485
+ "fullName": "Horatio Hutton 1",
2486
+ "bookTitle": "The Time Ambassador",
2487
+ "address":" Springfield University, 183 Castro St, Palo Alto, CA"},
2488
+ {"type": "Author",
2489
+ "guid": "4995bc37372c7",
2490
+ "fullName": "Trev Hallauer 1",
2491
+ "bookTitle": "The Final Time",
2492
+ "address":" New York University, 51 Broadway Blvd, Los Angeles, CA"},
2493
+ {"type": "Author",
2494
+ "guid": "4995bc37372db",
2495
+ "fullName": "Sharyn Quinn 4",
2496
+ "bookTitle": "The Reign of Day",
2497
+ "address":" Foothill College, 493 Lazaneo St, Palo Alto, CA"},
2498
+ {"type": "Author",
2499
+ "guid": "4995bc37372ee",
2500
+ "fullName": "Raphael Wilks 1",
2501
+ "bookTitle": "The Masque of Death",
2502
+ "address":" New York University, 96 Oak Ave, Los Angeles, CA"}];
2503
+