refbiblio_rafa 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +2 -0
  3. data/.travis.yml +9 -0
  4. data/CODE_OF_CONDUCT.md +13 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +108 -0
  7. data/Guardfile +82 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +3 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +7 -0
  13. data/coverage/.last_run.json +5 -0
  14. data/coverage/.resultset.json +467 -0
  15. data/coverage/.resultset.json.lock +0 -0
  16. data/doc/Doublylinkedlist.html +129 -0
  17. data/doc/Doublylinkedlist/Doublylinkedlist.html +1139 -0
  18. data/doc/RefAPA.html +129 -0
  19. data/doc/RefAPA/Refapa.html +503 -0
  20. data/doc/RefBiblio.html +129 -0
  21. data/doc/RefBiblio/ArtPeriodico.html +522 -0
  22. data/doc/RefBiblio/DocElectronico.html +782 -0
  23. data/doc/RefBiblio/Libro.html +514 -0
  24. data/doc/RefBiblio/Periodicas.html +345 -0
  25. data/doc/RefBiblio/Referencia.html +1068 -0
  26. data/doc/_index.html +201 -0
  27. data/doc/class_list.html +58 -0
  28. data/doc/css/common.css +1 -0
  29. data/doc/css/full_list.css +57 -0
  30. data/doc/css/style.css +339 -0
  31. data/doc/file.README.html +79 -0
  32. data/doc/file_list.html +60 -0
  33. data/doc/frames.html +26 -0
  34. data/doc/index.html +79 -0
  35. data/doc/js/app.js +219 -0
  36. data/doc/js/full_list.js +181 -0
  37. data/doc/js/jquery.js +4 -0
  38. data/doc/method_list.html +303 -0
  39. data/doc/top-level-namespace.html +112 -0
  40. data/lib/doublylinkedlist/doublylinkedlist.rb +161 -0
  41. data/lib/doublylinkedlist/version.rb +3 -0
  42. data/lib/refAPA/refapa.rb +36 -0
  43. data/lib/refAPA/version.rb +3 -0
  44. data/lib/refBiblio.rb +8 -0
  45. data/lib/refBiblio/referencia.rb +242 -0
  46. data/lib/refBiblio/version.rb +3 -0
  47. data/refBiblio.gemspec +33 -0
  48. metadata +203 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: be96fb9f30bdb507f3d9d486d2ac5ccbd3cc6dca
4
+ data.tar.gz: 051aa3a8d50f176d817e642df0fc0df1a0225640
5
+ SHA512:
6
+ metadata.gz: 76bbb2a36c1c922816930bdcda8cbe06ce58ef60cdef7678bc9183bbbe6c97d48b99b48721422e5b7a882c5ea8abd88b6bdcdfa88ff9a41816977474062279eb
7
+ data.tar.gz: ef749b9a9b103047ec0dfebd6958d89bb64c13f40dc4c6ccf8f88aa03904af381aec76dfc8daf68a9997f6d1d069cf2e44dbe480c2613f88cd51623e28600ea2
@@ -0,0 +1,2 @@
1
+ service_name: travis-ci
2
+ repo_token: 4zaWjfNAFXgBTzXTugnezNY58ouV31CXw
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.1
4
+ - 2.2.0
5
+ - 1.9.3
6
+ - jruby-19mode # JRuby in 1.9 mode
7
+ - rbx-19mode
8
+ notifications:
9
+ email: false
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/).
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in refBiblio.gemspec
4
+ gemspec
@@ -0,0 +1,108 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ refBiblio (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ coderay (1.1.0)
10
+ coveralls (0.8.10)
11
+ json (~> 1.8)
12
+ rest-client (>= 1.6.8, < 2)
13
+ simplecov (~> 0.11.0)
14
+ term-ansicolor (~> 1.3)
15
+ thor (~> 0.19.1)
16
+ tins (~> 1.6.0)
17
+ diff-lcs (1.2.5)
18
+ docile (1.1.5)
19
+ domain_name (0.5.25)
20
+ unf (>= 0.0.5, < 1.0.0)
21
+ ffi (1.9.10)
22
+ formatador (0.2.5)
23
+ guard (2.13.0)
24
+ formatador (>= 0.2.4)
25
+ listen (>= 2.7, <= 4.0)
26
+ lumberjack (~> 1.0)
27
+ nenv (~> 0.1)
28
+ notiffany (~> 0.0)
29
+ pry (>= 0.9.12)
30
+ shellany (~> 0.0)
31
+ thor (>= 0.18.1)
32
+ guard-bundler (2.1.0)
33
+ bundler (~> 1.0)
34
+ guard (~> 2.2)
35
+ guard-compat (~> 1.1)
36
+ guard-compat (1.2.1)
37
+ guard-rspec (4.6.4)
38
+ guard (~> 2.1)
39
+ guard-compat (~> 1.1)
40
+ rspec (>= 2.99.0, < 4.0)
41
+ http-cookie (1.0.2)
42
+ domain_name (~> 0.5)
43
+ json (1.8.3)
44
+ listen (3.0.4)
45
+ rb-fsevent (>= 0.9.3)
46
+ rb-inotify (>= 0.9)
47
+ lumberjack (1.0.9)
48
+ method_source (0.8.2)
49
+ mime-types (2.99)
50
+ nenv (0.2.0)
51
+ netrc (0.11.0)
52
+ notiffany (0.0.8)
53
+ nenv (~> 0.1)
54
+ shellany (~> 0.0)
55
+ pry (0.10.3)
56
+ coderay (~> 1.1.0)
57
+ method_source (~> 0.8.1)
58
+ slop (~> 3.4)
59
+ rake (10.4.2)
60
+ rb-fsevent (0.9.6)
61
+ rb-inotify (0.9.5)
62
+ ffi (>= 0.5.0)
63
+ rest-client (1.8.0)
64
+ http-cookie (>= 1.0.2, < 2.0)
65
+ mime-types (>= 1.16, < 3.0)
66
+ netrc (~> 0.7)
67
+ rspec (3.3.0)
68
+ rspec-core (~> 3.3.0)
69
+ rspec-expectations (~> 3.3.0)
70
+ rspec-mocks (~> 3.3.0)
71
+ rspec-core (3.3.2)
72
+ rspec-support (~> 3.3.0)
73
+ rspec-expectations (3.3.1)
74
+ diff-lcs (>= 1.2.0, < 2.0)
75
+ rspec-support (~> 3.3.0)
76
+ rspec-mocks (3.3.2)
77
+ diff-lcs (>= 1.2.0, < 2.0)
78
+ rspec-support (~> 3.3.0)
79
+ rspec-support (3.3.0)
80
+ shellany (0.0.1)
81
+ simplecov (0.11.1)
82
+ docile (~> 1.1.0)
83
+ json (~> 1.8)
84
+ simplecov-html (~> 0.10.0)
85
+ simplecov-html (0.10.0)
86
+ slop (3.6.0)
87
+ term-ansicolor (1.3.2)
88
+ tins (~> 1.0)
89
+ thor (0.19.1)
90
+ tins (1.6.0)
91
+ unf (0.1.4)
92
+ unf_ext
93
+ unf_ext (0.0.7.1)
94
+ yard (0.8.7.6)
95
+
96
+ PLATFORMS
97
+ ruby
98
+
99
+ DEPENDENCIES
100
+ bundler (~> 1.8.4)
101
+ coveralls
102
+ guard
103
+ guard-bundler
104
+ guard-rspec
105
+ rake (~> 10.0)
106
+ refBiblio!
107
+ rspec (~> 3.3.0)
108
+ yard
@@ -0,0 +1,82 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ ## Uncomment and set this to only include directories you want to watch
5
+ # directories %w(app lib config test spec features) \
6
+ # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
+
8
+ ## Note: if you are using the `directories` clause above and you are not
9
+ ## watching the project directory ('.'), then you will want to move
10
+ ## the Guardfile to a watched dir and symlink it back, e.g.
11
+ #
12
+ # $ mkdir config
13
+ # $ mv Guardfile config/
14
+ # $ ln -s config/Guardfile .
15
+ #
16
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17
+
18
+ guard :bundler do
19
+ require 'guard/bundler'
20
+ require 'guard/bundler/verify'
21
+ helper = Guard::Bundler::Verify.new
22
+
23
+ files = ['Gemfile']
24
+ files += Dir['*.gemspec'] if files.any? { |f| helper.uses_gemspec?(f) }
25
+
26
+ # Assume files are symlinked from somewhere
27
+ files.each { |file| watch(helper.real_path(file)) }
28
+ end
29
+
30
+ # Note: The cmd option is now required due to the increasing number of ways
31
+ # rspec may be run, below are examples of the most common uses.
32
+ # * bundler: 'bundle exec rspec'
33
+ # * bundler binstubs: 'bin/rspec'
34
+ # * spring: 'bin/rspec' (This will use spring if running and you have
35
+ # installed the spring binstubs per the docs)
36
+ # * zeus: 'zeus rspec' (requires the server to be started separately)
37
+ # * 'just' rspec: 'rspec'
38
+
39
+ guard :rspec, cmd: "bundle exec rspec" do
40
+ require "guard/rspec/dsl"
41
+ dsl = Guard::RSpec::Dsl.new(self)
42
+
43
+ # Feel free to open issues for suggestions and improvements
44
+
45
+ # RSpec files
46
+ rspec = dsl.rspec
47
+ watch(rspec.spec_helper) { rspec.spec_dir }
48
+ watch(rspec.spec_support) { rspec.spec_dir }
49
+ watch(rspec.spec_files)
50
+
51
+ # Ruby files
52
+ ruby = dsl.ruby
53
+ dsl.watch_spec_files_for(ruby.lib_files)
54
+
55
+ # Rails files
56
+ rails = dsl.rails(view_extensions: %w(erb haml slim))
57
+ dsl.watch_spec_files_for(rails.app_files)
58
+ dsl.watch_spec_files_for(rails.views)
59
+
60
+ watch(rails.controllers) do |m|
61
+ [
62
+ rspec.spec.("routing/#{m[1]}_routing"),
63
+ rspec.spec.("controllers/#{m[1]}_controller"),
64
+ rspec.spec.("acceptance/#{m[1]}")
65
+ ]
66
+ end
67
+
68
+ # Rails config changes
69
+ watch(rails.spec_helper) { rspec.spec_dir }
70
+ watch(rails.routes) { "#{rspec.spec_dir}/routing" }
71
+ watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
72
+
73
+ # Capybara features specs
74
+ watch(rails.view_dirs) { |m| rspec.spec.("features/#{m[1]}") }
75
+ watch(rails.layouts) { |m| rspec.spec.("features/#{m[1]}") }
76
+
77
+ # Turnip features and steps
78
+ watch(%r{^spec/acceptance/(.+)\.feature$})
79
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
80
+ Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
81
+ end
82
+ end
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Daniel Ramos
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,3 @@
1
+ #Práctica 11 de LPP
2
+ ### Estado de travis: [![Build Status](https://travis-ci.org/Rafaherrero/lpp_11.svg)](https://travis-ci.org/Rafaherrero/lpp_10)
3
+ ### Estado Coveralls: [![Coverage Status](https://coveralls.io/repos/Rafaherrero/lpp_11/badge.svg?branch=master&service=github)](https://coveralls.io/github/Rafaherrero/lpp_10?branch=master)
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "refBiblio"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ {
2
+ "result": {
3
+ "covered_percent": 73.85
4
+ }
5
+ }
@@ -0,0 +1,467 @@
1
+ {
2
+ "RSpec": {
3
+ "coverage": {
4
+ "/home/ubuntu/workspace/lpp_11/lib/refBiblio.rb": [
5
+ 1,
6
+ 1,
7
+ 1,
8
+ 1,
9
+ null,
10
+ 1,
11
+ null,
12
+ null
13
+ ],
14
+ "/home/ubuntu/workspace/lpp_11/lib/refBiblio/version.rb": [
15
+ 1,
16
+ 1,
17
+ null
18
+ ],
19
+ "/home/ubuntu/workspace/lpp_11/lib/refBiblio/referencia.rb": [
20
+ 1,
21
+ null,
22
+ 1,
23
+ 1,
24
+ null,
25
+ null,
26
+ null,
27
+ 1,
28
+ 1,
29
+ 1,
30
+ null,
31
+ null,
32
+ null,
33
+ null,
34
+ 1,
35
+ 3,
36
+ 3,
37
+ 7,
38
+ 7,
39
+ 7,
40
+ 7,
41
+ 0,
42
+ 0,
43
+ null,
44
+ 7,
45
+ 7,
46
+ 7,
47
+ null,
48
+ 3,
49
+ null,
50
+ null,
51
+ null,
52
+ null,
53
+ 1,
54
+ 3,
55
+ 3,
56
+ 13,
57
+ 7,
58
+ null,
59
+ 6,
60
+ null,
61
+ 13,
62
+ 3,
63
+ null,
64
+ 13,
65
+ null,
66
+ null,
67
+ null,
68
+ null,
69
+ 3,
70
+ 3,
71
+ null,
72
+ null,
73
+ null,
74
+ null,
75
+ 3,
76
+ 3,
77
+ null,
78
+ null,
79
+ null,
80
+ null,
81
+ 3,
82
+ 2,
83
+ null,
84
+ null,
85
+ null,
86
+ null,
87
+ 3,
88
+ 5,
89
+ null,
90
+ null,
91
+ null,
92
+ null,
93
+ 3,
94
+ 0,
95
+ null,
96
+ null,
97
+ null,
98
+ null,
99
+ 3,
100
+ 19,
101
+ null,
102
+ null,
103
+ null,
104
+ null,
105
+ null,
106
+ 3,
107
+ 3,
108
+ 1,
109
+ 1,
110
+ 0,
111
+ null,
112
+ 1,
113
+ 3,
114
+ 1,
115
+ 0,
116
+ null,
117
+ 1,
118
+ null,
119
+ 0,
120
+ 0,
121
+ null,
122
+ 0,
123
+ null,
124
+ null,
125
+ 2,
126
+ 6,
127
+ 2,
128
+ 2,
129
+ null,
130
+ 0,
131
+ null,
132
+ null,
133
+ null,
134
+ null,
135
+ null,
136
+ 1,
137
+ null,
138
+ null,
139
+ null,
140
+ 1,
141
+ 1,
142
+ 1,
143
+ 1,
144
+ 0,
145
+ null,
146
+ 1,
147
+ null,
148
+ null,
149
+ null,
150
+ null,
151
+ null,
152
+ null,
153
+ 1,
154
+ 1,
155
+ null,
156
+ null,
157
+ null,
158
+ null,
159
+ 1,
160
+ 1,
161
+ null,
162
+ null,
163
+ null,
164
+ null,
165
+ 1,
166
+ 2,
167
+ 2,
168
+ null,
169
+ null,
170
+ null,
171
+ 1,
172
+ null,
173
+ null,
174
+ null,
175
+ 1,
176
+ null,
177
+ null,
178
+ null,
179
+ 1,
180
+ 2,
181
+ null,
182
+ null,
183
+ null,
184
+ 1,
185
+ null,
186
+ null,
187
+ null,
188
+ 1,
189
+ 1,
190
+ 1,
191
+ 1,
192
+ 0,
193
+ null,
194
+ 1,
195
+ null,
196
+ null,
197
+ 1,
198
+ null,
199
+ null,
200
+ null,
201
+ null,
202
+ 1,
203
+ 1,
204
+ null,
205
+ null,
206
+ null,
207
+ null,
208
+ 1,
209
+ 2,
210
+ 2,
211
+ null,
212
+ null,
213
+ null,
214
+ 1,
215
+ null,
216
+ null,
217
+ null,
218
+ 1,
219
+ 1,
220
+ 1,
221
+ 1,
222
+ 0,
223
+ null,
224
+ 1,
225
+ null,
226
+ null,
227
+ 1,
228
+ null,
229
+ null,
230
+ null,
231
+ null,
232
+ 1,
233
+ 1,
234
+ null,
235
+ null,
236
+ null,
237
+ null,
238
+ 1,
239
+ 1,
240
+ null,
241
+ null,
242
+ null,
243
+ null,
244
+ 1,
245
+ 1,
246
+ null,
247
+ null,
248
+ null,
249
+ null,
250
+ 1,
251
+ 6,
252
+ null,
253
+ null,
254
+ null,
255
+ null,
256
+ 1,
257
+ 2,
258
+ 2,
259
+ null,
260
+ null,
261
+ null
262
+ ],
263
+ "/home/ubuntu/workspace/lpp_11/lib/doublylinkedlist/doublylinkedlist.rb": [
264
+ 1,
265
+ 1,
266
+ null,
267
+ null,
268
+ 1,
269
+ 1,
270
+ null,
271
+ 1,
272
+ 12,
273
+ 12,
274
+ null,
275
+ null,
276
+ null,
277
+ 1,
278
+ 0,
279
+ 0,
280
+ 0,
281
+ 0,
282
+ null,
283
+ 0,
284
+ 0,
285
+ null,
286
+ null,
287
+ 0,
288
+ null,
289
+ 0,
290
+ 0,
291
+ null,
292
+ null,
293
+ null,
294
+ null,
295
+ 1,
296
+ 3,
297
+ 1,
298
+ 1,
299
+ null,
300
+ 2,
301
+ 2,
302
+ 2,
303
+ null,
304
+ null,
305
+ null,
306
+ null,
307
+ null,
308
+ 1,
309
+ 6,
310
+ 4,
311
+ 4,
312
+ null,
313
+ 2,
314
+ 2,
315
+ 2,
316
+ 2,
317
+ null,
318
+ null,
319
+ null,
320
+ null,
321
+ 1,
322
+ null,
323
+ 0,
324
+ null,
325
+ 0,
326
+ 0,
327
+ 0,
328
+ null,
329
+ null,
330
+ 0,
331
+ 0,
332
+ null,
333
+ null,
334
+ null,
335
+ 0,
336
+ null,
337
+ null,
338
+ null,
339
+ null,
340
+ 1,
341
+ null,
342
+ 0,
343
+ null,
344
+ 0,
345
+ 0,
346
+ 0,
347
+ null,
348
+ null,
349
+ 0,
350
+ 0,
351
+ null,
352
+ null,
353
+ null,
354
+ 0,
355
+ null,
356
+ null,
357
+ null,
358
+ null,
359
+ null,
360
+ 1,
361
+ 0,
362
+ null,
363
+ 0,
364
+ 0,
365
+ null,
366
+ 0,
367
+ 0,
368
+ 0,
369
+ 0,
370
+ null,
371
+ null,
372
+ 0,
373
+ null,
374
+ null,
375
+ null,
376
+ null,
377
+ 1,
378
+ 0,
379
+ 0,
380
+ null,
381
+ null,
382
+ 0,
383
+ 0,
384
+ null,
385
+ null,
386
+ 0,
387
+ 0,
388
+ 0,
389
+ 0,
390
+ 0,
391
+ 0,
392
+ null,
393
+ null,
394
+ 0,
395
+ null,
396
+ null,
397
+ null,
398
+ 1,
399
+ 5,
400
+ 5,
401
+ 9,
402
+ 9,
403
+ null,
404
+ null,
405
+ null,
406
+ null,
407
+ 1,
408
+ 6,
409
+ 6,
410
+ 6,
411
+ 6,
412
+ 6,
413
+ 6,
414
+ 3,
415
+ 0,
416
+ 0,
417
+ null,
418
+ 3,
419
+ 3,
420
+ null,
421
+ null,
422
+ null,
423
+ null,
424
+ null
425
+ ],
426
+ "/home/ubuntu/workspace/lpp_11/lib/refAPA/refapa.rb": [
427
+ 1,
428
+ null,
429
+ 1,
430
+ null,
431
+ null,
432
+ 1,
433
+ 1,
434
+ 1,
435
+ 6,
436
+ null,
437
+ null,
438
+ null,
439
+ null,
440
+ 1,
441
+ 6,
442
+ 6,
443
+ null,
444
+ null,
445
+ null,
446
+ null,
447
+ 1,
448
+ 0,
449
+ null,
450
+ null,
451
+ null,
452
+ null,
453
+ 1,
454
+ 4,
455
+ 4,
456
+ 6,
457
+ 6,
458
+ null,
459
+ 4,
460
+ null,
461
+ null,
462
+ null
463
+ ]
464
+ },
465
+ "timestamp": 1450821634
466
+ }
467
+ }