enju_circulation 0.1.0.pre40 → 0.1.0.pre41
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.
- checksums.yaml +4 -4
- data/README.rdoc +8 -1
- data/app/controllers/checked_items_controller.rb +1 -1
- data/app/controllers/checkout_types_controller.rb +0 -7
- data/app/controllers/checkouts_controller.rb +1 -1
- data/app/controllers/manifestation_checkout_stats_controller.rb +22 -8
- data/app/controllers/reserves_controller.rb +17 -5
- data/app/models/carrier_type_has_checkout_type.rb +2 -3
- data/app/models/checked_item.rb +2 -3
- data/app/models/checkin.rb +2 -3
- data/app/models/checkout.rb +6 -2
- data/app/models/checkout_stat_has_manifestation.rb +2 -3
- data/app/models/checkout_stat_has_user.rb +2 -3
- data/app/models/checkout_type.rb +2 -3
- data/app/models/circulation_status.rb +2 -3
- data/app/models/item_has_use_restriction.rb +2 -3
- data/app/models/lending_policy.rb +2 -3
- data/app/models/manifestation_checkout_stat.rb +3 -3
- data/app/models/manifestation_checkout_stat_state_machine.rb +1 -1
- data/app/models/manifestation_checkout_stat_transition.rb +2 -2
- data/app/models/manifestation_reserve_stat.rb +3 -3
- data/app/models/manifestation_reserve_stat_transition.rb +2 -2
- data/app/models/reserve.rb +14 -11
- data/app/models/reserve_stat_has_manifestation.rb +2 -3
- data/app/models/reserve_stat_has_user.rb +2 -3
- data/app/models/reserve_transition.rb +2 -2
- data/app/models/use_restriction.rb +2 -3
- data/app/models/user_checkout_stat.rb +2 -2
- data/app/models/user_checkout_stat_transition.rb +2 -2
- data/app/models/user_group_has_checkout_type.rb +6 -7
- data/app/models/user_reserve_stat.rb +2 -2
- data/app/models/user_reserve_stat_transition.rb +2 -2
- data/app/views/checkouts/_list.html.erb +5 -0
- data/app/views/checkouts/index.rss.builder +3 -3
- data/app/views/manifestation_checkout_stats/_group_by_carrier_type.html.erb +53 -0
- data/app/views/manifestation_checkout_stats/_group_by_checkout_type.html.erb +54 -0
- data/app/views/manifestation_checkout_stats/show.html.erb +6 -38
- data/app/views/reserves/_new.html.erb +6 -1
- data/app/views/reserves/_new_user.html.erb +6 -1
- data/app/views/reserves/edit.html.erb +5 -0
- data/app/views/reserves/index.html.erb +2 -0
- data/app/views/reserves/index.rss.builder +2 -2
- data/app/views/reserves/show.html.erb +5 -0
- data/config/locales/translation_en.yml +2 -0
- data/config/locales/translation_ja.yml +2 -0
- data/db/migrate/20111129044509_add_pickup_location_to_reserve.rb +6 -0
- data/db/migrate/20140518050147_create_reserve_transitions.rb +5 -1
- data/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +5 -1
- data/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +5 -1
- data/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +5 -1
- data/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +5 -1
- data/db/migrate/20141014065831_add_shelf_id_to_checkout.rb +6 -0
- data/db/migrate/20141020120523_add_library_id_to_checkout.rb +6 -0
- data/lib/enju_circulation/accept.rb +22 -0
- data/lib/enju_circulation/basket.rb +37 -0
- data/lib/enju_circulation/item.rb +14 -8
- data/lib/enju_circulation/profile.rb +1 -1
- data/lib/enju_circulation/version.rb +1 -1
- data/lib/enju_circulation.rb +4 -0
- data/lib/tasks/checkout.rb +7 -0
- data/lib/tasks/enju_circulation_tasks.rake +10 -2
- data/spec/controllers/manifestation_checkout_stats_controller_spec.rb +2 -0
- data/spec/dummy/config/database.yml +23 -18
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +5 -1
- data/spec/dummy/db/schema.rb +561 -555
- data/spec/fixtures/carrier_type_has_checkout_types.yml +2 -3
- data/spec/fixtures/checked_items.yml +6 -7
- data/spec/fixtures/checkins.yml +2 -3
- data/spec/fixtures/checkout_stat_has_manifestations.yml +2 -3
- data/spec/fixtures/checkout_stat_has_users.yml +2 -3
- data/spec/fixtures/checkout_types.yml +2 -3
- data/spec/fixtures/checkouts.yml +17 -15
- data/spec/fixtures/circulation_statuses.yml +2 -3
- data/spec/fixtures/item_has_use_restrictions.yml +2 -3
- data/spec/fixtures/lending_policies.yml +2 -3
- data/spec/fixtures/manifestation_checkout_stats.yml +2 -2
- data/spec/fixtures/manifestation_reserve_stats.yml +2 -2
- data/spec/fixtures/manifestations.yml +114 -114
- data/spec/fixtures/reserve_stat_has_manifestations.yml +2 -3
- data/spec/fixtures/reserve_stat_has_users.yml +2 -3
- data/spec/fixtures/reserve_transitions.yml +2 -2
- data/spec/fixtures/reserves.yml +20 -19
- data/spec/fixtures/use_restrictions.yml +2 -3
- data/spec/fixtures/user_checkout_stats.yml +2 -2
- data/spec/fixtures/user_group_has_checkout_types.yml +2 -3
- data/spec/fixtures/user_reserve_stats.yml +2 -2
- data/spec/fixtures/users.yml +1 -1
- data/spec/models/basket_spec.rb +15 -2
- data/spec/models/carrier_type_has_checkout_type_spec.rb +2 -3
- data/spec/models/checked_item_spec.rb +2 -3
- data/spec/models/checkin_spec.rb +2 -3
- data/spec/models/checkout_spec.rb +4 -2
- data/spec/models/checkout_stat_has_manifestation_spec.rb +2 -3
- data/spec/models/checkout_stat_has_user_spec.rb +2 -3
- data/spec/models/checkout_type_spec.rb +2 -3
- data/spec/models/circulation_status_spec.rb +2 -3
- data/spec/models/lending_policy_spec.rb +2 -3
- data/spec/models/manifestation_checkout_stat_spec.rb +5 -4
- data/spec/models/manifestation_reserve_stat_spec.rb +2 -2
- data/spec/models/reserve_spec.rb +3 -2
- data/spec/models/reserve_stat_has_manifestation_spec.rb +2 -3
- data/spec/models/reserve_stat_has_user_spec.rb +2 -3
- data/spec/models/user_checkout_stat_spec.rb +2 -2
- data/spec/models/user_group_has_checkout_type_spec.rb +2 -3
- data/spec/models/user_reserve_stat_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -0
- metadata +44 -8
@@ -207,7 +207,7 @@ manifestation_00101:
|
|
207
207
|
id: 101
|
208
208
|
height:
|
209
209
|
width:
|
210
|
-
created_at: 2010-02-21 15:47:09
|
210
|
+
created_at: 2010-02-21 15:47:09 +9:00
|
211
211
|
manifestation_00102:
|
212
212
|
carrier_type_id: 1
|
213
213
|
language_id: 1
|
@@ -221,7 +221,7 @@ manifestation_00102:
|
|
221
221
|
id: 102
|
222
222
|
height:
|
223
223
|
width:
|
224
|
-
created_at: 2010-02-21 14:57:08
|
224
|
+
created_at: 2010-02-21 14:57:08 +9:00
|
225
225
|
manifestation_00103:
|
226
226
|
carrier_type_id: 1
|
227
227
|
language_id: 1
|
@@ -235,7 +235,7 @@ manifestation_00103:
|
|
235
235
|
id: 103
|
236
236
|
height:
|
237
237
|
width:
|
238
|
-
created_at: 2010-02-21 10:51:48
|
238
|
+
created_at: 2010-02-21 10:51:48 +9:00
|
239
239
|
manifestation_00104:
|
240
240
|
carrier_type_id: 1
|
241
241
|
language_id: 1
|
@@ -249,7 +249,7 @@ manifestation_00104:
|
|
249
249
|
id: 104
|
250
250
|
height:
|
251
251
|
width:
|
252
|
-
created_at: 2010-02-21 10:51:33
|
252
|
+
created_at: 2010-02-21 10:51:33 +9:00
|
253
253
|
manifestation_00105:
|
254
254
|
carrier_type_id: 1
|
255
255
|
language_id: 1
|
@@ -263,7 +263,7 @@ manifestation_00105:
|
|
263
263
|
id: 105
|
264
264
|
height:
|
265
265
|
width:
|
266
|
-
created_at: 2010-02-21 10:48:14
|
266
|
+
created_at: 2010-02-21 10:48:14 +9:00
|
267
267
|
manifestation_00106:
|
268
268
|
carrier_type_id: 1
|
269
269
|
language_id: 1
|
@@ -277,7 +277,7 @@ manifestation_00106:
|
|
277
277
|
id: 106
|
278
278
|
height:
|
279
279
|
width:
|
280
|
-
created_at: 2010-02-21 10:45:48
|
280
|
+
created_at: 2010-02-21 10:45:48 +9:00
|
281
281
|
manifestation_00107:
|
282
282
|
carrier_type_id: 1
|
283
283
|
language_id: 1
|
@@ -291,7 +291,7 @@ manifestation_00107:
|
|
291
291
|
id: 107
|
292
292
|
height:
|
293
293
|
width:
|
294
|
-
created_at: 2010-02-21 09:59:01
|
294
|
+
created_at: 2010-02-21 09:59:01 +9:00
|
295
295
|
manifestation_00108:
|
296
296
|
carrier_type_id: 1
|
297
297
|
language_id: 1
|
@@ -305,7 +305,7 @@ manifestation_00108:
|
|
305
305
|
id: 108
|
306
306
|
height:
|
307
307
|
width:
|
308
|
-
created_at: 2010-02-21 08:13:17
|
308
|
+
created_at: 2010-02-21 08:13:17 +9:00
|
309
309
|
manifestation_00109:
|
310
310
|
carrier_type_id: 1
|
311
311
|
language_id: 1
|
@@ -319,7 +319,7 @@ manifestation_00109:
|
|
319
319
|
id: 109
|
320
320
|
height:
|
321
321
|
width:
|
322
|
-
created_at: 2010-02-20 17:26:08
|
322
|
+
created_at: 2010-02-20 17:26:08 +9:00
|
323
323
|
manifestation_00110:
|
324
324
|
carrier_type_id: 1
|
325
325
|
language_id: 1
|
@@ -333,7 +333,7 @@ manifestation_00110:
|
|
333
333
|
id: 110
|
334
334
|
height:
|
335
335
|
width:
|
336
|
-
created_at: 2010-02-19 13:09:56
|
336
|
+
created_at: 2010-02-19 13:09:56 +9:00
|
337
337
|
manifestation_00111:
|
338
338
|
carrier_type_id: 1
|
339
339
|
language_id: 1
|
@@ -347,7 +347,7 @@ manifestation_00111:
|
|
347
347
|
id: 111
|
348
348
|
height:
|
349
349
|
width:
|
350
|
-
created_at: 2010-02-19 13:07:28
|
350
|
+
created_at: 2010-02-19 13:07:28 +9:00
|
351
351
|
manifestation_00112:
|
352
352
|
carrier_type_id: 1
|
353
353
|
language_id: 1
|
@@ -361,7 +361,7 @@ manifestation_00112:
|
|
361
361
|
id: 112
|
362
362
|
height:
|
363
363
|
width:
|
364
|
-
created_at: 2010-02-19 13:06:51
|
364
|
+
created_at: 2010-02-19 13:06:51 +9:00
|
365
365
|
manifestation_00113:
|
366
366
|
carrier_type_id: 1
|
367
367
|
language_id: 1
|
@@ -375,7 +375,7 @@ manifestation_00113:
|
|
375
375
|
id: 113
|
376
376
|
height:
|
377
377
|
width:
|
378
|
-
created_at: 2010-02-19 11:02:27
|
378
|
+
created_at: 2010-02-19 11:02:27 +9:00
|
379
379
|
manifestation_00114:
|
380
380
|
carrier_type_id: 1
|
381
381
|
language_id: 1
|
@@ -389,7 +389,7 @@ manifestation_00114:
|
|
389
389
|
id: 114
|
390
390
|
height:
|
391
391
|
width:
|
392
|
-
created_at: 2010-02-19 05:46:08
|
392
|
+
created_at: 2010-02-19 05:46:08 +9:00
|
393
393
|
manifestation_00115:
|
394
394
|
carrier_type_id: 1
|
395
395
|
language_id: 1
|
@@ -403,7 +403,7 @@ manifestation_00115:
|
|
403
403
|
id: 115
|
404
404
|
height:
|
405
405
|
width:
|
406
|
-
created_at: 2010-02-19 05:40:17
|
406
|
+
created_at: 2010-02-19 05:40:17 +9:00
|
407
407
|
manifestation_00116:
|
408
408
|
carrier_type_id: 1
|
409
409
|
language_id: 1
|
@@ -417,7 +417,7 @@ manifestation_00116:
|
|
417
417
|
id: 116
|
418
418
|
height:
|
419
419
|
width:
|
420
|
-
created_at: 2010-02-19 05:39:01
|
420
|
+
created_at: 2010-02-19 05:39:01 +9:00
|
421
421
|
manifestation_00117:
|
422
422
|
carrier_type_id: 1
|
423
423
|
language_id: 1
|
@@ -431,7 +431,7 @@ manifestation_00117:
|
|
431
431
|
id: 117
|
432
432
|
height:
|
433
433
|
width:
|
434
|
-
created_at: 2010-02-18 10:23:27
|
434
|
+
created_at: 2010-02-18 10:23:27 +9:00
|
435
435
|
manifestation_00118:
|
436
436
|
carrier_type_id: 1
|
437
437
|
language_id: 1
|
@@ -445,7 +445,7 @@ manifestation_00118:
|
|
445
445
|
id: 118
|
446
446
|
height:
|
447
447
|
width:
|
448
|
-
created_at: 2010-02-17 01:12:08
|
448
|
+
created_at: 2010-02-17 01:12:08 +9:00
|
449
449
|
manifestation_00119:
|
450
450
|
carrier_type_id: 1
|
451
451
|
language_id: 1
|
@@ -459,7 +459,7 @@ manifestation_00119:
|
|
459
459
|
id: 119
|
460
460
|
height:
|
461
461
|
width:
|
462
|
-
created_at: 2010-02-16 04:30:37
|
462
|
+
created_at: 2010-02-16 04:30:37 +9:00
|
463
463
|
manifestation_00120:
|
464
464
|
carrier_type_id: 1
|
465
465
|
language_id: 1
|
@@ -473,7 +473,7 @@ manifestation_00120:
|
|
473
473
|
id: 120
|
474
474
|
height:
|
475
475
|
width:
|
476
|
-
created_at: 2010-02-16 04:29:59
|
476
|
+
created_at: 2010-02-16 04:29:59 +9:00
|
477
477
|
manifestation_00121:
|
478
478
|
carrier_type_id: 1
|
479
479
|
language_id: 1
|
@@ -487,7 +487,7 @@ manifestation_00121:
|
|
487
487
|
id: 121
|
488
488
|
height:
|
489
489
|
width:
|
490
|
-
created_at: 2010-01-30 06:22:35
|
490
|
+
created_at: 2010-01-30 06:22:35 +9:00
|
491
491
|
manifestation_00122:
|
492
492
|
carrier_type_id: 1
|
493
493
|
language_id: 1
|
@@ -501,7 +501,7 @@ manifestation_00122:
|
|
501
501
|
id: 122
|
502
502
|
height:
|
503
503
|
width:
|
504
|
-
created_at: 2010-01-30 06:17:32
|
504
|
+
created_at: 2010-01-30 06:17:32 +9:00
|
505
505
|
manifestation_00123:
|
506
506
|
carrier_type_id: 1
|
507
507
|
language_id: 1
|
@@ -515,7 +515,7 @@ manifestation_00123:
|
|
515
515
|
id: 123
|
516
516
|
height:
|
517
517
|
width:
|
518
|
-
created_at: 2009-10-25 13:20:34
|
518
|
+
created_at: 2009-10-25 13:20:34 +9:00
|
519
519
|
manifestation_00124:
|
520
520
|
carrier_type_id: 1
|
521
521
|
language_id: 1
|
@@ -529,7 +529,7 @@ manifestation_00124:
|
|
529
529
|
id: 124
|
530
530
|
height:
|
531
531
|
width:
|
532
|
-
created_at: 2009-10-20 13:46:44
|
532
|
+
created_at: 2009-10-20 13:46:44 +9:00
|
533
533
|
manifestation_00125:
|
534
534
|
carrier_type_id: 1
|
535
535
|
language_id: 1
|
@@ -543,7 +543,7 @@ manifestation_00125:
|
|
543
543
|
id: 125
|
544
544
|
height:
|
545
545
|
width:
|
546
|
-
created_at: 2009-10-16 05:16:48
|
546
|
+
created_at: 2009-10-16 05:16:48 +9:00
|
547
547
|
manifestation_00126:
|
548
548
|
carrier_type_id: 1
|
549
549
|
language_id: 1
|
@@ -557,7 +557,7 @@ manifestation_00126:
|
|
557
557
|
id: 126
|
558
558
|
height:
|
559
559
|
width:
|
560
|
-
created_at: 2009-06-29 12:44:11
|
560
|
+
created_at: 2009-06-29 12:44:11 +9:00
|
561
561
|
manifestation_00127:
|
562
562
|
carrier_type_id: 1
|
563
563
|
language_id: 1
|
@@ -571,7 +571,7 @@ manifestation_00127:
|
|
571
571
|
id: 127
|
572
572
|
height:
|
573
573
|
width:
|
574
|
-
created_at: 2009-06-19 13:45:14
|
574
|
+
created_at: 2009-06-19 13:45:14 +9:00
|
575
575
|
manifestation_00128:
|
576
576
|
carrier_type_id: 1
|
577
577
|
language_id: 1
|
@@ -585,7 +585,7 @@ manifestation_00128:
|
|
585
585
|
id: 128
|
586
586
|
height:
|
587
587
|
width:
|
588
|
-
created_at: 2009-06-19 13:27:46
|
588
|
+
created_at: 2009-06-19 13:27:46 +9:00
|
589
589
|
manifestation_00129:
|
590
590
|
carrier_type_id: 1
|
591
591
|
language_id: 1
|
@@ -599,7 +599,7 @@ manifestation_00129:
|
|
599
599
|
id: 129
|
600
600
|
height:
|
601
601
|
width:
|
602
|
-
created_at: 2009-06-19 12:16:23
|
602
|
+
created_at: 2009-06-19 12:16:23 +9:00
|
603
603
|
manifestation_00130:
|
604
604
|
carrier_type_id: 1
|
605
605
|
language_id: 1
|
@@ -613,7 +613,7 @@ manifestation_00130:
|
|
613
613
|
id: 130
|
614
614
|
height:
|
615
615
|
width:
|
616
|
-
created_at: 2009-06-19 12:03:29
|
616
|
+
created_at: 2009-06-19 12:03:29 +9:00
|
617
617
|
manifestation_00131:
|
618
618
|
carrier_type_id: 1
|
619
619
|
language_id: 1
|
@@ -627,7 +627,7 @@ manifestation_00131:
|
|
627
627
|
id: 131
|
628
628
|
height:
|
629
629
|
width:
|
630
|
-
created_at: 2009-06-19 12:02:48
|
630
|
+
created_at: 2009-06-19 12:02:48 +9:00
|
631
631
|
manifestation_00132:
|
632
632
|
carrier_type_id: 1
|
633
633
|
language_id: 1
|
@@ -641,7 +641,7 @@ manifestation_00132:
|
|
641
641
|
id: 132
|
642
642
|
height:
|
643
643
|
width:
|
644
|
-
created_at: 2009-06-19 11:42:02
|
644
|
+
created_at: 2009-06-19 11:42:02 +9:00
|
645
645
|
manifestation_00133:
|
646
646
|
carrier_type_id: 1
|
647
647
|
language_id: 1
|
@@ -655,7 +655,7 @@ manifestation_00133:
|
|
655
655
|
id: 133
|
656
656
|
height:
|
657
657
|
width:
|
658
|
-
created_at: 2009-06-19 11:18:01
|
658
|
+
created_at: 2009-06-19 11:18:01 +9:00
|
659
659
|
manifestation_00134:
|
660
660
|
carrier_type_id: 1
|
661
661
|
language_id: 1
|
@@ -669,7 +669,7 @@ manifestation_00134:
|
|
669
669
|
id: 134
|
670
670
|
height:
|
671
671
|
width:
|
672
|
-
created_at: 2009-06-19 11:06:07
|
672
|
+
created_at: 2009-06-19 11:06:07 +9:00
|
673
673
|
manifestation_00135:
|
674
674
|
carrier_type_id: 1
|
675
675
|
language_id: 1
|
@@ -683,7 +683,7 @@ manifestation_00135:
|
|
683
683
|
id: 135
|
684
684
|
height:
|
685
685
|
width:
|
686
|
-
created_at: 2009-06-19 10:54:21
|
686
|
+
created_at: 2009-06-19 10:54:21 +9:00
|
687
687
|
manifestation_00136:
|
688
688
|
carrier_type_id: 1
|
689
689
|
language_id: 1
|
@@ -697,7 +697,7 @@ manifestation_00136:
|
|
697
697
|
id: 136
|
698
698
|
height:
|
699
699
|
width:
|
700
|
-
created_at: 2009-06-19 10:46:46
|
700
|
+
created_at: 2009-06-19 10:46:46 +9:00
|
701
701
|
manifestation_00137:
|
702
702
|
carrier_type_id: 1
|
703
703
|
language_id: 1
|
@@ -711,7 +711,7 @@ manifestation_00137:
|
|
711
711
|
id: 137
|
712
712
|
height:
|
713
713
|
width:
|
714
|
-
created_at: 2009-06-19 10:18:59
|
714
|
+
created_at: 2009-06-19 10:18:59 +9:00
|
715
715
|
manifestation_00138:
|
716
716
|
carrier_type_id: 1
|
717
717
|
language_id: 1
|
@@ -725,7 +725,7 @@ manifestation_00138:
|
|
725
725
|
id: 138
|
726
726
|
height:
|
727
727
|
width:
|
728
|
-
created_at: 2009-06-19 09:19:08
|
728
|
+
created_at: 2009-06-19 09:19:08 +9:00
|
729
729
|
manifestation_00139:
|
730
730
|
carrier_type_id: 1
|
731
731
|
language_id: 1
|
@@ -739,7 +739,7 @@ manifestation_00139:
|
|
739
739
|
id: 139
|
740
740
|
height:
|
741
741
|
width:
|
742
|
-
created_at: 2009-06-19 09:19:02
|
742
|
+
created_at: 2009-06-19 09:19:02 +9:00
|
743
743
|
manifestation_00140:
|
744
744
|
carrier_type_id: 1
|
745
745
|
language_id: 1
|
@@ -753,7 +753,7 @@ manifestation_00140:
|
|
753
753
|
id: 140
|
754
754
|
height:
|
755
755
|
width:
|
756
|
-
created_at: 2009-06-19 09:19:01
|
756
|
+
created_at: 2009-06-19 09:19:01 +9:00
|
757
757
|
manifestation_00141:
|
758
758
|
carrier_type_id: 1
|
759
759
|
language_id: 1
|
@@ -767,7 +767,7 @@ manifestation_00141:
|
|
767
767
|
id: 141
|
768
768
|
height:
|
769
769
|
width:
|
770
|
-
created_at: 2009-06-19 09:19:00
|
770
|
+
created_at: 2009-06-19 09:19:00 +9:00
|
771
771
|
manifestation_00142:
|
772
772
|
carrier_type_id: 1
|
773
773
|
language_id: 1
|
@@ -781,7 +781,7 @@ manifestation_00142:
|
|
781
781
|
id: 142
|
782
782
|
height:
|
783
783
|
width:
|
784
|
-
created_at: 2009-06-19 09:18:58
|
784
|
+
created_at: 2009-06-19 09:18:58 +9:00
|
785
785
|
manifestation_00143:
|
786
786
|
carrier_type_id: 1
|
787
787
|
language_id: 1
|
@@ -795,7 +795,7 @@ manifestation_00143:
|
|
795
795
|
id: 143
|
796
796
|
height:
|
797
797
|
width:
|
798
|
-
created_at: 2009-06-19 09:18:45
|
798
|
+
created_at: 2009-06-19 09:18:45 +9:00
|
799
799
|
manifestation_00144:
|
800
800
|
carrier_type_id: 1
|
801
801
|
language_id: 1
|
@@ -809,7 +809,7 @@ manifestation_00144:
|
|
809
809
|
id: 144
|
810
810
|
height:
|
811
811
|
width:
|
812
|
-
created_at: 2009-06-19 07:49:42
|
812
|
+
created_at: 2009-06-19 07:49:42 +9:00
|
813
813
|
manifestation_00145:
|
814
814
|
carrier_type_id: 1
|
815
815
|
language_id: 1
|
@@ -823,7 +823,7 @@ manifestation_00145:
|
|
823
823
|
id: 145
|
824
824
|
height:
|
825
825
|
width:
|
826
|
-
created_at: 2009-06-19 06:44:35
|
826
|
+
created_at: 2009-06-19 06:44:35 +9:00
|
827
827
|
manifestation_00146:
|
828
828
|
carrier_type_id: 1
|
829
829
|
language_id: 1
|
@@ -837,7 +837,7 @@ manifestation_00146:
|
|
837
837
|
id: 146
|
838
838
|
height:
|
839
839
|
width:
|
840
|
-
created_at: 2009-06-19 06:28:27
|
840
|
+
created_at: 2009-06-19 06:28:27 +9:00
|
841
841
|
manifestation_00147:
|
842
842
|
carrier_type_id: 1
|
843
843
|
language_id: 1
|
@@ -851,7 +851,7 @@ manifestation_00147:
|
|
851
851
|
id: 147
|
852
852
|
height:
|
853
853
|
width:
|
854
|
-
created_at: 2009-06-19 02:16:22
|
854
|
+
created_at: 2009-06-19 02:16:22 +9:00
|
855
855
|
manifestation_00148:
|
856
856
|
carrier_type_id: 1
|
857
857
|
language_id: 1
|
@@ -865,7 +865,7 @@ manifestation_00148:
|
|
865
865
|
id: 148
|
866
866
|
height:
|
867
867
|
width:
|
868
|
-
created_at: 2009-06-19 02:09:17
|
868
|
+
created_at: 2009-06-19 02:09:17 +9:00
|
869
869
|
manifestation_00149:
|
870
870
|
carrier_type_id: 1
|
871
871
|
language_id: 1
|
@@ -879,7 +879,7 @@ manifestation_00149:
|
|
879
879
|
id: 149
|
880
880
|
height:
|
881
881
|
width:
|
882
|
-
created_at: 2009-06-19 01:10:56
|
882
|
+
created_at: 2009-06-19 01:10:56 +9:00
|
883
883
|
manifestation_00150:
|
884
884
|
carrier_type_id: 1
|
885
885
|
language_id: 1
|
@@ -893,7 +893,7 @@ manifestation_00150:
|
|
893
893
|
id: 150
|
894
894
|
height:
|
895
895
|
width:
|
896
|
-
created_at: 2009-06-19 00:42:38
|
896
|
+
created_at: 2009-06-19 00:42:38 +9:00
|
897
897
|
manifestation_00151:
|
898
898
|
carrier_type_id: 1
|
899
899
|
language_id: 1
|
@@ -907,7 +907,7 @@ manifestation_00151:
|
|
907
907
|
id: 151
|
908
908
|
height:
|
909
909
|
width:
|
910
|
-
created_at: 2009-06-19 00:13:13
|
910
|
+
created_at: 2009-06-19 00:13:13 +9:00
|
911
911
|
manifestation_00152:
|
912
912
|
carrier_type_id: 1
|
913
913
|
language_id: 1
|
@@ -921,7 +921,7 @@ manifestation_00152:
|
|
921
921
|
id: 152
|
922
922
|
height:
|
923
923
|
width:
|
924
|
-
created_at: 2009-06-18 23:58:14
|
924
|
+
created_at: 2009-06-18 23:58:14 +9:00
|
925
925
|
manifestation_00153:
|
926
926
|
carrier_type_id: 1
|
927
927
|
language_id: 1
|
@@ -935,7 +935,7 @@ manifestation_00153:
|
|
935
935
|
id: 153
|
936
936
|
height:
|
937
937
|
width:
|
938
|
-
created_at: 2009-06-18 23:43:08
|
938
|
+
created_at: 2009-06-18 23:43:08 +9:00
|
939
939
|
manifestation_00154:
|
940
940
|
carrier_type_id: 1
|
941
941
|
language_id: 1
|
@@ -949,7 +949,7 @@ manifestation_00154:
|
|
949
949
|
id: 154
|
950
950
|
height:
|
951
951
|
width:
|
952
|
-
created_at: 2009-06-18 23:17:40
|
952
|
+
created_at: 2009-06-18 23:17:40 +9:00
|
953
953
|
manifestation_00155:
|
954
954
|
carrier_type_id: 1
|
955
955
|
language_id: 1
|
@@ -963,7 +963,7 @@ manifestation_00155:
|
|
963
963
|
id: 155
|
964
964
|
height:
|
965
965
|
width:
|
966
|
-
created_at: 2009-06-18 22:44:00
|
966
|
+
created_at: 2009-06-18 22:44:00 +9:00
|
967
967
|
manifestation_00156:
|
968
968
|
carrier_type_id: 1
|
969
969
|
language_id: 1
|
@@ -977,7 +977,7 @@ manifestation_00156:
|
|
977
977
|
id: 156
|
978
978
|
height:
|
979
979
|
width:
|
980
|
-
created_at: 2009-06-18 22:19:34
|
980
|
+
created_at: 2009-06-18 22:19:34 +9:00
|
981
981
|
manifestation_00157:
|
982
982
|
carrier_type_id: 1
|
983
983
|
language_id: 1
|
@@ -991,7 +991,7 @@ manifestation_00157:
|
|
991
991
|
id: 157
|
992
992
|
height:
|
993
993
|
width:
|
994
|
-
created_at: 2009-06-18 21:58:42
|
994
|
+
created_at: 2009-06-18 21:58:42 +9:00
|
995
995
|
manifestation_00158:
|
996
996
|
carrier_type_id: 1
|
997
997
|
language_id: 1
|
@@ -1005,7 +1005,7 @@ manifestation_00158:
|
|
1005
1005
|
id: 158
|
1006
1006
|
height:
|
1007
1007
|
width:
|
1008
|
-
created_at: 2009-06-18 21:44:38
|
1008
|
+
created_at: 2009-06-18 21:44:38 +9:00
|
1009
1009
|
manifestation_00159:
|
1010
1010
|
carrier_type_id: 1
|
1011
1011
|
language_id: 1
|
@@ -1019,7 +1019,7 @@ manifestation_00159:
|
|
1019
1019
|
id: 159
|
1020
1020
|
height:
|
1021
1021
|
width:
|
1022
|
-
created_at: 2009-06-18 21:10:02
|
1022
|
+
created_at: 2009-06-18 21:10:02 +9:00
|
1023
1023
|
manifestation_00160:
|
1024
1024
|
carrier_type_id: 1
|
1025
1025
|
language_id: 1
|
@@ -1033,7 +1033,7 @@ manifestation_00160:
|
|
1033
1033
|
id: 160
|
1034
1034
|
height:
|
1035
1035
|
width:
|
1036
|
-
created_at: 2009-06-18 21:10:01
|
1036
|
+
created_at: 2009-06-18 21:10:01 +9:00
|
1037
1037
|
manifestation_00161:
|
1038
1038
|
carrier_type_id: 1
|
1039
1039
|
language_id: 1
|
@@ -1047,7 +1047,7 @@ manifestation_00161:
|
|
1047
1047
|
id: 161
|
1048
1048
|
height:
|
1049
1049
|
width:
|
1050
|
-
created_at: 2009-06-18 20:37:58
|
1050
|
+
created_at: 2009-06-18 20:37:58 +9:00
|
1051
1051
|
manifestation_00162:
|
1052
1052
|
carrier_type_id: 1
|
1053
1053
|
language_id: 1
|
@@ -1061,7 +1061,7 @@ manifestation_00162:
|
|
1061
1061
|
id: 162
|
1062
1062
|
height:
|
1063
1063
|
width:
|
1064
|
-
created_at: 2009-06-18 20:29:54
|
1064
|
+
created_at: 2009-06-18 20:29:54 +9:00
|
1065
1065
|
manifestation_00163:
|
1066
1066
|
carrier_type_id: 1
|
1067
1067
|
language_id: 1
|
@@ -1075,7 +1075,7 @@ manifestation_00163:
|
|
1075
1075
|
id: 163
|
1076
1076
|
height:
|
1077
1077
|
width:
|
1078
|
-
created_at: 2009-06-18 20:16:44
|
1078
|
+
created_at: 2009-06-18 20:16:44 +9:00
|
1079
1079
|
manifestation_00164:
|
1080
1080
|
carrier_type_id: 1
|
1081
1081
|
language_id: 1
|
@@ -1089,7 +1089,7 @@ manifestation_00164:
|
|
1089
1089
|
id: 164
|
1090
1090
|
height:
|
1091
1091
|
width:
|
1092
|
-
created_at: 2009-06-18 20:05:25
|
1092
|
+
created_at: 2009-06-18 20:05:25 +9:00
|
1093
1093
|
manifestation_00165:
|
1094
1094
|
carrier_type_id: 1
|
1095
1095
|
language_id: 1
|
@@ -1103,7 +1103,7 @@ manifestation_00165:
|
|
1103
1103
|
id: 165
|
1104
1104
|
height:
|
1105
1105
|
width:
|
1106
|
-
created_at: 2009-06-18 17:41:41
|
1106
|
+
created_at: 2009-06-18 17:41:41 +9:00
|
1107
1107
|
manifestation_00166:
|
1108
1108
|
carrier_type_id: 1
|
1109
1109
|
language_id: 1
|
@@ -1117,7 +1117,7 @@ manifestation_00166:
|
|
1117
1117
|
id: 166
|
1118
1118
|
height:
|
1119
1119
|
width:
|
1120
|
-
created_at: 2009-06-18 17:34:03
|
1120
|
+
created_at: 2009-06-18 17:34:03 +9:00
|
1121
1121
|
manifestation_00167:
|
1122
1122
|
carrier_type_id: 1
|
1123
1123
|
language_id: 1
|
@@ -1131,7 +1131,7 @@ manifestation_00167:
|
|
1131
1131
|
id: 167
|
1132
1132
|
height:
|
1133
1133
|
width:
|
1134
|
-
created_at: 2009-06-18 16:26:38
|
1134
|
+
created_at: 2009-06-18 16:26:38 +9:00
|
1135
1135
|
manifestation_00168:
|
1136
1136
|
carrier_type_id: 1
|
1137
1137
|
language_id: 1
|
@@ -1145,7 +1145,7 @@ manifestation_00168:
|
|
1145
1145
|
id: 168
|
1146
1146
|
height:
|
1147
1147
|
width:
|
1148
|
-
created_at: 2009-06-18 16:25:25
|
1148
|
+
created_at: 2009-06-18 16:25:25 +9:00
|
1149
1149
|
manifestation_00169:
|
1150
1150
|
carrier_type_id: 1
|
1151
1151
|
language_id: 1
|
@@ -1159,7 +1159,7 @@ manifestation_00169:
|
|
1159
1159
|
id: 169
|
1160
1160
|
height:
|
1161
1161
|
width:
|
1162
|
-
created_at: 2009-06-18 15:53:44
|
1162
|
+
created_at: 2009-06-18 15:53:44 +9:00
|
1163
1163
|
manifestation_00170:
|
1164
1164
|
carrier_type_id: 1
|
1165
1165
|
language_id: 1
|
@@ -1173,7 +1173,7 @@ manifestation_00170:
|
|
1173
1173
|
id: 170
|
1174
1174
|
height:
|
1175
1175
|
width:
|
1176
|
-
created_at: 2009-06-18 15:52:50
|
1176
|
+
created_at: 2009-06-18 15:52:50 +9:00
|
1177
1177
|
manifestation_00171:
|
1178
1178
|
carrier_type_id: 1
|
1179
1179
|
language_id: 1
|
@@ -1187,7 +1187,7 @@ manifestation_00171:
|
|
1187
1187
|
id: 171
|
1188
1188
|
height:
|
1189
1189
|
width:
|
1190
|
-
created_at: 2009-06-18 15:40:53
|
1190
|
+
created_at: 2009-06-18 15:40:53 +9:00
|
1191
1191
|
manifestation_00172:
|
1192
1192
|
carrier_type_id: 1
|
1193
1193
|
language_id: 1
|
@@ -1201,7 +1201,7 @@ manifestation_00172:
|
|
1201
1201
|
id: 172
|
1202
1202
|
height:
|
1203
1203
|
width:
|
1204
|
-
created_at: 2009-06-18 15:34:21
|
1204
|
+
created_at: 2009-06-18 15:34:21 +9:00
|
1205
1205
|
manifestation_00173:
|
1206
1206
|
carrier_type_id: 1
|
1207
1207
|
language_id: 1
|
@@ -1215,7 +1215,7 @@ manifestation_00173:
|
|
1215
1215
|
id: 173
|
1216
1216
|
height:
|
1217
1217
|
width:
|
1218
|
-
created_at: 2009-06-18 15:08:06
|
1218
|
+
created_at: 2009-06-18 15:08:06 +9:00
|
1219
1219
|
manifestation_00174:
|
1220
1220
|
carrier_type_id: 1
|
1221
1221
|
language_id: 1
|
@@ -1229,7 +1229,7 @@ manifestation_00174:
|
|
1229
1229
|
id: 174
|
1230
1230
|
height:
|
1231
1231
|
width:
|
1232
|
-
created_at: 2009-06-18 15:05:43
|
1232
|
+
created_at: 2009-06-18 15:05:43 +9:00
|
1233
1233
|
manifestation_00175:
|
1234
1234
|
carrier_type_id: 1
|
1235
1235
|
language_id: 1
|
@@ -1243,7 +1243,7 @@ manifestation_00175:
|
|
1243
1243
|
id: 175
|
1244
1244
|
height:
|
1245
1245
|
width:
|
1246
|
-
created_at: 2009-06-18 15:03:06
|
1246
|
+
created_at: 2009-06-18 15:03:06 +9:00
|
1247
1247
|
manifestation_00176:
|
1248
1248
|
carrier_type_id: 1
|
1249
1249
|
language_id: 1
|
@@ -1257,7 +1257,7 @@ manifestation_00176:
|
|
1257
1257
|
id: 176
|
1258
1258
|
height:
|
1259
1259
|
width:
|
1260
|
-
created_at: 2009-06-18 14:52:11
|
1260
|
+
created_at: 2009-06-18 14:52:11 +9:00
|
1261
1261
|
manifestation_00177:
|
1262
1262
|
carrier_type_id: 1
|
1263
1263
|
language_id: 1
|
@@ -1271,7 +1271,7 @@ manifestation_00177:
|
|
1271
1271
|
id: 177
|
1272
1272
|
height:
|
1273
1273
|
width:
|
1274
|
-
created_at: 2009-06-18 13:45:13
|
1274
|
+
created_at: 2009-06-18 13:45:13 +9:00
|
1275
1275
|
manifestation_00178:
|
1276
1276
|
carrier_type_id: 1
|
1277
1277
|
language_id: 1
|
@@ -1285,7 +1285,7 @@ manifestation_00178:
|
|
1285
1285
|
id: 178
|
1286
1286
|
height:
|
1287
1287
|
width:
|
1288
|
-
created_at: 2009-06-18 13:45:11
|
1288
|
+
created_at: 2009-06-18 13:45:11 +9:00
|
1289
1289
|
manifestation_00179:
|
1290
1290
|
carrier_type_id: 1
|
1291
1291
|
language_id: 1
|
@@ -1299,7 +1299,7 @@ manifestation_00179:
|
|
1299
1299
|
id: 179
|
1300
1300
|
height:
|
1301
1301
|
width:
|
1302
|
-
created_at: 2009-06-18 13:45:09
|
1302
|
+
created_at: 2009-06-18 13:45:09 +9:00
|
1303
1303
|
manifestation_00180:
|
1304
1304
|
carrier_type_id: 1
|
1305
1305
|
language_id: 1
|
@@ -1313,7 +1313,7 @@ manifestation_00180:
|
|
1313
1313
|
id: 180
|
1314
1314
|
height:
|
1315
1315
|
width:
|
1316
|
-
created_at: 2009-06-18 13:45:04
|
1316
|
+
created_at: 2009-06-18 13:45:04 +9:00
|
1317
1317
|
manifestation_00181:
|
1318
1318
|
carrier_type_id: 1
|
1319
1319
|
language_id: 1
|
@@ -1327,7 +1327,7 @@ manifestation_00181:
|
|
1327
1327
|
id: 181
|
1328
1328
|
height:
|
1329
1329
|
width:
|
1330
|
-
created_at: 2009-06-18 13:45:04
|
1330
|
+
created_at: 2009-06-18 13:45:04 +9:00
|
1331
1331
|
manifestation_00182:
|
1332
1332
|
carrier_type_id: 1
|
1333
1333
|
language_id: 1
|
@@ -1341,7 +1341,7 @@ manifestation_00182:
|
|
1341
1341
|
id: 182
|
1342
1342
|
height:
|
1343
1343
|
width:
|
1344
|
-
created_at: 2009-06-18 13:44:56
|
1344
|
+
created_at: 2009-06-18 13:44:56 +9:00
|
1345
1345
|
manifestation_00183:
|
1346
1346
|
carrier_type_id: 1
|
1347
1347
|
language_id: 1
|
@@ -1355,7 +1355,7 @@ manifestation_00183:
|
|
1355
1355
|
id: 183
|
1356
1356
|
height:
|
1357
1357
|
width:
|
1358
|
-
created_at: 2009-06-18 13:44:55
|
1358
|
+
created_at: 2009-06-18 13:44:55 +9:00
|
1359
1359
|
manifestation_00184:
|
1360
1360
|
carrier_type_id: 1
|
1361
1361
|
language_id: 1
|
@@ -1369,7 +1369,7 @@ manifestation_00184:
|
|
1369
1369
|
id: 184
|
1370
1370
|
height:
|
1371
1371
|
width:
|
1372
|
-
created_at: 2009-06-18 13:44:54
|
1372
|
+
created_at: 2009-06-18 13:44:54 +9:00
|
1373
1373
|
manifestation_00185:
|
1374
1374
|
carrier_type_id: 1
|
1375
1375
|
language_id: 1
|
@@ -1383,7 +1383,7 @@ manifestation_00185:
|
|
1383
1383
|
id: 185
|
1384
1384
|
height:
|
1385
1385
|
width:
|
1386
|
-
created_at: 2009-06-18 13:41:37
|
1386
|
+
created_at: 2009-06-18 13:41:37 +9:00
|
1387
1387
|
manifestation_00186:
|
1388
1388
|
carrier_type_id: 1
|
1389
1389
|
language_id: 1
|
@@ -1397,7 +1397,7 @@ manifestation_00186:
|
|
1397
1397
|
id: 186
|
1398
1398
|
height:
|
1399
1399
|
width:
|
1400
|
-
created_at: 2008-12-19 17:52:47
|
1400
|
+
created_at: 2008-12-19 17:52:47 +9:00
|
1401
1401
|
manifestation_00187:
|
1402
1402
|
carrier_type_id: 1
|
1403
1403
|
language_id: 1
|
@@ -1411,7 +1411,7 @@ manifestation_00187:
|
|
1411
1411
|
id: 187
|
1412
1412
|
height:
|
1413
1413
|
width:
|
1414
|
-
created_at: 2008-10-19 15:58:50
|
1414
|
+
created_at: 2008-10-19 15:58:50 +9:00
|
1415
1415
|
manifestation_00188:
|
1416
1416
|
carrier_type_id: 1
|
1417
1417
|
language_id: 1
|
@@ -1425,7 +1425,7 @@ manifestation_00188:
|
|
1425
1425
|
id: 188
|
1426
1426
|
height:
|
1427
1427
|
width:
|
1428
|
-
created_at: 2008-08-22 00:27:29
|
1428
|
+
created_at: 2008-08-22 00:27:29 +9:00
|
1429
1429
|
manifestation_00189:
|
1430
1430
|
carrier_type_id: 1
|
1431
1431
|
language_id: 1
|
@@ -1439,7 +1439,7 @@ manifestation_00189:
|
|
1439
1439
|
id: 189
|
1440
1440
|
height:
|
1441
1441
|
width:
|
1442
|
-
created_at: 2008-08-22 00:20:59
|
1442
|
+
created_at: 2008-08-22 00:20:59 +9:00
|
1443
1443
|
manifestation_00190:
|
1444
1444
|
carrier_type_id: 1
|
1445
1445
|
language_id: 1
|
@@ -1453,7 +1453,7 @@ manifestation_00190:
|
|
1453
1453
|
id: 190
|
1454
1454
|
height:
|
1455
1455
|
width:
|
1456
|
-
created_at: 2008-05-20 13:06:31
|
1456
|
+
created_at: 2008-05-20 13:06:31 +9:00
|
1457
1457
|
manifestation_00191:
|
1458
1458
|
carrier_type_id: 1
|
1459
1459
|
language_id: 1
|
@@ -1467,7 +1467,7 @@ manifestation_00191:
|
|
1467
1467
|
id: 191
|
1468
1468
|
height:
|
1469
1469
|
width:
|
1470
|
-
created_at: 2008-05-19 22:36:11
|
1470
|
+
created_at: 2008-05-19 22:36:11 +9:00
|
1471
1471
|
manifestation_00192:
|
1472
1472
|
carrier_type_id: 1
|
1473
1473
|
language_id: 1
|
@@ -1481,7 +1481,7 @@ manifestation_00192:
|
|
1481
1481
|
id: 192
|
1482
1482
|
height:
|
1483
1483
|
width:
|
1484
|
-
created_at: 2008-03-05 01:37:55
|
1484
|
+
created_at: 2008-03-05 01:37:55 +9:00
|
1485
1485
|
manifestation_00193:
|
1486
1486
|
carrier_type_id: 1
|
1487
1487
|
language_id: 1
|
@@ -1495,7 +1495,7 @@ manifestation_00193:
|
|
1495
1495
|
id: 193
|
1496
1496
|
height:
|
1497
1497
|
width:
|
1498
|
-
created_at: 2008-03-05 01:30:39
|
1498
|
+
created_at: 2008-03-05 01:30:39 +9:00
|
1499
1499
|
manifestation_00194:
|
1500
1500
|
carrier_type_id: 1
|
1501
1501
|
language_id: 1
|
@@ -1509,7 +1509,7 @@ manifestation_00194:
|
|
1509
1509
|
id: 194
|
1510
1510
|
height:
|
1511
1511
|
width:
|
1512
|
-
created_at: 2007-11-19 17:56:37
|
1512
|
+
created_at: 2007-11-19 17:56:37 +9:00
|
1513
1513
|
manifestation_00195:
|
1514
1514
|
carrier_type_id: 1
|
1515
1515
|
language_id: 1
|
@@ -1523,7 +1523,7 @@ manifestation_00195:
|
|
1523
1523
|
id: 195
|
1524
1524
|
height:
|
1525
1525
|
width:
|
1526
|
-
created_at: 2007-11-19 17:55:42
|
1526
|
+
created_at: 2007-11-19 17:55:42 +9:00
|
1527
1527
|
manifestation_00196:
|
1528
1528
|
carrier_type_id: 1
|
1529
1529
|
language_id: 1
|
@@ -1537,7 +1537,7 @@ manifestation_00196:
|
|
1537
1537
|
id: 196
|
1538
1538
|
height:
|
1539
1539
|
width:
|
1540
|
-
created_at: 2007-11-19 17:55:41
|
1540
|
+
created_at: 2007-11-19 17:55:41 +9:00
|
1541
1541
|
manifestation_00197:
|
1542
1542
|
carrier_type_id: 1
|
1543
1543
|
language_id: 1
|
@@ -1551,7 +1551,7 @@ manifestation_00197:
|
|
1551
1551
|
id: 197
|
1552
1552
|
height:
|
1553
1553
|
width:
|
1554
|
-
created_at: 2007-11-19 17:55:41
|
1554
|
+
created_at: 2007-11-19 17:55:41 +9:00
|
1555
1555
|
manifestation_00198:
|
1556
1556
|
carrier_type_id: 1
|
1557
1557
|
language_id: 1
|
@@ -1565,7 +1565,7 @@ manifestation_00198:
|
|
1565
1565
|
id: 198
|
1566
1566
|
height:
|
1567
1567
|
width:
|
1568
|
-
created_at: 2007-11-19 17:55:41
|
1568
|
+
created_at: 2007-11-19 17:55:41 +9:00
|
1569
1569
|
manifestation_00201:
|
1570
1570
|
carrier_type_id: 1
|
1571
1571
|
language_id: 1
|
@@ -1579,7 +1579,7 @@ manifestation_00201:
|
|
1579
1579
|
id: 201
|
1580
1580
|
height:
|
1581
1581
|
width:
|
1582
|
-
created_at: 2007-11-19 17:55:41
|
1582
|
+
created_at: 2007-11-19 17:55:41 +9:00
|
1583
1583
|
frequency_id: 3
|
1584
1584
|
manifestation_00202:
|
1585
1585
|
carrier_type_id: 1
|
@@ -1594,7 +1594,7 @@ manifestation_00202:
|
|
1594
1594
|
id: 202
|
1595
1595
|
height:
|
1596
1596
|
width:
|
1597
|
-
created_at: 2007-11-19 17:55:41
|
1597
|
+
created_at: 2007-11-19 17:55:41 +9:00
|
1598
1598
|
frequency_id: 3
|
1599
1599
|
serial_number: 2
|
1600
1600
|
volume_number: 1
|
@@ -1612,7 +1612,7 @@ manifestation_00203:
|
|
1612
1612
|
id: 203
|
1613
1613
|
height:
|
1614
1614
|
width:
|
1615
|
-
created_at: 2010-03-03 17:00:00
|
1615
|
+
created_at: 2010-03-03 17:00:00 +9:00
|
1616
1616
|
frequency_id: 1
|
1617
1617
|
manifestation_00204:
|
1618
1618
|
carrier_type_id: 1
|
@@ -1627,7 +1627,7 @@ manifestation_00204:
|
|
1627
1627
|
id: 204
|
1628
1628
|
height:
|
1629
1629
|
width:
|
1630
|
-
created_at: 2010-03-03 20:00:00
|
1630
|
+
created_at: 2010-03-03 20:00:00 +9:00
|
1631
1631
|
manifestation_00205:
|
1632
1632
|
carrier_type_id: 1
|
1633
1633
|
language_id: 1
|
@@ -1641,7 +1641,7 @@ manifestation_00205:
|
|
1641
1641
|
id: 205
|
1642
1642
|
height:
|
1643
1643
|
width:
|
1644
|
-
created_at: 2010-03-03 20:00:00
|
1644
|
+
created_at: 2010-03-03 20:00:00 +9:00
|
1645
1645
|
manifestation_00206:
|
1646
1646
|
carrier_type_id: 1
|
1647
1647
|
language_id: 1
|
@@ -1655,7 +1655,7 @@ manifestation_00206:
|
|
1655
1655
|
id: 206
|
1656
1656
|
height:
|
1657
1657
|
width:
|
1658
|
-
created_at: 2010-03-03 20:00:00
|
1658
|
+
created_at: 2010-03-03 20:00:00 +9:00
|
1659
1659
|
manifestation_00207:
|
1660
1660
|
carrier_type_id: 1
|
1661
1661
|
language_id: 1
|
@@ -1669,7 +1669,7 @@ manifestation_00207:
|
|
1669
1669
|
id: 207
|
1670
1670
|
height:
|
1671
1671
|
width:
|
1672
|
-
created_at: 2010-03-03 20:00:00
|
1672
|
+
created_at: 2010-03-03 20:00:00 +9:00
|
1673
1673
|
manifestation_00208:
|
1674
1674
|
carrier_type_id: 1
|
1675
1675
|
language_id: 1
|
@@ -1683,7 +1683,7 @@ manifestation_00208:
|
|
1683
1683
|
id: 208
|
1684
1684
|
height:
|
1685
1685
|
width:
|
1686
|
-
created_at: 2010-03-16 11:00:00
|
1686
|
+
created_at: 2010-03-16 11:00:00 +9:00
|
1687
1687
|
manifestation_00209:
|
1688
1688
|
carrier_type_id: 1
|
1689
1689
|
language_id: 1
|
@@ -1697,7 +1697,7 @@ manifestation_00209:
|
|
1697
1697
|
id: 209
|
1698
1698
|
height:
|
1699
1699
|
width:
|
1700
|
-
created_at: 2010-03-19 13:00:00
|
1700
|
+
created_at: 2010-03-19 13:00:00 +9:00
|
1701
1701
|
required_role_id: 4
|
1702
1702
|
manifestation_00210:
|
1703
1703
|
carrier_type_id: 1
|
@@ -1712,7 +1712,7 @@ manifestation_00210:
|
|
1712
1712
|
id: 210
|
1713
1713
|
height:
|
1714
1714
|
width:
|
1715
|
-
created_at: 2010-03-19 13:00:00
|
1715
|
+
created_at: 2010-03-19 13:00:00 +9:00
|
1716
1716
|
required_role_id: 4
|
1717
1717
|
repository_content: true
|
1718
1718
|
manifestation_00211:
|
@@ -1728,7 +1728,7 @@ manifestation_00211:
|
|
1728
1728
|
id: 211
|
1729
1729
|
height:
|
1730
1730
|
width:
|
1731
|
-
created_at: 2010-03-19 13:00:00
|
1731
|
+
created_at: 2010-03-19 13:00:00 +9:00
|
1732
1732
|
required_role_id: 3
|
1733
1733
|
repository_content: true
|
1734
1734
|
manifestation_00212:
|
@@ -1744,7 +1744,7 @@ manifestation_00212:
|
|
1744
1744
|
id: 212
|
1745
1745
|
height:
|
1746
1746
|
width:
|
1747
|
-
created_at: 2010-03-19 13:00:00
|
1747
|
+
created_at: 2010-03-19 13:00:00 +9:00
|
1748
1748
|
required_role_id: 3
|
1749
1749
|
repository_content: true
|
1750
1750
|
manifestation_00213:
|
@@ -1760,7 +1760,7 @@ manifestation_00213:
|
|
1760
1760
|
id: 213
|
1761
1761
|
height:
|
1762
1762
|
width:
|
1763
|
-
created_at: 2010-03-19 13:00:00
|
1763
|
+
created_at: 2010-03-19 13:00:00 +9:00
|
1764
1764
|
required_role_id: 2
|
1765
1765
|
repository_content: true
|
1766
1766
|
manifestation_00214:
|
@@ -1776,7 +1776,7 @@ manifestation_00214:
|
|
1776
1776
|
id: 214
|
1777
1777
|
height:
|
1778
1778
|
width:
|
1779
|
-
created_at: 2010-03-19 13:00:00
|
1779
|
+
created_at: 2010-03-19 13:00:00 +9:00
|
1780
1780
|
required_role_id: 2
|
1781
1781
|
repository_content: false
|
1782
1782
|
manifestation_00215:
|
@@ -1792,7 +1792,7 @@ manifestation_00215:
|
|
1792
1792
|
id: 215
|
1793
1793
|
height:
|
1794
1794
|
width:
|
1795
|
-
created_at: 2010-03-19 13:00:00
|
1795
|
+
created_at: 2010-03-19 13:00:00 +9:00
|
1796
1796
|
required_role_id: 1
|
1797
1797
|
repository_content: true
|
1798
1798
|
manifestation_00216:
|
@@ -1808,7 +1808,7 @@ manifestation_00216:
|
|
1808
1808
|
id: 216
|
1809
1809
|
height:
|
1810
1810
|
width:
|
1811
|
-
created_at: 2010-03-19 13:00:00
|
1811
|
+
created_at: 2010-03-19 13:00:00 +9:00
|
1812
1812
|
required_role_id: 1
|
1813
1813
|
repository_content: false
|
1814
1814
|
|