alf 0.10.0 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. data/CHANGELOG.md +22 -0
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +9 -10
  4. data/alf.gemspec +3 -3
  5. data/alf.noespec +5 -4
  6. data/doc/commands/show.md +1 -1
  7. data/doc/operators/relational/heading.md +20 -0
  8. data/doc/operators/relational/join.md +4 -3
  9. data/doc/operators/relational/matching.md +7 -3
  10. data/doc/operators/relational/restrict.md +2 -2
  11. data/examples/hitradio/compact.rb +48 -0
  12. data/examples/hitradio/compare1.rb +28 -0
  13. data/examples/hitradio/gz_reader.rb +23 -0
  14. data/examples/hitradio/hitradio-1.alf +1 -0
  15. data/examples/hitradio/hitradio.log +25080 -0
  16. data/examples/hitradio/hitradio.mar +25081 -0
  17. data/examples/hitradio/hitradio.mar.gz +0 -0
  18. data/examples/hitradio/hitradio.rash +25080 -0
  19. data/examples/hitradio/mar_reader.rb +18 -0
  20. data/lib/alf/aggregator/aggregators.rb +28 -0
  21. data/lib/alf/aggregator/aggregators.rbc +2640 -0
  22. data/lib/alf/aggregator/base.rbc +1055 -0
  23. data/lib/alf/aggregator/class_methods.rb +1 -1
  24. data/lib/alf/aggregator/class_methods.rbc +830 -0
  25. data/lib/alf/buffer/sorted.rbc +715 -0
  26. data/lib/alf/command/class_methods.rbc +453 -0
  27. data/lib/alf/command/doc_manager.rbc +1604 -0
  28. data/lib/alf/command/exec.rbc +408 -0
  29. data/lib/alf/command/help.rbc +764 -0
  30. data/lib/alf/command/main.rb +37 -5
  31. data/lib/alf/command/main.rbc +3612 -0
  32. data/lib/alf/command/show.rb +37 -5
  33. data/lib/alf/command/show.rbc +1327 -0
  34. data/lib/alf/environment/base.rbc +459 -0
  35. data/lib/alf/environment/class_methods.rbc +1110 -0
  36. data/lib/alf/environment/explicit.rb +2 -2
  37. data/lib/alf/environment/explicit.rbc +601 -0
  38. data/lib/alf/environment/folder.rb +2 -2
  39. data/lib/alf/environment/folder.rbc +942 -0
  40. data/lib/alf/errors.rb +4 -0
  41. data/lib/alf/errors.rbc +155 -0
  42. data/lib/alf/extra/csv.rb +5 -2
  43. data/lib/alf/extra/csv.rbc +2021 -0
  44. data/lib/alf/extra/logs.rbc +1957 -0
  45. data/lib/alf/extra/sequel.rbc +1417 -0
  46. data/lib/alf/extra/yaml.rbc +435 -0
  47. data/lib/alf/extra.rbc +101 -0
  48. data/lib/alf/iterator/base.rbc +437 -0
  49. data/lib/alf/iterator/class_methods.rbc +518 -0
  50. data/lib/alf/iterator/proxy.rbc +599 -0
  51. data/lib/alf/lispy/instance_methods.rbc +2535 -0
  52. data/lib/alf/loader.rb +2 -1
  53. data/lib/alf/loader.rbc +85 -0
  54. data/lib/alf/operator/base.rbc +860 -0
  55. data/lib/alf/operator/binary.rbc +595 -0
  56. data/lib/alf/operator/cesure.rbc +883 -0
  57. data/lib/alf/operator/class_methods.rbc +1915 -0
  58. data/lib/alf/operator/experimental.rbc +200 -0
  59. data/lib/alf/operator/non_relational/autonum.rbc +587 -0
  60. data/lib/alf/operator/non_relational/clip.rbc +522 -0
  61. data/lib/alf/operator/non_relational/coerce.rbc +596 -0
  62. data/lib/alf/operator/non_relational/compact.rbc +1283 -0
  63. data/lib/alf/operator/non_relational/defaults.rbc +733 -0
  64. data/lib/alf/operator/non_relational/generator.rbc +1015 -0
  65. data/lib/alf/operator/non_relational/sort.rbc +665 -0
  66. data/lib/alf/operator/nullary.rbc +404 -0
  67. data/lib/alf/operator/relational/extend.rbc +616 -0
  68. data/lib/alf/operator/relational/group.rbc +968 -0
  69. data/lib/alf/operator/relational/heading.rb +30 -0
  70. data/lib/alf/operator/relational/heading.rbc +657 -0
  71. data/lib/alf/operator/relational/intersect.rbc +969 -0
  72. data/lib/alf/operator/relational/join.rbc +1708 -0
  73. data/lib/alf/operator/relational/matching.rbc +1047 -0
  74. data/lib/alf/operator/relational/minus.rbc +965 -0
  75. data/lib/alf/operator/relational/not_matching.rbc +1047 -0
  76. data/lib/alf/operator/relational/project.rbc +669 -0
  77. data/lib/alf/operator/relational/quota.rbc +1193 -0
  78. data/lib/alf/operator/relational/rank.rbc +1217 -0
  79. data/lib/alf/operator/relational/rename.rbc +496 -0
  80. data/lib/alf/operator/relational/restrict.rbc +611 -0
  81. data/lib/alf/operator/relational/summarize.rbc +1922 -0
  82. data/lib/alf/operator/relational/ungroup.rbc +643 -0
  83. data/lib/alf/operator/relational/union.rbc +846 -0
  84. data/lib/alf/operator/relational/unwrap.rbc +540 -0
  85. data/lib/alf/operator/relational/wrap.rbc +560 -0
  86. data/lib/alf/operator/shortcut.rbc +809 -0
  87. data/lib/alf/operator/signature.rbc +4640 -0
  88. data/lib/alf/operator/transform.rbc +484 -0
  89. data/lib/alf/operator/unary.rbc +629 -0
  90. data/lib/alf/reader/alf_file.rbc +464 -0
  91. data/lib/alf/reader/base.rbc +1613 -0
  92. data/lib/alf/reader/class_methods.rb +1 -1
  93. data/lib/alf/reader/class_methods.rbc +1099 -0
  94. data/lib/alf/reader/rash.rbc +583 -0
  95. data/lib/alf/relation/class_methods.rbc +674 -0
  96. data/lib/alf/relation/instance_methods.rb +7 -0
  97. data/lib/alf/relation/instance_methods.rbc +2107 -0
  98. data/lib/alf/renderer/base.rbc +936 -0
  99. data/lib/alf/renderer/class_methods.rbc +875 -0
  100. data/lib/alf/renderer/rash.rb +16 -2
  101. data/lib/alf/renderer/rash.rbc +802 -0
  102. data/lib/alf/renderer/text.rb +54 -16
  103. data/lib/alf/renderer/text.rbc +5530 -0
  104. data/lib/alf/tools/coerce.rbc +352 -0
  105. data/lib/alf/tools/miscellaneous.rb +8 -1
  106. data/lib/alf/tools/miscellaneous.rbc +1497 -0
  107. data/lib/alf/tools/to_lispy.rbc +2618 -0
  108. data/lib/alf/tools/to_ruby_literal.rbc +344 -0
  109. data/lib/alf/tools/tuple_handle.rbc +738 -0
  110. data/lib/alf/types/attr_list.rbc +1535 -0
  111. data/lib/alf/types/attr_name.rbc +781 -0
  112. data/lib/alf/types/boolean.rbc +365 -0
  113. data/lib/alf/types/heading.rb +16 -1
  114. data/lib/alf/types/heading.rbc +1778 -0
  115. data/lib/alf/types/ordering.rbc +2228 -0
  116. data/lib/alf/types/renaming.rbc +1064 -0
  117. data/lib/alf/types/summarization.rbc +1394 -0
  118. data/lib/alf/types/tuple_computation.rbc +1061 -0
  119. data/lib/alf/types/tuple_expression.rbc +1016 -0
  120. data/lib/alf/types/tuple_predicate.rbc +1349 -0
  121. data/lib/alf/version.rb +1 -1
  122. data/lib/alf/version.rbc +350 -0
  123. data/lib/alf.rb +13 -5
  124. data/lib/alf.rbc +3884 -0
  125. data/spec/integration/command/alf/alf_help.stdout +8 -6
  126. data/spec/integration/command/help/help_1.stdout +3 -1
  127. data/spec/integration/command/show/show_base.cmd +1 -1
  128. data/spec/integration/command/show/show_base_sort_1.cmd +1 -0
  129. data/spec/integration/command/show/show_base_sort_1.stdout +9 -0
  130. data/spec/integration/command/show/show_base_sort_2.cmd +1 -0
  131. data/spec/integration/command/show/show_base_sort_2.stdout +9 -0
  132. data/spec/integration/command/show/show_ff.cmd +1 -0
  133. data/spec/integration/command/show/show_ff.stdout +10 -0
  134. data/spec/integration/command/show/show_rash_pretty.cmd +1 -0
  135. data/spec/integration/command/show/show_rash_pretty.stdout +30 -0
  136. data/spec/integration/test_alf.rbc +1098 -0
  137. data/spec/integration/test_command.rbc +1832 -0
  138. data/spec/integration/test_examples.rbc +559 -0
  139. data/spec/integration/test_semantics.rbc +991 -0
  140. data/spec/regression/alf_file/test___FILE__.rbc +524 -0
  141. data/spec/regression/heading/test_heading_with_date.rbc +381 -0
  142. data/spec/regression/lispy/test_compile.rbc +404 -0
  143. data/spec/regression/logs/test_path_attribute.rbc +687 -0
  144. data/spec/regression/relation/test_relation_allbut_all.rbc +468 -0
  145. data/spec/regression/relation/test_relation_with_date.rbc +381 -0
  146. data/spec/regression/restrict/test_restrict_with_keywords.rbc +628 -0
  147. data/spec/shared/a_value.rbc +337 -0
  148. data/spec/shared/an_operator_class.rbc +908 -0
  149. data/spec/spec_helper.rbc +453 -0
  150. data/spec/unit/assumptions/test_file.rbc +668 -0
  151. data/spec/unit/assumptions/test_instance_eval.rbc +654 -0
  152. data/spec/unit/assumptions/test_scoping.rbc +755 -0
  153. data/spec/unit/assumptions/test_set.rbc +1928 -0
  154. data/spec/unit/command/doc_manager/test_call.rbc +1537 -0
  155. data/spec/unit/csv/test_reader.rbc +2228 -0
  156. data/spec/unit/csv/test_renderer.rbc +2426 -0
  157. data/spec/unit/environment/test_explicit.rbc +464 -0
  158. data/spec/unit/environment/test_folder.rb +2 -2
  159. data/spec/unit/environment/test_folder.rbc +1304 -0
  160. data/spec/unit/lispy/test_relation.rbc +1477 -0
  161. data/spec/unit/lispy/test_run.rbc +1735 -0
  162. data/spec/unit/lispy/test_tuple.rbc +1686 -0
  163. data/spec/unit/logs/test_reader.rb +6 -4
  164. data/spec/unit/logs/test_reader.rbc +1807 -0
  165. data/spec/unit/operator/non_relational/compact/test_buffer_based.rbc +1127 -0
  166. data/spec/unit/operator/non_relational/compact/test_sort_based.rbc +1127 -0
  167. data/spec/unit/operator/non_relational/test_autonum.rbc +1969 -0
  168. data/spec/unit/operator/non_relational/test_clip.rbc +1850 -0
  169. data/spec/unit/operator/non_relational/test_coerce.rbc +1290 -0
  170. data/spec/unit/operator/non_relational/test_compact.rbc +1382 -0
  171. data/spec/unit/operator/non_relational/test_defaults.rbc +2319 -0
  172. data/spec/unit/operator/non_relational/test_generator.rbc +2361 -0
  173. data/spec/unit/operator/non_relational/test_sort.rbc +2583 -0
  174. data/spec/unit/operator/relational/join/test_hash_based.rbc +2481 -0
  175. data/spec/unit/operator/relational/matching/test_hash_based.rbc +2458 -0
  176. data/spec/unit/operator/relational/not_matching/test_hash_based.rbc +1632 -0
  177. data/spec/unit/operator/relational/summarize/test_hash_based.rbc +1990 -0
  178. data/spec/unit/operator/relational/summarize/test_sort_based.rbc +1990 -0
  179. data/spec/unit/operator/relational/test_extend.rbc +1300 -0
  180. data/spec/unit/operator/relational/test_group.rbc +2142 -0
  181. data/spec/unit/operator/relational/test_intersect.rbc +2069 -0
  182. data/spec/unit/operator/relational/test_join.rbc +1282 -0
  183. data/spec/unit/operator/relational/test_minus.rbc +1995 -0
  184. data/spec/unit/operator/relational/test_project.rbc +2870 -0
  185. data/spec/unit/operator/relational/test_quota.rbc +1788 -0
  186. data/spec/unit/operator/relational/test_rank.rbc +2079 -0
  187. data/spec/unit/operator/relational/test_rename.rbc +1158 -0
  188. data/spec/unit/operator/relational/test_restrict.rbc +2305 -0
  189. data/spec/unit/operator/relational/test_summarize.rbc +2570 -0
  190. data/spec/unit/operator/relational/test_ungroup.rbc +1425 -0
  191. data/spec/unit/operator/relational/test_union.rbc +1089 -0
  192. data/spec/unit/operator/relational/test_unwrap.rbc +1176 -0
  193. data/spec/unit/operator/relational/test_wrap.rbc +1203 -0
  194. data/spec/unit/operator/signature/test_collect_on.rbc +1989 -0
  195. data/spec/unit/operator/signature/test_initialize.rbc +544 -0
  196. data/spec/unit/operator/signature/test_install.rbc +1671 -0
  197. data/spec/unit/operator/signature/test_option_parser.rbc +1348 -0
  198. data/spec/unit/operator/signature/test_parse_args.rbc +1908 -0
  199. data/spec/unit/operator/signature/test_parse_argv.rbc +2878 -0
  200. data/spec/unit/operator/signature/test_to_lispy.rbc +3305 -0
  201. data/spec/unit/operator/signature/test_to_shell.rbc +3327 -0
  202. data/spec/unit/operator/test_non_relational.rbc +571 -0
  203. data/spec/unit/operator/test_relational.rb +2 -1
  204. data/spec/unit/operator/test_relational.rbc +758 -0
  205. data/spec/unit/reader/test_alf_file.rbc +1107 -0
  206. data/spec/unit/reader/test_initialize.rbc +1774 -0
  207. data/spec/unit/reader/test_rash.rbc +1127 -0
  208. data/spec/unit/relation/test_coerce.rbc +2320 -0
  209. data/spec/unit/relation/test_inspect.rbc +502 -0
  210. data/spec/unit/relation/test_relops.rbc +1585 -0
  211. data/spec/unit/relation/test_to_a.rbc +1112 -0
  212. data/spec/unit/renderer/test_initialize.rbc +1766 -0
  213. data/spec/unit/sequel/test_environment.rbc +1723 -0
  214. data/spec/unit/test_aggregator.rb +38 -1
  215. data/spec/unit/test_aggregator.rbc +4358 -0
  216. data/spec/unit/test_environment.rbc +1271 -0
  217. data/spec/unit/test_lispy.rbc +879 -0
  218. data/spec/unit/test_operator.rbc +531 -0
  219. data/spec/unit/test_reader.rb +6 -2
  220. data/spec/unit/test_reader.rbc +1249 -0
  221. data/spec/unit/test_relation.rbc +2588 -0
  222. data/spec/unit/test_renderer.rb +12 -1
  223. data/spec/unit/test_renderer.rbc +2011 -0
  224. data/spec/unit/text/test_cell.rb +1 -0
  225. data/spec/unit/text/test_cell.rbc +1532 -0
  226. data/spec/unit/text/test_row.rbc +847 -0
  227. data/spec/unit/text/test_table.rbc +978 -0
  228. data/spec/unit/tools/test_coalesce.rbc +456 -0
  229. data/spec/unit/tools/test_coerce.rbc +279 -0
  230. data/spec/unit/tools/test_to_lispy.rbc +5711 -0
  231. data/spec/unit/tools/test_to_ruby_literal.rbc +272 -0
  232. data/spec/unit/tools/test_tools.rbc +672 -0
  233. data/spec/unit/tools/test_tuple_handle.rbc +1591 -0
  234. data/spec/unit/tools/test_tuple_heading.rb +20 -0
  235. data/spec/unit/tools/test_tuple_heading.rbc +821 -0
  236. data/spec/unit/tools/test_varargs.rbc +495 -0
  237. data/spec/unit/types/heading/test_union.rb +21 -0
  238. data/spec/unit/types/heading/test_union.rbc +1043 -0
  239. data/spec/unit/types/test_attr_list.rbc +4481 -0
  240. data/spec/unit/types/test_attr_name.rbc +1872 -0
  241. data/spec/unit/types/test_heading.rbc +1735 -0
  242. data/spec/unit/types/test_ordering.rbc +3695 -0
  243. data/spec/unit/types/test_renaming.rbc +2426 -0
  244. data/spec/unit/types/test_summarization.rbc +2538 -0
  245. data/spec/unit/types/test_tuple_computation.rbc +2340 -0
  246. data/spec/unit/types/test_tuple_expression.rbc +2285 -0
  247. data/spec/unit/types/test_tuple_predicate.rbc +3168 -0
  248. data/tasks/gh-pages.rake +1 -1
  249. metadata +529 -125
@@ -0,0 +1,1957 @@
1
+ !RBIX
2
+ 11817445442317083511
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 3
54
+ Alf
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 3
67
+ Alf
68
+ i
69
+ 28
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 11
98
+ I
99
+ 6
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 5
109
+ x
110
+ 4
111
+ Logs
112
+ x
113
+ 11
114
+ open_module
115
+ x
116
+ 15
117
+ __module_init__
118
+ M
119
+ 1
120
+ n
121
+ n
122
+ x
123
+ 4
124
+ Logs
125
+ i
126
+ 33
127
+ 5
128
+ 66
129
+ 99
130
+ 7
131
+ 0
132
+ 45
133
+ 1
134
+ 2
135
+ 43
136
+ 0
137
+ 65
138
+ 49
139
+ 3
140
+ 3
141
+ 13
142
+ 99
143
+ 12
144
+ 7
145
+ 4
146
+ 12
147
+ 7
148
+ 5
149
+ 12
150
+ 65
151
+ 12
152
+ 49
153
+ 6
154
+ 4
155
+ 15
156
+ 49
157
+ 4
158
+ 0
159
+ 11
160
+ I
161
+ 6
162
+ I
163
+ 0
164
+ I
165
+ 0
166
+ I
167
+ 0
168
+ n
169
+ p
170
+ 7
171
+ x
172
+ 6
173
+ Reader
174
+ x
175
+ 3
176
+ Alf
177
+ n
178
+ x
179
+ 10
180
+ open_class
181
+ x
182
+ 14
183
+ __class_init__
184
+ M
185
+ 1
186
+ n
187
+ n
188
+ x
189
+ 6
190
+ Reader
191
+ i
192
+ 335
193
+ 5
194
+ 66
195
+ 65
196
+ 7
197
+ 0
198
+ 44
199
+ 43
200
+ 1
201
+ 80
202
+ 49
203
+ 2
204
+ 1
205
+ 13
206
+ 7
207
+ 3
208
+ 1
209
+ 49
210
+ 4
211
+ 2
212
+ 15
213
+ 13
214
+ 7
215
+ 5
216
+ 7
217
+ 6
218
+ 49
219
+ 4
220
+ 2
221
+ 15
222
+ 49
223
+ 7
224
+ 2
225
+ 15
226
+ 5
227
+ 7
228
+ 8
229
+ 47
230
+ 49
231
+ 9
232
+ 1
233
+ 15
234
+ 99
235
+ 7
236
+ 10
237
+ 7
238
+ 11
239
+ 65
240
+ 67
241
+ 49
242
+ 12
243
+ 0
244
+ 49
245
+ 13
246
+ 4
247
+ 15
248
+ 99
249
+ 7
250
+ 14
251
+ 7
252
+ 15
253
+ 65
254
+ 67
255
+ 49
256
+ 12
257
+ 0
258
+ 49
259
+ 13
260
+ 4
261
+ 15
262
+ 5
263
+ 48
264
+ 16
265
+ 15
266
+ 99
267
+ 7
268
+ 17
269
+ 7
270
+ 18
271
+ 65
272
+ 67
273
+ 49
274
+ 12
275
+ 0
276
+ 49
277
+ 13
278
+ 4
279
+ 15
280
+ 99
281
+ 7
282
+ 19
283
+ 7
284
+ 20
285
+ 65
286
+ 67
287
+ 49
288
+ 12
289
+ 0
290
+ 49
291
+ 13
292
+ 4
293
+ 15
294
+ 99
295
+ 7
296
+ 21
297
+ 7
298
+ 22
299
+ 65
300
+ 67
301
+ 49
302
+ 12
303
+ 0
304
+ 49
305
+ 13
306
+ 4
307
+ 15
308
+ 65
309
+ 7
310
+ 23
311
+ 44
312
+ 43
313
+ 1
314
+ 4
315
+ 16
316
+ 49
317
+ 2
318
+ 1
319
+ 13
320
+ 7
321
+ 24
322
+ 45
323
+ 25
324
+ 26
325
+ 49
326
+ 4
327
+ 2
328
+ 15
329
+ 13
330
+ 7
331
+ 27
332
+ 45
333
+ 28
334
+ 29
335
+ 49
336
+ 4
337
+ 2
338
+ 15
339
+ 13
340
+ 7
341
+ 30
342
+ 45
343
+ 28
344
+ 31
345
+ 49
346
+ 4
347
+ 2
348
+ 15
349
+ 13
350
+ 7
351
+ 32
352
+ 45
353
+ 33
354
+ 34
355
+ 49
356
+ 4
357
+ 2
358
+ 15
359
+ 13
360
+ 7
361
+ 35
362
+ 45
363
+ 33
364
+ 36
365
+ 49
366
+ 4
367
+ 2
368
+ 15
369
+ 13
370
+ 7
371
+ 37
372
+ 45
373
+ 38
374
+ 39
375
+ 49
376
+ 4
377
+ 2
378
+ 15
379
+ 13
380
+ 7
381
+ 40
382
+ 45
383
+ 38
384
+ 41
385
+ 49
386
+ 4
387
+ 2
388
+ 15
389
+ 13
390
+ 7
391
+ 42
392
+ 45
393
+ 33
394
+ 43
395
+ 49
396
+ 4
397
+ 2
398
+ 15
399
+ 13
400
+ 7
401
+ 44
402
+ 45
403
+ 33
404
+ 45
405
+ 49
406
+ 4
407
+ 2
408
+ 15
409
+ 13
410
+ 7
411
+ 46
412
+ 45
413
+ 28
414
+ 47
415
+ 49
416
+ 4
417
+ 2
418
+ 15
419
+ 13
420
+ 7
421
+ 48
422
+ 45
423
+ 33
424
+ 49
425
+ 49
426
+ 4
427
+ 2
428
+ 15
429
+ 13
430
+ 7
431
+ 50
432
+ 45
433
+ 25
434
+ 51
435
+ 49
436
+ 4
437
+ 2
438
+ 15
439
+ 13
440
+ 7
441
+ 52
442
+ 45
443
+ 25
444
+ 53
445
+ 49
446
+ 4
447
+ 2
448
+ 15
449
+ 13
450
+ 7
451
+ 54
452
+ 45
453
+ 25
454
+ 55
455
+ 49
456
+ 4
457
+ 2
458
+ 15
459
+ 13
460
+ 7
461
+ 56
462
+ 45
463
+ 25
464
+ 57
465
+ 49
466
+ 4
467
+ 2
468
+ 15
469
+ 13
470
+ 7
471
+ 58
472
+ 45
473
+ 25
474
+ 59
475
+ 49
476
+ 4
477
+ 2
478
+ 15
479
+ 49
480
+ 7
481
+ 2
482
+ 15
483
+ 99
484
+ 7
485
+ 60
486
+ 7
487
+ 61
488
+ 65
489
+ 67
490
+ 49
491
+ 12
492
+ 0
493
+ 49
494
+ 13
495
+ 4
496
+ 15
497
+ 99
498
+ 7
499
+ 62
500
+ 7
501
+ 63
502
+ 65
503
+ 67
504
+ 49
505
+ 12
506
+ 0
507
+ 49
508
+ 13
509
+ 4
510
+ 15
511
+ 44
512
+ 43
513
+ 64
514
+ 43
515
+ 65
516
+ 7
517
+ 66
518
+ 7
519
+ 67
520
+ 64
521
+ 35
522
+ 1
523
+ 5
524
+ 49
525
+ 68
526
+ 3
527
+ 11
528
+ I
529
+ 6
530
+ I
531
+ 0
532
+ I
533
+ 0
534
+ I
535
+ 0
536
+ n
537
+ p
538
+ 69
539
+ x
540
+ 15
541
+ DEFAULT_OPTIONS
542
+ x
543
+ 4
544
+ Hash
545
+ x
546
+ 16
547
+ new_from_literal
548
+ x
549
+ 11
550
+ file_format
551
+ x
552
+ 3
553
+ []=
554
+ x
555
+ 8
556
+ line_def
557
+ x
558
+ 6
559
+ access
560
+ x
561
+ 9
562
+ const_set
563
+ x
564
+ 7
565
+ options
566
+ x
567
+ 11
568
+ attr_reader
569
+ x
570
+ 10
571
+ initialize
572
+ M
573
+ 1
574
+ n
575
+ n
576
+ x
577
+ 10
578
+ initialize
579
+ i
580
+ 44
581
+ 45
582
+ 0
583
+ 1
584
+ 43
585
+ 2
586
+ 7
587
+ 3
588
+ 64
589
+ 49
590
+ 4
591
+ 1
592
+ 15
593
+ 20
594
+ 0
595
+ 36
596
+ 54
597
+ 53
598
+ 5
599
+ 0
600
+ 15
601
+ 39
602
+ 6
603
+ 7
604
+ 7
605
+ 5
606
+ 39
607
+ 6
608
+ 7
609
+ 7
610
+ 49
611
+ 8
612
+ 1
613
+ 47
614
+ 49
615
+ 9
616
+ 1
617
+ 13
618
+ 18
619
+ 3
620
+ 49
621
+ 10
622
+ 2
623
+ 15
624
+ 11
625
+ I
626
+ 6
627
+ I
628
+ 1
629
+ I
630
+ 0
631
+ I
632
+ 0
633
+ I
634
+ 0
635
+ p
636
+ 11
637
+ x
638
+ 3
639
+ Alf
640
+ n
641
+ x
642
+ 5
643
+ Tools
644
+ s
645
+ 20
646
+ request_log_analyzer
647
+ x
648
+ 16
649
+ friendly_require
650
+ x
651
+ 10
652
+ initialize
653
+ x
654
+ 8
655
+ @options
656
+ x
657
+ 11
658
+ file_format
659
+ x
660
+ 2
661
+ []
662
+ x
663
+ 18
664
+ coerce_file_format
665
+ x
666
+ 3
667
+ []=
668
+ p
669
+ 9
670
+ I
671
+ -1
672
+ I
673
+ 10
674
+ I
675
+ 0
676
+ I
677
+ 11
678
+ I
679
+ c
680
+ I
681
+ 12
682
+ I
683
+ 14
684
+ I
685
+ 13
686
+ I
687
+ 2c
688
+ x
689
+ 51
690
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
691
+ p
692
+ 1
693
+ x
694
+ 4
695
+ args
696
+ x
697
+ 17
698
+ method_visibility
699
+ x
700
+ 15
701
+ add_defn_method
702
+ x
703
+ 4
704
+ each
705
+ M
706
+ 1
707
+ n
708
+ n
709
+ x
710
+ 4
711
+ each
712
+ i
713
+ 19
714
+ 5
715
+ 5
716
+ 48
717
+ 0
718
+ 47
719
+ 49
720
+ 1
721
+ 1
722
+ 19
723
+ 0
724
+ 15
725
+ 5
726
+ 56
727
+ 2
728
+ 47
729
+ 50
730
+ 3
731
+ 0
732
+ 11
733
+ I
734
+ 3
735
+ I
736
+ 1
737
+ I
738
+ 0
739
+ I
740
+ 0
741
+ n
742
+ p
743
+ 4
744
+ x
745
+ 10
746
+ input_path
747
+ x
748
+ 12
749
+ infer_parser
750
+ M
751
+ 1
752
+ p
753
+ 2
754
+ x
755
+ 9
756
+ for_block
757
+ t
758
+ n
759
+ x
760
+ 4
761
+ each
762
+ i
763
+ 15
764
+ 57
765
+ 19
766
+ 0
767
+ 15
768
+ 21
769
+ 1
770
+ 0
771
+ 20
772
+ 0
773
+ 56
774
+ 0
775
+ 50
776
+ 1
777
+ 1
778
+ 11
779
+ I
780
+ 5
781
+ I
782
+ 1
783
+ I
784
+ 1
785
+ I
786
+ 1
787
+ n
788
+ p
789
+ 2
790
+ M
791
+ 1
792
+ p
793
+ 2
794
+ x
795
+ 9
796
+ for_block
797
+ t
798
+ n
799
+ x
800
+ 4
801
+ each
802
+ i
803
+ 14
804
+ 57
805
+ 19
806
+ 0
807
+ 15
808
+ 5
809
+ 20
810
+ 0
811
+ 47
812
+ 49
813
+ 0
814
+ 1
815
+ 60
816
+ 1
817
+ 11
818
+ I
819
+ 4
820
+ I
821
+ 1
822
+ I
823
+ 1
824
+ I
825
+ 1
826
+ n
827
+ p
828
+ 1
829
+ x
830
+ 16
831
+ request_to_tuple
832
+ p
833
+ 5
834
+ I
835
+ 0
836
+ I
837
+ 19
838
+ I
839
+ 4
840
+ I
841
+ 1a
842
+ I
843
+ e
844
+ x
845
+ 51
846
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
847
+ p
848
+ 1
849
+ x
850
+ 3
851
+ req
852
+ x
853
+ 12
854
+ parse_stream
855
+ p
856
+ 5
857
+ I
858
+ 0
859
+ I
860
+ 18
861
+ I
862
+ 4
863
+ I
864
+ 19
865
+ I
866
+ f
867
+ x
868
+ 51
869
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
870
+ p
871
+ 1
872
+ x
873
+ 2
874
+ io
875
+ x
876
+ 13
877
+ with_input_io
878
+ p
879
+ 7
880
+ I
881
+ -1
882
+ I
883
+ 16
884
+ I
885
+ 0
886
+ I
887
+ 17
888
+ I
889
+ b
890
+ I
891
+ 18
892
+ I
893
+ 13
894
+ x
895
+ 51
896
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
897
+ p
898
+ 1
899
+ x
900
+ 6
901
+ parser
902
+ x
903
+ 7
904
+ private
905
+ x
906
+ 18
907
+ coerce_file_format
908
+ M
909
+ 1
910
+ n
911
+ n
912
+ x
913
+ 18
914
+ coerce_file_format
915
+ i
916
+ 100
917
+ 20
918
+ 0
919
+ 13
920
+ 45
921
+ 0
922
+ 1
923
+ 12
924
+ 49
925
+ 2
926
+ 1
927
+ 9
928
+ 16
929
+ 15
930
+ 1
931
+ 8
932
+ 99
933
+ 13
934
+ 45
935
+ 3
936
+ 4
937
+ 43
938
+ 5
939
+ 12
940
+ 49
941
+ 2
942
+ 1
943
+ 9
944
+ 33
945
+ 15
946
+ 20
947
+ 0
948
+ 8
949
+ 99
950
+ 13
951
+ 45
952
+ 6
953
+ 7
954
+ 12
955
+ 49
956
+ 2
957
+ 1
958
+ 9
959
+ 56
960
+ 15
961
+ 45
962
+ 3
963
+ 8
964
+ 43
965
+ 5
966
+ 20
967
+ 0
968
+ 49
969
+ 9
970
+ 1
971
+ 8
972
+ 99
973
+ 13
974
+ 45
975
+ 10
976
+ 11
977
+ 12
978
+ 49
979
+ 2
980
+ 1
981
+ 9
982
+ 81
983
+ 15
984
+ 45
985
+ 3
986
+ 12
987
+ 43
988
+ 5
989
+ 20
990
+ 0
991
+ 36
992
+ 1
993
+ 51
994
+ 9
995
+ 0
996
+ 8
997
+ 99
998
+ 15
999
+ 5
1000
+ 45
1001
+ 13
1002
+ 14
1003
+ 7
1004
+ 15
1005
+ 20
1006
+ 0
1007
+ 47
1008
+ 101
1009
+ 16
1010
+ 63
1011
+ 2
1012
+ 47
1013
+ 49
1014
+ 17
1015
+ 2
1016
+ 11
1017
+ I
1018
+ 5
1019
+ I
1020
+ 1
1021
+ I
1022
+ 1
1023
+ I
1024
+ 1
1025
+ n
1026
+ p
1027
+ 18
1028
+ x
1029
+ 8
1030
+ NilClass
1031
+ n
1032
+ x
1033
+ 3
1034
+ ===
1035
+ x
1036
+ 18
1037
+ RequestLogAnalyzer
1038
+ n
1039
+ x
1040
+ 10
1041
+ FileFormat
1042
+ x
1043
+ 6
1044
+ Symbol
1045
+ n
1046
+ n
1047
+ x
1048
+ 4
1049
+ load
1050
+ x
1051
+ 5
1052
+ Array
1053
+ n
1054
+ n
1055
+ x
1056
+ 13
1057
+ ArgumentError
1058
+ n
1059
+ s
1060
+ 21
1061
+ Invalid file format:
1062
+ x
1063
+ 4
1064
+ to_s
1065
+ x
1066
+ 5
1067
+ raise
1068
+ p
1069
+ 25
1070
+ I
1071
+ -1
1072
+ I
1073
+ 21
1074
+ I
1075
+ 0
1076
+ I
1077
+ 22
1078
+ I
1079
+ 2
1080
+ I
1081
+ 23
1082
+ I
1083
+ d
1084
+ I
1085
+ 24
1086
+ I
1087
+ 10
1088
+ I
1089
+ 25
1090
+ I
1091
+ 1d
1092
+ I
1093
+ 26
1094
+ I
1095
+ 21
1096
+ I
1097
+ 27
1098
+ I
1099
+ 2c
1100
+ I
1101
+ 28
1102
+ I
1103
+ 38
1104
+ I
1105
+ 29
1106
+ I
1107
+ 43
1108
+ I
1109
+ 2a
1110
+ I
1111
+ 52
1112
+ I
1113
+ 2c
1114
+ I
1115
+ 63
1116
+ I
1117
+ 0
1118
+ I
1119
+ 64
1120
+ x
1121
+ 51
1122
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1123
+ p
1124
+ 1
1125
+ x
1126
+ 11
1127
+ file_format
1128
+ x
1129
+ 12
1130
+ infer_parser
1131
+ M
1132
+ 1
1133
+ n
1134
+ n
1135
+ x
1136
+ 12
1137
+ infer_parser
1138
+ i
1139
+ 76
1140
+ 39
1141
+ 0
1142
+ 7
1143
+ 1
1144
+ 49
1145
+ 2
1146
+ 1
1147
+ 13
1148
+ 10
1149
+ 40
1150
+ 15
1151
+ 20
1152
+ 0
1153
+ 9
1154
+ 18
1155
+ 1
1156
+ 8
1157
+ 29
1158
+ 5
1159
+ 45
1160
+ 3
1161
+ 4
1162
+ 7
1163
+ 5
1164
+ 64
1165
+ 47
1166
+ 49
1167
+ 6
1168
+ 2
1169
+ 15
1170
+ 45
1171
+ 7
1172
+ 8
1173
+ 43
1174
+ 9
1175
+ 20
1176
+ 0
1177
+ 49
1178
+ 10
1179
+ 1
1180
+ 19
1181
+ 1
1182
+ 15
1183
+ 45
1184
+ 7
1185
+ 11
1186
+ 43
1187
+ 12
1188
+ 43
1189
+ 13
1190
+ 13
1191
+ 71
1192
+ 14
1193
+ 47
1194
+ 9
1195
+ 70
1196
+ 47
1197
+ 49
1198
+ 15
1199
+ 0
1200
+ 13
1201
+ 20
1202
+ 1
1203
+ 47
1204
+ 49
1205
+ 16
1206
+ 1
1207
+ 15
1208
+ 8
1209
+ 75
1210
+ 20
1211
+ 1
1212
+ 49
1213
+ 14
1214
+ 1
1215
+ 11
1216
+ I
1217
+ 5
1218
+ I
1219
+ 2
1220
+ I
1221
+ 1
1222
+ I
1223
+ 1
1224
+ n
1225
+ p
1226
+ 17
1227
+ x
1228
+ 8
1229
+ @options
1230
+ x
1231
+ 11
1232
+ file_format
1233
+ x
1234
+ 2
1235
+ []
1236
+ x
1237
+ 19
1238
+ NotImplementedError
1239
+ n
1240
+ s
1241
+ 40
1242
+ Logs::Reader does not work on IO for now
1243
+ x
1244
+ 5
1245
+ raise
1246
+ x
1247
+ 18
1248
+ RequestLogAnalyzer
1249
+ n
1250
+ x
1251
+ 10
1252
+ FileFormat
1253
+ x
1254
+ 10
1255
+ autodetect
1256
+ n
1257
+ x
1258
+ 6
1259
+ Source
1260
+ x
1261
+ 9
1262
+ LogParser
1263
+ x
1264
+ 3
1265
+ new
1266
+ x
1267
+ 8
1268
+ allocate
1269
+ x
1270
+ 10
1271
+ initialize
1272
+ p
1273
+ 17
1274
+ I
1275
+ -1
1276
+ I
1277
+ 30
1278
+ I
1279
+ 0
1280
+ I
1281
+ 31
1282
+ I
1283
+ b
1284
+ I
1285
+ 32
1286
+ I
1287
+ 12
1288
+ I
1289
+ 33
1290
+ I
1291
+ 1d
1292
+ I
1293
+ 0
1294
+ I
1295
+ 1e
1296
+ I
1297
+ 35
1298
+ I
1299
+ 28
1300
+ I
1301
+ 31
1302
+ I
1303
+ 2b
1304
+ I
1305
+ 37
1306
+ I
1307
+ 4c
1308
+ x
1309
+ 51
1310
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1311
+ p
1312
+ 2
1313
+ x
1314
+ 4
1315
+ path
1316
+ x
1317
+ 11
1318
+ file_format
1319
+ x
1320
+ 16
1321
+ request_to_tuple
1322
+ M
1323
+ 1
1324
+ n
1325
+ n
1326
+ x
1327
+ 16
1328
+ request_to_tuple
1329
+ i
1330
+ 6
1331
+ 20
1332
+ 0
1333
+ 49
1334
+ 0
1335
+ 0
1336
+ 11
1337
+ I
1338
+ 2
1339
+ I
1340
+ 1
1341
+ I
1342
+ 1
1343
+ I
1344
+ 1
1345
+ n
1346
+ p
1347
+ 1
1348
+ x
1349
+ 10
1350
+ attributes
1351
+ p
1352
+ 5
1353
+ I
1354
+ -1
1355
+ I
1356
+ 3a
1357
+ I
1358
+ 0
1359
+ I
1360
+ 3b
1361
+ I
1362
+ 6
1363
+ x
1364
+ 51
1365
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1366
+ p
1367
+ 1
1368
+ x
1369
+ 3
1370
+ req
1371
+ x
1372
+ 9
1373
+ LOG_TYPES
1374
+ x
1375
+ 6
1376
+ string
1377
+ x
1378
+ 6
1379
+ String
1380
+ n
1381
+ x
1382
+ 5
1383
+ float
1384
+ x
1385
+ 5
1386
+ Float
1387
+ n
1388
+ x
1389
+ 7
1390
+ decimal
1391
+ n
1392
+ x
1393
+ 3
1394
+ int
1395
+ x
1396
+ 7
1397
+ Integer
1398
+ n
1399
+ x
1400
+ 7
1401
+ integer
1402
+ n
1403
+ x
1404
+ 3
1405
+ sym
1406
+ x
1407
+ 6
1408
+ Symbol
1409
+ n
1410
+ x
1411
+ 6
1412
+ symbol
1413
+ n
1414
+ x
1415
+ 9
1416
+ timestamp
1417
+ n
1418
+ x
1419
+ 7
1420
+ traffic
1421
+ n
1422
+ x
1423
+ 8
1424
+ duration
1425
+ n
1426
+ x
1427
+ 5
1428
+ epoch
1429
+ n
1430
+ x
1431
+ 15
1432
+ nillable_string
1433
+ n
1434
+ x
1435
+ 7
1436
+ referer
1437
+ n
1438
+ x
1439
+ 10
1440
+ user_agent
1441
+ n
1442
+ x
1443
+ 4
1444
+ path
1445
+ n
1446
+ x
1447
+ 3
1448
+ sql
1449
+ n
1450
+ x
1451
+ 13
1452
+ infer_heading
1453
+ M
1454
+ 1
1455
+ n
1456
+ n
1457
+ x
1458
+ 13
1459
+ infer_heading
1460
+ i
1461
+ 67
1462
+ 23
1463
+ 1
1464
+ 10
1465
+ 9
1466
+ 7
1467
+ 0
1468
+ 19
1469
+ 1
1470
+ 15
1471
+ 45
1472
+ 1
1473
+ 2
1474
+ 20
1475
+ 0
1476
+ 49
1477
+ 3
1478
+ 0
1479
+ 20
1480
+ 1
1481
+ 49
1482
+ 4
1483
+ 1
1484
+ 49
1485
+ 5
1486
+ 0
1487
+ 56
1488
+ 6
1489
+ 50
1490
+ 7
1491
+ 0
1492
+ 49
1493
+ 4
1494
+ 1
1495
+ 19
1496
+ 2
1497
+ 15
1498
+ 45
1499
+ 8
1500
+ 9
1501
+ 43
1502
+ 10
1503
+ 13
1504
+ 71
1505
+ 11
1506
+ 47
1507
+ 9
1508
+ 61
1509
+ 47
1510
+ 49
1511
+ 12
1512
+ 0
1513
+ 13
1514
+ 20
1515
+ 2
1516
+ 47
1517
+ 49
1518
+ 13
1519
+ 1
1520
+ 15
1521
+ 8
1522
+ 66
1523
+ 20
1524
+ 2
1525
+ 49
1526
+ 11
1527
+ 1
1528
+ 11
1529
+ I
1530
+ 6
1531
+ I
1532
+ 3
1533
+ I
1534
+ 1
1535
+ I
1536
+ 2
1537
+ n
1538
+ p
1539
+ 14
1540
+ x
1541
+ 6
1542
+ access
1543
+ x
1544
+ 4
1545
+ Hash
1546
+ n
1547
+ x
1548
+ 16
1549
+ line_definitions
1550
+ x
1551
+ 2
1552
+ []
1553
+ x
1554
+ 8
1555
+ captures
1556
+ M
1557
+ 1
1558
+ p
1559
+ 2
1560
+ x
1561
+ 9
1562
+ for_block
1563
+ t
1564
+ n
1565
+ x
1566
+ 13
1567
+ infer_heading
1568
+ i
1569
+ 26
1570
+ 57
1571
+ 19
1572
+ 0
1573
+ 15
1574
+ 20
1575
+ 0
1576
+ 7
1577
+ 0
1578
+ 49
1579
+ 1
1580
+ 1
1581
+ 5
1582
+ 20
1583
+ 0
1584
+ 7
1585
+ 2
1586
+ 49
1587
+ 1
1588
+ 1
1589
+ 47
1590
+ 49
1591
+ 3
1592
+ 1
1593
+ 35
1594
+ 2
1595
+ 11
1596
+ I
1597
+ 6
1598
+ I
1599
+ 1
1600
+ I
1601
+ 1
1602
+ I
1603
+ 1
1604
+ n
1605
+ p
1606
+ 4
1607
+ x
1608
+ 4
1609
+ name
1610
+ x
1611
+ 2
1612
+ []
1613
+ x
1614
+ 4
1615
+ type
1616
+ x
1617
+ 7
1618
+ to_type
1619
+ p
1620
+ 5
1621
+ I
1622
+ 0
1623
+ I
1624
+ 56
1625
+ I
1626
+ 4
1627
+ I
1628
+ 57
1629
+ I
1630
+ 1a
1631
+ x
1632
+ 51
1633
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1634
+ p
1635
+ 1
1636
+ x
1637
+ 4
1638
+ capt
1639
+ x
1640
+ 7
1641
+ collect
1642
+ x
1643
+ 3
1644
+ Alf
1645
+ n
1646
+ x
1647
+ 7
1648
+ Heading
1649
+ x
1650
+ 3
1651
+ new
1652
+ x
1653
+ 8
1654
+ allocate
1655
+ x
1656
+ 10
1657
+ initialize
1658
+ p
1659
+ 7
1660
+ I
1661
+ -1
1662
+ I
1663
+ 55
1664
+ I
1665
+ 9
1666
+ I
1667
+ 56
1668
+ I
1669
+ 24
1670
+ I
1671
+ 59
1672
+ I
1673
+ 43
1674
+ x
1675
+ 51
1676
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1677
+ p
1678
+ 3
1679
+ x
1680
+ 6
1681
+ format
1682
+ x
1683
+ 8
1684
+ line_def
1685
+ x
1686
+ 1
1687
+ h
1688
+ x
1689
+ 7
1690
+ to_type
1691
+ M
1692
+ 1
1693
+ n
1694
+ n
1695
+ x
1696
+ 7
1697
+ to_type
1698
+ i
1699
+ 16
1700
+ 45
1701
+ 0
1702
+ 1
1703
+ 20
1704
+ 0
1705
+ 49
1706
+ 2
1707
+ 1
1708
+ 13
1709
+ 10
1710
+ 15
1711
+ 15
1712
+ 45
1713
+ 3
1714
+ 4
1715
+ 11
1716
+ I
1717
+ 3
1718
+ I
1719
+ 1
1720
+ I
1721
+ 1
1722
+ I
1723
+ 1
1724
+ n
1725
+ p
1726
+ 5
1727
+ x
1728
+ 9
1729
+ LOG_TYPES
1730
+ n
1731
+ x
1732
+ 2
1733
+ []
1734
+ x
1735
+ 6
1736
+ String
1737
+ n
1738
+ p
1739
+ 5
1740
+ I
1741
+ -1
1742
+ I
1743
+ 5c
1744
+ I
1745
+ 0
1746
+ I
1747
+ 5d
1748
+ I
1749
+ 10
1750
+ x
1751
+ 51
1752
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1753
+ p
1754
+ 1
1755
+ x
1756
+ 8
1757
+ log_type
1758
+ x
1759
+ 3
1760
+ Alf
1761
+ x
1762
+ 6
1763
+ Reader
1764
+ x
1765
+ 4
1766
+ logs
1767
+ s
1768
+ 4
1769
+ .log
1770
+ x
1771
+ 8
1772
+ register
1773
+ p
1774
+ 65
1775
+ I
1776
+ 2
1777
+ I
1778
+ 9
1779
+ I
1780
+ 5
1781
+ I
1782
+ c
1783
+ I
1784
+ d
1785
+ I
1786
+ a
1787
+ I
1788
+ 15
1789
+ I
1790
+ b
1791
+ I
1792
+ 21
1793
+ I
1794
+ e
1795
+ I
1796
+ 29
1797
+ I
1798
+ 10
1799
+ I
1800
+ 37
1801
+ I
1802
+ 16
1803
+ I
1804
+ 45
1805
+ I
1806
+ 1f
1807
+ I
1808
+ 49
1809
+ I
1810
+ 21
1811
+ I
1812
+ 57
1813
+ I
1814
+ 30
1815
+ I
1816
+ 65
1817
+ I
1818
+ 3a
1819
+ I
1820
+ 73
1821
+ I
1822
+ 3e
1823
+ I
1824
+ 76
1825
+ I
1826
+ 53
1827
+ I
1828
+ 7f
1829
+ I
1830
+ 40
1831
+ I
1832
+ 89
1833
+ I
1834
+ 41
1835
+ I
1836
+ 93
1837
+ I
1838
+ 42
1839
+ I
1840
+ 9d
1841
+ I
1842
+ 43
1843
+ I
1844
+ a7
1845
+ I
1846
+ 44
1847
+ I
1848
+ b1
1849
+ I
1850
+ 45
1851
+ I
1852
+ bb
1853
+ I
1854
+ 46
1855
+ I
1856
+ c5
1857
+ I
1858
+ 47
1859
+ I
1860
+ cf
1861
+ I
1862
+ 48
1863
+ I
1864
+ d9
1865
+ I
1866
+ 49
1867
+ I
1868
+ e3
1869
+ I
1870
+ 4a
1871
+ I
1872
+ ed
1873
+ I
1874
+ 4c
1875
+ I
1876
+ f7
1877
+ I
1878
+ 4d
1879
+ I
1880
+ 101
1881
+ I
1882
+ 4e
1883
+ I
1884
+ 10b
1885
+ I
1886
+ 50
1887
+ I
1888
+ 115
1889
+ I
1890
+ 52
1891
+ I
1892
+ 122
1893
+ I
1894
+ 55
1895
+ I
1896
+ 130
1897
+ I
1898
+ 5c
1899
+ I
1900
+ 13e
1901
+ I
1902
+ 60
1903
+ I
1904
+ 14f
1905
+ x
1906
+ 51
1907
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1908
+ p
1909
+ 0
1910
+ x
1911
+ 13
1912
+ attach_method
1913
+ p
1914
+ 3
1915
+ I
1916
+ 2
1917
+ I
1918
+ 7
1919
+ I
1920
+ 21
1921
+ x
1922
+ 51
1923
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1924
+ p
1925
+ 0
1926
+ x
1927
+ 13
1928
+ attach_method
1929
+ p
1930
+ 3
1931
+ I
1932
+ 2
1933
+ I
1934
+ 2
1935
+ I
1936
+ 1c
1937
+ x
1938
+ 51
1939
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1940
+ p
1941
+ 0
1942
+ x
1943
+ 13
1944
+ attach_method
1945
+ p
1946
+ 3
1947
+ I
1948
+ 0
1949
+ I
1950
+ 1
1951
+ I
1952
+ 1c
1953
+ x
1954
+ 51
1955
+ /home/blambeau/work/devel/alf/lib/alf/extra/logs.rb
1956
+ p
1957
+ 0