-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathebola_data_public.csv
We can't make this file beautiful and searchable because it's too large.
1573 lines (1573 loc) · 858 KB
/
ebola_data_public.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
SURVEY_INFO,esdate,towncode,ward,respid,BACKGROUND,gender,age,hhsize,educ,religion,leavemonr2w,leavemonr2wwhere,returnmonr2w,returnmonr2wwhere,EBOLA_AWARENESS,ehowget,esignsymptom,eincubation,ehotline,spreadair,spreadfluids,spreadearly,saltcure,HEALTH,notreatmentj26,under5,childsick,childsickcare,childsicknocareebola,childsickcarewhereelse,hhmemsick,hhmemsickcare,hhmemsicknocareebola,hhmemsickcarewhere,EBOLA_VIGILANCE,egroupa,egroupct,emtgs,emtgswho,corganizedae,csafeburial,bucket,handsanitizer,shakehands,secretburials,hidecases,breakcurfew,havefun,ECONOMIC_FOOD_IMPACTS,nocashjuly,income7d,income7dunit,income7dnormal,income7dnormalunit,occupation,losejob,workless,famlosejob,famworkless,nofoodjuly,nofoodworry7d,skipmeals,limitmealsize,borrowfood,badfood,childmeals,childmealsnormal,bedhungry2w,CONCLUSION,willshare,angry,distractions
,"12/6/2014 10:32:09",2001,"Z100-New KruTown",2001191,,"1-Male",19,6,"0-None","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"2-Several times",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",7,4,,"3-Many times",3000,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","N","Y","2-Several times","Y",0,7,0,5,1,2,0,,"Y","N","0-None"
,"12/6/2014 10:40:20",2001,"Z100-New KruTown",2001131,,"2-Female",60,10,"0-None","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","4-Headache;7-Weakness;9-Rash;10-Red eyes",21,"0-No","Y","Y","N","Y",,"3-Many times",3,"Y","N","","6-Family or self","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",1500,"1-LD","6-Domestic services","N","Y","N","Y","3-Many times","Y",5,3,4,5,2,2,3,,"Y","N","0-None"
,"12/6/2014 12:04:17",2001,"Z100-New KruTown",2001132,,"2-Female",21,6,"0-None","2-Muslim","","","","",,"97-Dont know","1-Vomiting;12-Bleeding",21,"0-No","Y","Y","N","Y",,"",,"","","","","","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",500,"1-LD",800,"1-LD","6-Domestic services","N","Y","N","Y","2-Several times","Y",4,2,1,2,2,2,0,,"Y","N","2-Child present"
,"12/6/2014 13:28:19",2001,"Z100-New KruTown",2001114,,"2-Female",70,15,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","97-Does not know",0,"0-No","N","N","Y","N",,"3-Many times",4,"N","","","","N","","","",,"1-Yes","0-No",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,7,,"0-Never",1400,"1-LD",7000,"1-LD","5-Unskilled manual","N","Y","N","N","0-Never","N",0,0,2,0,2,3,0,,"Y","Y","2-Child present;88-Other"
,"12/6/2014 10:34:37",2001,"Z100-New KruTown",2001161,,"2-Female",33,10,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",24,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",1600,"1-LD",2500,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","N",0,1,0,1,2,3,0,,"Y","N","0-None"
,"12/6/2014 13:54:21",2001,"Z100-New KruTown",2001194,,"2-Female",22,10,"6-Completed high school","1-Christian","1-Yes","4-Grand Bassa","1-Yes","4-Grand Bassa",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat",3,"1-Yes","N","Y","N","N",,"2-Several times",0,"","","","","Y","Y","","1-Clinic",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",35,"2-USD","3-Sales and services","Y","Y","Y","N","2-Several times","Y",8,7,0,7,1,3,7,,"Y","N","0-None"
,"12/6/2014 14:23:25",2001,"Z100-New KruTown",2001134,,"1-Male",36,3,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","9-Rash;10-Red eyes;13-Fatigue",3,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",3,"3-Community members;6-Community group;88-Other","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,2,,"2-Several times",1500,"1-LD",2000,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",1,2,0,1,2,2,1,,"Y","N","0-None"
,"12/6/2014 10:12:09",2001,"Z100-New KruTown",2001151,,"2-Female",33,8,"7-Some university","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;9-Rash",21,"1-Yes","N","Y","Y","N",,"3-Many times",4,"Y","Y","","","N","","","",,"0-No","0-No",2,"1-Community leaders","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",1500,"1-LD",6000,"1-LD","1-Professional","Y","Y","Y","Y","4-Always","Y",7,7,3,4,1,3,1,,"Y","N","0-None"
,"1/9/2015 12:18:29",2001,"Z100-New KruTown",2001115,,"2-Female",37,4,"3-Some junior high","1-Christian","1-Yes","8-Lofa","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding;18-Cough",21,"1-Yes","N","Y","N","N",,"2-Several times",2,"Y","Y","","","N","","","",,"1-Yes","0-No",3,"1-Community leaders;2-Religious leaders;3-Community members;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,2,,"3-Many times",200,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,3,3,1,2,2,,"Y","Y","2-Child present;3-Spouse present;4-Friend present"
,"12/6/2014 11:19:42",2001,"Z100-New KruTown",2001112,,"2-Female",20,6,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes;18-Cough",0,"0-No","Y","Y","Y","Y",,"2-Several times",2,"N","","","","Y","N","","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","1-Yes",0,0,,"2-Several times",0,"1-LD",2000,"1-LD","5-Unskilled manual","Y","Y","N","Y","2-Several times","Y",2,3,5,3,1,2,0,,"Y","Y","2-Child present"
,"12/6/2014 12:30:11",2001,"Z100-New KruTown",2001163,,"1-Male",35,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",2,2,,"0-Never",2000,"1-LD",60,"2-USD","4-Skilled manual","N","N","N","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/6/2014 12:43:09",2001,"Z100-New KruTown",2001193,,"2-Female",31,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",3,"0-No","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"0-No","0-No",0,"","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",1500,"1-LD","3-Sales and services","N","Y","N","Y","0-Never","Y",7,7,5,7,1,2,0,,"Y","N","0-None"
,"12/6/2014 11:30:08",2001,"Z100-New KruTown",2001162,,"",,,"","","","","","",,"6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",2,3,,"1-Just once or twice",8000,"1-LD",13000,"1-LD","3-Sales and services","N","Y","N","N","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"12/6/2014 13:25:55",2001,"Z100-New KruTown",2001133,,"1-Male",39,16,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;9-Rash;10-Red eyes;12-Bleeding;18-Cough",2,"1-Yes","N","Y","Y","N",,"0-Never",5,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",5,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",2000,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",3,4,3,3,1,2,2,,"Y","N","0-None"
,"12/6/2014 11:53:20",2001,"Z100-New KruTown",2001192,,"1-Male",42,8,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;8-Stomach pain;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",5,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",7,7,,"3-Many times",88,"88-N/A",300,"1-LD","88-Other","N","Y","N","Y","3-Many times","Y",0,7,0,3,2,3,0,,"Y","N","0-None"
,"12/6/2014 13:23:51",2001,"Z100-New KruTown",2001153,,"2-Female",25,5,"3-Some junior high","2-Muslim","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",1400,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","N","N","1-Just once or twice","Y",3,3,5,4,1,2,3,,"Y","N","0-None"
,"12/6/2014 11:51:03",2001,"Z100-New KruTown",2001152,,"2-Female",32,10,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",3,"N","","","","Y","N","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",1500,"1-LD",3000,"1-LD","1-Professional","N","Y","N","Y","1-Just once or twice","Y",3,3,0,4,2,4,0,,"Y","N","0-None"
,"12/6/2014 12:19:17",2001,"Z100-New KruTown",2001113,,"1-Male",56,16,"88-Other","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;4-Headache;7-Weakness;12-Bleeding",2,"1-Yes","N","Y","N","N",,"2-Several times",4,"Y","N","","6-Family or self","Y","Y","","2-Hospital",,"1-Yes","0-No",2,"1-Community leaders;4-NGOs;6-Community group","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,7,,"",,"",,"","","","","","","","",,,,,,,,,"Y","Y","2-Child present;88-Other"
,"12/6/2014 13:31:23",2001,"Z100-New KruTown",2001164,,"2-Female",50,11,"5-Some high school","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies","1-Vomiting;3-Diarrhea;9-Rash;10-Red eyes",5,"0-No","N","Y","Y","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"0-Never",8000,"1-LD",13000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"1/9/2015 12:17:32",2001,"Z100-New KruTown",2001135,,"1-Male",32,6,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","2-Fever;5-Joint and muscle pain;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",4000,"1-LD","4-Skilled manual","Y","Y","N","N","1-Just once or twice","Y",3,4,0,2,2,2,0,,"Y","N","0-None"
,"12/6/2014 11:15:57",2002,"Z100-New KruTown",2002104,,"1-Male",23,4,"5-Some high school","2-Muslim","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;15-Chills",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",400,"1-LD",2500,"1-LD","3-Sales and services","N","Y","Y","Y","1-Just once or twice","Y",0,3,4,4,99,99,99,,"Y","Y","0-None"
,"12/5/2014 14:42:59",2002,"Z100-New KruTown",2002201,,"2-Female",29,7,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",6,"N","","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",3500,"1-LD","3-Sales and services","N","Y","Y","Y","1-Just once or twice","Y",2,7,0,1,3,3,3,,"Y","N","2-Child present"
,"12/5/2014 15:23:05",2002,"Z100-New KruTown",2004186,,"1-Male",32,9,"5-Some high school","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;7-Weakness",5,"1-Yes","N","Y","Y","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,6,,"3-Many times",3000,"1-LD",3000,"1-LD","6-Domestic services","Y","N","Y","Y","0-Never","Y",1,2,0,0,2,2,2,,"Y","N","0-None"
,"12/5/2014 15:41:46",2002,"Z100-New KruTown",2004122,,"1-Male",52,3,"0-None","1-Christian","","","","",,"5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea",24,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",900,"1-LD",2500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","0-Never","N",0,0,0,0,0,0,0,,"Y","N","0-None"
,"12/6/2014 12:27:06",2002,"Z100-New KruTown",2002105,,"2-Female",82,7,"6-Completed high school","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever",14,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","4-At home doctor or nurse",,"0-No","0-No",1,"4-NGOs","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",0,"1-LD","0-None","N","N","Y","Y","1-Just once or twice","Y",0,3,0,2,99,99,99,,"Y","N","0-None"
,"12/5/2014 14:28:21",2002,"Z100-New KruTown",2002121,,"1-Male",46,10,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;12-Bleeding",5,"1-Yes","N","Y","N","N",,"2-Several times",2,"Y","N","","1-Clinic","Y","Y","","1-Clinic",,"1-Yes","1-Yes",2,"4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,2,,"2-Several times",50,"2-USD",10,"1-LD","1-Professional","N","Y","N","Y","2-Several times","Y",2,0,0,0,2,2,0,,"Y","N","0-None"
,"1/6/2015 12:29:11",2002,"Z100-New KruTown",2002144,,"2-Female",20,15,"3-Some junior high","1-Christian","","","","",,"6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness;11-Hiccups",2,"0-No","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",10,"2-USD","0-None","Y","N","Y","N","1-Just once or twice","Y",3,3,0,3,1,2,0,,"","",""
,"12/5/2014 16:33:47",2002,"Z100-New KruTown",2004187,,"2-Female",50,12,"0-None","1-Christian","","","","",,"97-Dont know","1-Vomiting;97-Does not know",0,"0-No","N","Y","N","N",,"2-Several times",6,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",0,"1-LD","0-None","N","N","N","N","2-Several times","N",2,1,0,0,99,2,5,,"Y","Y","2-Child present"
,"12/5/2014 15:29:05",2002,"Z100-New KruTown",2002102,,"2-Female",52,15,"0-None","1-Christian","0-No","","0-No","",,"6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;10-Red eyes",3,"0-No","Y","Y","N","N",,"1-Just once or twice",4,"Y","Y","","","Y","Y","","2-Hospital",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",8000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",0,4,0,7,1,2,0,,"","",""
,"12/5/2014 14:19:38",2002,"Z100-New KruTown",2004144,,"1-Male",28,2,"6-Completed high school","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"1-Community leaders;3-Community members","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",6,0,,"2-Several times",5,"2-USD",10,"2-USD","4-Skilled manual","N","Y","Y","Y","0-Never","Y",3,2,3,3,99,99,99,,"Y","N","0-None"
,"12/5/2014 14:15:16",2002,"Z100-New KruTown",2004185,,"1-Male",26,5,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;9-Rash",2,"1-Yes","N","Y","N","Y",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",2,"6-Community group","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",950,"1-LD",950,"1-LD","1-Professional","Y","N","Y","N","3-Many times","Y",3,3,0,2,1,3,3,,"Y","N","0-None"
,"12/5/2014 15:43:06",2002,"Z100-New KruTown",2004172,,"2-Female",60,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",4,0,,"1-Just once or twice",2000,"1-LD",3500,"1-LD","1-Professional","Y","Y","Y","Y","1-Just once or twice","N",0,0,0,0,2,3,0,,"Y","Y","88-Other"
,"12/5/2014 16:08:32",2002,"Z100-New KruTown",2002202,,"2-Female",34,10,"0-None","2-Muslim","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",7,"0-No","Y","Y","Y","N",,"1-Just once or twice",10,"N","","","","Y","Y","","4-At home doctor or nurse",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",2000,"1-LD","3-Sales and services","Y","Y","Y","Y","1-Just once or twice","Y",3,7,0,7,1,2,0,,"Y","N","2-Child present"
,"12/5/2014 16:14:22",2002,"Z100-New KruTown",2004145,,"2-Female",46,9,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;10-Red eyes",7,"0-No","N","Y","Y","N",,"2-Several times",3,"N","","","","N","","","",,"1-Yes","0-No",1,"1-Community leaders","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",5000,"1-LD",1000,"1-LD","6-Domestic services","N","Y","Y","Y","2-Several times","Y",3,4,0,1,1,2,0,,"Y","N","0-None"
,"12/5/2014 14:38:27",2002,"Z100-New KruTown",2004171,,"2-Female",23,10,"3-Some junior high","1-Christian","1-Yes","9-Margibi","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",5,"0-No","N","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1200,"1-LD",5000,"1-LD","0-None","N","Y","N","Y","2-Several times","Y",4,6,0,7,1,3,0,,"Y","N","0-None"
,"12/5/2014 16:40:12",2002,"Z100-New KruTown",2004123,,"2-Female",34,8,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"0-No","N","Y","N","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",2000,"1-LD",5000,"1-LD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",0,7,3,3,1,3,0,,"Y","N","0-None"
,"12/6/2014 9:48:11",2002,"Z100-New KruTown",2002103,,"1-Male",31,7,"6-Completed high school","2-Muslim","","","","",,"88-Other","1-Vomiting;9-Rash;10-Red eyes",0,"0-No","N","Y","Y","Y",,"0-Never",3,"N","","","","N","Y","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",700,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",2,3,0,3,1,3,0,,"N","N","3-Spouse present;88-Other"
,"12/5/2014 14:17:55",2002,"Z100-New KruTown",2002101,,"1-Male",75,9,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe","1-Vomiting;3-Diarrhea;9-Rash",0,"0-No","N","Y","Y","Y",,"0-Never",1,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",3000,"1-LD",500,"2-USD","1-Professional","Y","Y","N","N","0-Never","Y",0,0,0,,2,3,0,,"Y","N","0-None"
,"12/7/2014 10:16:18",2003,"Z100-New KruTown",2003132,,"2-Female",40,5,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","10-Red eyes;18-Cough",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",250,"1-LD",500,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",3,3,0,2,1,3,0,,"Y","N","0-None"
,"1/8/2015 13:29:30",2003,"Z100-New KruTown",2003136,,"2-Female",51,10,"0-None","1-Christian","0-No","","0-No","",,"97-Dont know","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes",3,"0-No","N","Y","Y","N",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",250,"1-LD",350,"1-LD","88-Other","N","N","N","N","1-Just once or twice","Y",4,3,0,3,1,2,0,,"Y","N","0-None"
,"12/7/2014 13:15:07",2003,"Z100-New KruTown",2003114,,"2-Female",25,7,"3-Some junior high","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;8-Stomach pain",7,"1-Yes","Y","Y","N","N",,"2-Several times",4,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","1-Yes",3,6,,"2-Several times",400,"1-LD",1000,"1-LD","88-Other","Y","Y","N","N","2-Several times","Y",3,4,4,4,1,2,3,,"Y","Y","2-Child present;88-Other"
,"12/7/2014 13:34:15",2003,"Z100-New KruTown",2003135,,"2-Female",36,8,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes;18-Cough",4,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","4-At home doctor or nurse",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",2000,"1-LD",4000,"1-LD","3-Sales and services","N","Y","N","Y","0-Never","Y",4,3,0,4,2,3,3,,"Y","N","0-None"
,"12/7/2014 10:27:51",2003,"Z100-New KruTown",2003151,,"2-Female",47,9,"3-Some junior high","1-Christian","1-Yes","7-Grand Kru","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain",21,"0-No","N","Y","Y","N",,"1-Just once or twice",5,"Y","N","","4-At home doctor or nurse","N","","","",,"1-Yes","0-No",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",5000,"1-LD",300,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",3,2,2,4,1,2,1,,"Y","N","0-None"
,"12/7/2014 12:12:39",2003,"Z100-New KruTown",2003134,,"1-Male",32,5,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","2-Fever",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"Y","N","","6-Family or self","N","","","",,"1-Yes","0-No",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",90,"2-USD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","N",4,4,0,3,1,2,2,,"Y","N","0-None"
,"12/6/2014 15:58:49",2003,"Z100-New KruTown",2003131,,"1-Male",64,5,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;6-Sore throat;10-Red eyes;12-Bleeding",2,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",3,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",2000,"1-LD",3500,"1-LD","4-Skilled manual","N","Y","N","Y","0-Never","N",0,0,0,1,2,2,1,,"Y","N","0-None"
,"1/8/2015 14:20:36",2003,"Z100-New KruTown",2003137,,"2-Female",29,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes;18-Cough",21,"1-Yes","N","Y","N","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",3,"1-Community leaders;3-Community members","97-Do not know","1-Agree","0-No","0-No","0-No","0-No","0-No",0,3,,"3-Many times",10,"2-USD",30,"2-USD","2-Clerical","Y","Y","Y","Y","3-Many times","Y",2,4,6,3,1,2,2,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"12/6/2014 16:06:07",2003,"Z100-New KruTown",2003191,,"1-Male",21,9,"3-Some junior high","1-Christian","","","","",,"2-Eating fruit bitten by bats;4-Man woman business;5-Touching dead bodies","1-Vomiting;10-Red eyes",2,"1-Yes","Y","N","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",7,7,,"2-Several times",250,"1-LD",400,"1-LD","3-Sales and services","Y","N","N","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/7/2014 11:15:49",2003,"Z100-New KruTown",2003112,,"2-Female",34,9,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes",21,"1-Yes","N","Y","N","N",,"2-Several times",2,"Y","Y","","","Y","N","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",5,7,,"2-Several times",500,"1-LD",2000,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",4,3,2,3,1,3,3,,"Y","Y","2-Child present;88-Other"
,"12/7/2014 12:14:18",2003,"Z100-New KruTown",2003113,,"2-Female",41,5,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea",2,"0-No","Y","Y","Y","N",,"2-Several times",1,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","1-Yes",2,2,,"3-Many times",500,"1-LD",3000,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",0,7,4,7,1,3,2,,"Y","Y","2-Child present;88-Other"
,"12/7/2014 10:20:48",2003,"Z100-New KruTown",2003212,,"1-Male",60,8,"4-Completed junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",7,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",400,"1-LD","3-Sales and services","Y","N","N","N","1-Just once or twice","Y",3,1,0,4,1,2,4,,"Y","N","2-Child present;88-Other"
,"12/7/2014 11:05:14",2003,"Z100-New KruTown",2003133,,"2-Female",41,5,"6-Completed high school","1-Christian","","","","",,"97-Dont know","97-Does not know",2,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",500,"1-LD","6-Domestic services","Y","Y","Y","Y","2-Several times","Y",2,2,1,3,2,3,2,,"Y","N","0-None"
,"12/7/2014 12:49:08",2003,"Z100-New KruTown",2003153,,"1-Male",48,8,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;9-Rash",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"Y","N","","88-Other","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"0-Never",100,"1-LD",0,"1-LD","1-Professional","N","Y","N","N","2-Several times","Y",2,2,1,2,2,2,0,,"Y","N","0-None"
,"12/7/2014 10:17:29",2003,"Z100-New KruTown",2003111,,"1-Male",80,20,"8-Completed university","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",21,"0-No","Y","N","Y","N",,"2-Several times",6,"Y","Y","","","Y","N","","",,"1-Yes","1-Yes",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",2000,"1-LD","3-Sales and services","Y","Y","N","N","0-Never","Y",0,1,0,1,1,3,0,,"N","N","2-Child present;4-Friend present;88-Other"
,"12/6/2014 15:59:23",2003,"Z100-New KruTown",2003161,,"1-Male",59,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain",21,"0-No","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",5000,"1-LD","4-Skilled manual","N","Y","N","N","1-Just once or twice","Y",0,1,0,0,99,99,99,,"Y","N","0-None"
,"12/7/2014 12:54:43",2003,"Z100-New KruTown",2003194,,"1-Male",21,20,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;5-Joint and muscle pain",21,"1-Yes","N","Y","N","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"0-Never",0,"88-N/A",200,"1-LD","2-Clerical","N","Y","N","Y","0-Never","Y",0,0,0,0,2,3,0,,"Y","N","0-None"
,"12/7/2014 11:13:33",2003,"Z100-New KruTown",2003193,,"1-Male",59,4,"4-Completed junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash",1,"1-Yes","Y","Y","N","N",,"0-Never",3,"N","Y","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs","0-Disagree","0-Disagree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"2-Several times",100,"1-LD",200,"1-LD","4-Skilled manual","Y","Y","N","Y","2-Several times","Y",3,3,6,7,2,2,4,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"12/7/2014 11:35:16",2003,"Z100-New KruTown",2003152,,"1-Male",58,10,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;4-Headache;5-Joint and muscle pain;7-Weakness;8-Stomach pain;9-Rash;11-Hiccups",6,"0-No","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",10,"2-USD",9000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",3,3,2,2,2,1,0,,"Y","N","0-None"
,"12/7/2014 10:15:44",2003,"Z100-New KruTown",2003192,,"2-Female",34,5,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;6-Sore throat",7,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",9000,"1-LD","2-Clerical","N","Y","N","Y","0-Never","Y",0,0,0,0,2,3,0,,"Y","N","0-None"
,"12/6/2014 14:45:26",2004,"Z100-New KruTown",2004126,,"1-Male",45,17,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"3-Many times",5,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,4,,"3-Many times",0,"88-N/A",8000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,7,0,4,1,3,4,,"Y","N","0-None"
,"12/6/2014 15:33:58",2004,"Z100-New KruTown",2004127,,"2-Female",26,4,"5-Some high school","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies;88-Other","4-Headache;7-Weakness;10-Red eyes;88-Other",21,"0-No","N","Y","Y","N",,"1-Just once or twice",1,"Y","Y","","","Y","Y","","1-Clinic",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",15,"2-USD","5-Unskilled manual","Y","N","Y","Y","0-Never","Y",1,3,0,3,2,3,0,,"Y","N","2-Child present"
,"12/6/2014 12:52:33",2004,"Z100-New KruTown",2004124,,"2-Female",35,8,"5-Some high school","1-Christian","0-No","","1-Yes","15-Sinoe",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;88-Other",21,"0-No","N","Y","N","Y",,"3-Many times",1,"Y","N","","6-Family or self","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","N","N","3-Many times","N",2,0,0,0,2,2,0,,"Y","N","0-None"
,"12/6/2014 14:10:31",2004,"Z100-New KruTown",2004174,,"1-Male",60,7,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"1-Yes","N","N","N","N",,"",,"","","","","","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",20,"2-USD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,4,0,5,3,3,0,,"Y","Y","0-None"
,"12/6/2014 12:04:20",2004,"Z100-New KruTown",2004423,,"2-Female",73,13,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac;88-Other","3-Diarrhea;7-Weakness;12-Bleeding;13-Fatigue",2,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","4-Skilled manual","N","N","N","N","0-Never","Y",7,7,2,3,2,2,3,,"Y","N","0-None"
,"12/6/2014 11:46:38",2004,"Z100-New KruTown",2004472,,"1-Male",50,6,"7-Some university","3-Other","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs","0-Disagree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",5,3,,"2-Several times",1400,"1-LD",5000,"1-LD","1-Professional","N","Y","N","Y","0-Never","N",0,0,0,4,2,3,0,,"Y","Y","0-None"
,"12/6/2014 10:47:07",2004,"Z100-New KruTown",2004471,,"2-Female",48,8,"0-None","2-Muslim","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",5,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",5,0,,"",,"",,"","","","","","","","",,,,,,,,,"Y","Y","2-Child present"
,"12/6/2014 11:04:49",2004,"Z100-New KruTown",2004422,,"2-Female",29,14,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","4-Headache;7-Weakness;9-Rash;12-Bleeding;13-Fatigue;17-Chest pain;88-Other",21,"0-No","N","Y","N","N",,"0-Never",1,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",20,"2-USD",0,"88-N/A","5-Unskilled manual","N","N","N","N","3-Many times","N",3,7,3,7,2,2,0,,"Y","N","0-None"
,"12/6/2014 10:39:27",2004,"Z100-New KruTown",2004146,,"2-Female",21,10,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",100,"1-LD","0-None","N","N","N","N","0-Never","Y",0,0,0,0,1,1,0,,"Y","N","0-None"
,"12/6/2014 11:48:58",2004,"Z100-New KruTown",2004147,,"1-Male",52,7,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain",21,"1-Yes","N","Y","N","N",,"3-Many times",1,"Y","N","","2-Hospital","N","","","",,"1-Yes","0-No",1,"1-Community leaders","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",2,2,,"3-Many times",1000,"1-LD",3000,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",0,3,0,3,1,3,0,,"Y","N","0-None"
,"12/6/2014 16:04:47",2004,"Z100-New KruTown",2004188,,"2-Female",42,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",1000,"1-LD",1000,"1-LD","4-Skilled manual","Y","N","Y","N","0-Never","Y",1,1,0,2,1,2,99,,"Y","N","0-None"
,"12/6/2014 13:09:39",2004,"Z100-New KruTown",2004173,,"2-Female",45,13,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",21,"0-No","N","Y","N","N",,"0-Never",7,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",2100,"1-LD",14000,"1-LD","0-None","Y","Y","Y","Y","4-Always","Y",6,3,0,4,1,2,2,,"Y","N","0-None"
,"12/6/2014 11:00:11",2004,"Z100-New KruTown",2004485,,"2-Female",50,10,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;6-Sore throat;7-Weakness",14,"0-No","Y","Y","Y","N",,"0-Never",2,"Y","Y","","","Y","N","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",500,"1-LD","3-Sales and services","N","N","N","Y","0-Never","N",2,3,0,0,2,3,99,,"Y","Y","2-Child present"
,"12/6/2014 12:26:03",2004,"Z100-New KruTown",2004486,,"2-Female",20,25,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;88-Other","1-Vomiting;3-Diarrhea;7-Weakness",3,"0-No","N","Y","N","N",,"3-Many times",3,"N","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",1,"1-Community leaders","0-Disagree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",4000,"1-LD",4000,"1-LD","88-Other","N","N","N","N","1-Just once or twice","N",0,0,0,0,1,2,99,,"Y","Y","2-Child present"
,"12/6/2014 9:54:06",2004,"Z100-New KruTown",2004184,,"2-Female",23,21,"5-Some high school","1-Christian","","","","",,"4-Man woman business","97-Does not know",21,"1-Yes","Y","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",5000,"1-LD",5000,"1-LD","0-None","Y","N","Y","N","0-Never","N",0,5,0,0,2,3,99,,"Y","N","0-None"
,"12/6/2014 13:12:01",2004,"Z100-New KruTown",2004148,,"2-Female",18,3,"3-Some junior high","2-Muslim","","","","",,"97-Dont know","1-Vomiting;3-Diarrhea",2,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"1-Community leaders","97-Do not know","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",400,"1-LD",500,"1-LD","0-None","N","N","N","N","0-Never","N",3,3,0,2,2,2,0,,"Y","N","2-Child present"
,"12/6/2014 14:42:06",2004,"Z100-New KruTown",2004201,,"1-Male",38,4,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;10-Red eyes",5,"0-No","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",1000,"1-LD",1400,"1-LD","1-Professional","Y","Y","N","N","1-Just once or twice","Y",2,0,0,2,2,3,0,,"Y","N","0-None"
,"12/6/2014 14:45:51",2004,"Z100-New KruTown",2004149,,"2-Female",27,10,"7-Some university","2-Muslim","0-No","","0-No","",,"5-Touching dead bodies","6-Sore throat;9-Rash;10-Red eyes",5,"1-Yes","N","Y","Y","Y",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",200,"2-USD",50000,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",2,7,2,7,1,5,3,,"Y","N","0-None"
,"12/6/2014 14:44:41",2004,"Z100-New KruTown",2004487,,"1-Male",76,2,"3-Some junior high","2-Muslim","","","","",,"6-Contact with infected surfac","1-Vomiting;12-Bleeding",4,"0-No","Y","Y","N","N",,"0-Never",0,"","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",700,"1-LD",700,"1-LD","0-None","N","N","N","N","2-Several times","Y",0,1,2,0,1,2,99,,"Y","Y","4-Friend present"
,"12/6/2014 13:45:07",2004,"Z100-New KruTown",2004125,,"1-Male",38,18,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;7-Mother breastfeeding her chi;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;88-Other",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",5,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",3500,"1-LD","1-Professional","Y","N","Y","Y","3-Many times","Y",0,6,2,4,1,3,1,,"Y","N","0-None"
,"12/6/2014 10:17:05",2004,"Z100-New KruTown",2004121,,"1-Male",56,3,"88-Other","2-Muslim","","","","",,"97-Dont know","97-Does not know",97,"0-No","N","N","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","4-Skilled manual","N","Y","N","N","3-Many times","Y",7,7,0,7,7,2,3,,"Y","N","0-None"
,"12/6/2014 15:07:58",2004,"Z100-New KruTown",2004175,,"2-Female",23,11,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;8-Stomach pain;10-Red eyes",21,"0-No","Y","N","Y","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",3,0,,"3-Many times",500,"1-LD",1500,"1-LD","0-None","Y","Y","Y","Y","3-Many times","Y",3,5,0,3,1,1,0,,"Y","N","0-None"
,"12/6/2014 14:39:35",2004,"Z100-New KruTown",2004101,,"2-Female",50,12,"6-Completed high school","1-Christian","1-Yes","1-Bomi","1-Yes","3-Gbarpolu",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;7-Weakness;10-Red eyes",14,"1-Yes","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",1500,"1-LD",3000,"1-LD","3-Sales and services","N","Y","Y","Y","0-Never","Y",0,2,0,0,2,2,0,,"N","N","0-None"
,"12/5/2014 16:21:11",2005,"Z100-New KruTown",2005133,,"2-Female",25,7,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;8-Stomach pain;10-Red eyes",21,"0-No","N","N","Y","N",,"1-Just once or twice",1,"Y","N","","88-Other","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",2,0,,"2-Several times",600,"1-LD",1000,"1-LD","4-Skilled manual","N","Y","Y","Y","0-Never","Y",0,0,0,3,2,2,0,,"Y","N","0-None"
,"12/5/2014 13:33:27",2005,"Z100-New KruTown",2005111,,"2-Female",75,5,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",0,"0-No","N","Y","Y","Y",,"3-Many times",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,7,,"2-Several times",1050,"1-LD",2100,"1-LD","6-Domestic services","Y","Y","Y","Y","2-Several times","Y",2,2,4,7,1,2,0,,"Y","Y","2-Child present;4-Friend present;88-Other"
,"12/5/2014 13:38:12",2005,"Z100-New KruTown",2005151,,"1-Male",23,2,"6-Completed high school","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"0-Never",200,"1-LD",600,"1-LD","0-None","N","N","N","N","0-Never","Y",2,1,0,0,1,2,0,,"Y","N","0-None"
,"12/5/2014 16:01:42",2005,"Z100-New KruTown",2005153,,"1-Male",27,7,"3-Some junior high","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;11-Hiccups",5,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",3000,"1-LD",21000,"1-LD","5-Unskilled manual","N","N","N","N","2-Several times","N",3,2,6,2,2,1,0,,"","",""
,"12/5/2014 14:56:05",2005,"Z100-New KruTown",2005132,,"1-Male",24,1,"5-Some high school","1-Christian","0-No","","1-Yes","15-Sinoe",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","10-Red eyes;12-Bleeding",5,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",3,"1-Community leaders","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",500,"1-LD",800,"1-LD","5-Unskilled manual","N","Y","N","Y","0-Never","N",0,0,0,3,99,99,99,,"Y","N","0-None"
,"12/6/2014 16:23:08",2005,"Z100-New KruTown",2005154,,"1-Male",40,13,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes",7,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","1-Professional","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","Y","2-Child present"
,"12/5/2014 14:37:22",2005,"Z100-New KruTown",2005162,,"2-Female",28,8,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",8000,"1-LD",11000,"1-LD","3-Sales and services","N","N","Y","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/6/2014 14:58:53",2005,"Z100-New KruTown",2005114,,"1-Male",46,7,"7-Some university","1-Christian","0-No","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness",2,"1-Yes","N","Y","N","N",,"3-Many times",2,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","0-No",1,"4-NGOs","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","1-Yes",2,7,,"3-Many times",450,"1-LD",1500,"1-LD","88-Other","Y","Y","Y","Y","3-Many times","Y",4,3,2,3,1,2,0,,"Y","Y","2-Child present;4-Friend present;88-Other"
,"1/8/2015 15:14:47",2005,"Z100-New KruTown",2005144,,"1-Male",27,7,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;18-Cough",5,"0-No","N","Y","N","N",,"3-Many times",1,"Y","Y","","","Y","Y","","4-At home doctor or nurse",,"1-Yes","1-Yes",1,"1-Community leaders;2-Religious leaders;3-Community members","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,6,,"3-Many times",0,"2-USD",70,"2-USD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,5,3,2,1,3,4,,"Y","N","3-Spouse present;4-Friend present"
,"12/5/2014 14:47:05",2005,"Z100-New KruTown",2005112,,"2-Female",40,8,"0-None","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","12-Bleeding",0,"1-Yes","N","Y","Y","N",,"3-Many times",5,"Y","N","","6-Family or self","Y","N","","",,"0-No","0-No",0,"","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,4,,"3-Many times",500,"1-LD",1500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",4,2,6,3,1,2,0,,"Y","Y","2-Child present;3-Spouse present"
,"12/5/2014 16:14:54",2005,"Z100-New KruTown",2005193,,"2-Female",42,10,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes",7,"0-No","N","Y","N","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","1-Yes","0-No",0,0,,"2-Several times",200,"1-LD",3000,"1-LD","6-Domestic services","Y","Y","Y","Y","0-Never","Y",30,7,1,7,1,3,2,,"Y","N","0-None"
,"12/5/2014 13:42:28",2005,"Z100-New KruTown",2005131,,"1-Male",27,3,"4-Completed junior high","2-Muslim","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;5-Joint and muscle pain;6-Sore throat;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","Y",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",10,0,,"2-Several times",1000,"1-LD",2000,"1-LD","4-Skilled manual","Y","Y","Y","Y","1-Just once or twice","Y",3,5,0,3,2,3,2,,"Y","N","0-None"
,"12/5/2014 15:52:37",2005,"Z100-New KruTown",2005113,,"2-Female",27,15,"88-Other","1-Christian","","","","",,"97-Dont know","97-Does not know",21,"0-No","N","N","Y","N",,"2-Several times",2,"N","","","","N","","","",,"0-No","0-No",0,"","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,4,,"2-Several times",500,"1-LD",1500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","1-Just once or twice","Y",4,2,3,3,1,3,1,,"Y","N","2-Child present;4-Friend present"
,"12/5/2014 14:52:59",2005,"Z100-New KruTown",2005152,,"2-Female",27,6,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain",0,"1-Yes","N","Y","Y","N",,"2-Several times",0,"","","","","Y","Y","","2-Hospital",,"1-Yes","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",50,"1-LD",20,"2-USD","6-Domestic services","Y","Y","N","N","2-Several times","Y",3,3,2,6,1,2,0,,"Y","Y","0-None"
,"12/5/2014 15:35:59",2005,"Z100-New KruTown",2005163,,"2-Female",55,15,"0-None","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes",14,"0-No","N","Y","Y","N",,"0-Never",3,"N","","","","Y","Y","","1-Clinic",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1500,"1-LD",2500,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",1,2,0,1,2,3,0,,"Y","N","0-None"
,"12/5/2014 14:09:10",2005,"Z100-New KruTown",2005191,,"1-Male",24,4,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","1-Yes",4,"3-Community members;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,2,,"2-Several times",4000,"1-LD",6000,"1-LD","3-Sales and services","N","Y","Y","Y","2-Several times","Y",2,1,0,3,2,3,1,,"Y","N","0-None"
,"1/8/2015 15:19:10",2005,"Z100-New KruTown",2005134,,"1-Male",24,3,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes;11-Hiccups",2,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,1,,"2-Several times",100,"1-LD",250,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,1,2,0,,"Y","N","0-None"
,"12/5/2014 16:33:12",2005,"Z100-New KruTown",2005164,,"2-Female",40,5,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;8-Stomach pain;10-Red eyes",7,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1300,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/5/2014 17:19:12",2005,"Z100-New KruTown",2005194,,"2-Female",29,6,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business;5-Touching dead bodies","97-Does not know",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,,,"0-Never",3500,"1-LD",300,"1-LD","3-Sales and services","Y","N","N","N","0-Never","Y",2,2,2,1,1,2,0,,"Y","N","0-None"
,"12/5/2014 13:28:33",2005,"Z100-New KruTown",2005161,,"1-Male",34,1,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;10-Red eyes",14,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",80,"2-USD",100,"2-USD","0-None","N","N","N","N","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"12/9/2014 10:59:16",2006,"Z100-New KruTown",2006153,,"1-Male",47,14,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",2,"N","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","1-Yes",0,0,,"1-Just once or twice",75,"1-LD",600,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",6,7,5,7,1,2,5,,"Y","N","0-None"
,"12/9/2014 9:32:16",2006,"Z100-New KruTown",2006161,,"1-Male",45,7,"7-Some university","2-Muslim","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;9-Rash",7,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",800,"1-LD",1800,"1-LD","0-None","Y","N","N","N","2-Several times","Y",9,3,0,2,99,99,99,,"Y","N","0-None"
,"12/9/2014 10:38:22",2006,"Z100-New KruTown",2006193,,"1-Male",42,6,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;5-Joint and muscle pain;10-Red eyes",3,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","97-Do not know","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,3,,"0-Never",0,"88-N/A",5000,"2-USD","4-Skilled manual","N","Y","N","Y","0-Never","N",0,0,0,0,1,2,0,,"Y","N","0-None"
,"12/9/2014 9:38:09",2006,"Z100-New KruTown",2006152,,"2-Female",50,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;13-Fatigue",21,"0-No","N","Y","Y","N",,"2-Several times",2,"Y","Y","","","Y","N","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","1-Yes",0,0,,"1-Just once or twice",600,"1-LD",500,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","N",0,0,0,6,1,2,0,,"Y","N","0-None"
,"12/9/2014 11:59:09",2006,"Z100-New KruTown",2006154,,"1-Male",50,13,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness",21,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",3000,"1-LD",100,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","N",2,2,0,3,2,3,0,,"Y","N","2-Child present;3-Spouse present"
,"12/8/2014 16:56:40",2006,"Z100-New KruTown",2006192,,"2-Female",39,9,"7-Some university","1-Christian","0-No","","1-Yes","5-Grand Cape Mount",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;88-Other","2-Fever;3-Diarrhea;4-Headache;6-Sore throat;11-Hiccups",3,"1-Yes","N","Y","Y","N",,"0-Never",4,"Y","N","","4-At home doctor or nurse","N","","","",,"1-Yes","1-Yes",0,"","0-Disagree","0-Disagree","1-Yes","0-No","1-Yes","0-No","1-Yes",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"","",""
,"12/8/2014 16:13:03",2006,"Z100-New KruTown",2006191,,"2-Female",30,10,"88-Other","1-Christian","","","","",,"97-Dont know","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes",3,"0-No","N","Y","Y","N",,"0-Never",3,"Y","Y","","","N","","","",,"0-No","0-No",0,"","0-Disagree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",2,0,,"1-Just once or twice",0,"88-N/A",1000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",0,0,0,7,2,3,0,,"Y","N","2-Child present"
,"12/9/2014 13:27:01",2006,"Z100-New KruTown",2006196,,"2-Female",28,8,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;6-Sore throat;7-Weakness;8-Stomach pain",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;2-Religious leaders;3-Community members;4-NGOs;5-Government agency;6-Community group","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",2500,"1-LD","3-Sales and services","Y","Y","Y","N","2-Several times","Y",3,3,10,20,1,3,15,,"Y","N","2-Child present"
,"12/9/2014 11:29:34",2006,"Z100-New KruTown",2006194,,"2-Female",20,10,"5-Some high school","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies","1-Vomiting;6-Sore throat",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",150,"1-LD","0-None","Y","Y","Y","Y","3-Many times","Y",4,6,5,14,1,3,7,,"Y","N","0-None"
,"12/9/2014 10:53:53",2006,"Z100-New KruTown",2006114,,"2-Female",21,8,"6-Completed high school","1-Christian","1-Yes","1-Bomi","0-No","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat",7,"0-No","N","Y","Y","N",,"2-Several times",4,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","1-Yes",0,"","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","97-Do not know",0,2,,"3-Many times",10,"2-USD",30,"2-USD","88-Other","Y","Y","Y","Y","2-Several times","Y",3,4,1,3,1,3,3,,"Y","Y","2-Child present;88-Other"
,"12/9/2014 10:24:15",2006,"Z100-New KruTown",2006162,,"2-Female",31,7,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe","1-Vomiting;10-Red eyes;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",400,"1-LD",1500,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",0,1,0,1,3,3,0,,"Y","Y","0-None"
,"12/9/2014 11:19:00",2006,"Z100-New KruTown",2006163,,"2-Female",60,10,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",7,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",2300,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",1,3,0,2,99,99,99,,"Y","N","0-None"
,"12/9/2014 9:23:20",2006,"Z100-New KruTown",2006112,,"1-Male",32,8,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",6,"1-Yes","N","Y","N","N",,"2-Several times",4,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs;5-Government agency","97-Do not know","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,2,,"3-Many times",400,"1-LD",3000,"1-LD","3-Sales and services","Y","Y","N","N","3-Many times","Y",2,6,0,4,1,2,2,,"Y","Y","88-Other"
,"12/9/2014 12:35:19",2006,"Z100-New KruTown",2006195,,"1-Male",36,10,"8-Completed university","1-Christian","","","","",,"2-Eating fruit bitten by bats;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;9-Rash",3,"1-Yes","N","Y","N","N",,"0-Never",7,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","1-Yes","1-Yes",7,0,,"3-Many times",300,"1-LD",400,"2-USD","1-Professional","Y","N","Y","Y","2-Several times","Y",7,7,3,7,1,3,2,,"Y","N","2-Child present"
,"12/8/2014 16:25:32",2006,"Z100-New KruTown",2006151,,"1-Male",54,15,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;8-Stomach pain;9-Rash;10-Red eyes",20,"0-No","N","Y","Y","N",,"1-Just once or twice",0,"","","","","Y","N","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,1,,"1-Just once or twice",2000,"1-LD",15,"2-USD","88-Other","N","N","N","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/9/2014 11:38:26",2006,"Z100-New KruTown",2006132,,"2-Female",30,15,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;6-Sore throat",6,"1-Yes","N","Y","N","N",,"0-Never",5,"Y","Y","","","N","","","",,"1-Yes","1-Yes",3,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",1,1,,"3-Many times",1500,"1-LD",2000,"1-LD","88-Other","N","Y","Y","Y","0-Never","N",3,3,0,2,1,2,0,,"Y","N","0-None"
,"12/9/2014 11:42:30",2006,"Z100-New KruTown",2006212,,"2-Female",36,22,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",5,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",2000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",4,4,3,2,1,3,1,,"Y","Y","2-Child present;88-Other"
,"12/9/2014 12:20:51",2006,"Z100-New KruTown",2006116,,"2-Female",65,8,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",3,"0-No","Y","Y","","",,"2-Several times",0,"","","","","Y","N","","",,"0-No","0-No",0,"","97-Do not know","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,2,,"2-Several times",0,"1-LD",1000,"1-LD","0-None","N","N","N","N","2-Several times","N",0,7,2,4,1,2,0,,"Y","Y","2-Child present"
,"12/9/2014 11:37:22",2006,"Z100-New KruTown",2006115,,"2-Female",54,14,"5-Some high school","1-Christian","1-Yes","4-Grand Bassa","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;8-Stomach pain;12-Bleeding",7,"1-Yes","N","Y","N","N",,"2-Several times",0,"","","","","Y","N","","",,"1-Yes","0-No",1,"1-Community leaders;88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","0-No",0,6,,"3-Many times",350,"1-LD",3500,"1-LD","88-Other","Y","Y","N","N","2-Several times","Y",0,7,1,7,1,3,0,,"","",""
,"12/8/2014 16:33:09",2006,"Z100-New KruTown",2006131,,"2-Female",32,10,"0-None","2-Muslim","","","","",,"97-Dont know","97-Does not know",4,"0-No","N","Y","N","N",,"1-Just once or twice",4,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"Y","N","88-Other"
,"12/8/2014 16:16:21",2006,"Z100-New KruTown",2006111,,"2-Female",41,20,"0-None","2-Muslim","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;12-Bleeding",2,"0-No","Y","Y","Y","Y",,"2-Several times",5,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs","97-Do not know","97-Do not know","0-No","1-Yes","0-No","1-Yes","0-No",0,3,,"3-Many times",2000,"1-LD",10000,"1-LD","88-Other","Y","Y","N","N","2-Several times","Y",3,4,7,3,1,2,2,,"Y","Y","88-Other"
,"12/9/2014 9:56:01",2006,"Z100-New KruTown",2006211,,"1-Male",41,7,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac;88-Other","2-Fever;3-Diarrhea;4-Headache;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",10,"2-USD",25,"2-USD","0-None","Y","Y","Y","Y","1-Just once or twice","Y",0,0,0,2,2,2,0,,"Y","N","88-Other"
,"12/9/2014 12:58:46",2006,"Z100-New KruTown",2006117,,"2-Female",57,13,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;8-Stomach pain",3,"1-Yes","Y","Y","N","N",,"2-Several times",3,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","0-No",0,"","1-Agree","97-Do not know","0-No","0-No","0-No","97-Do not know","97-Do not know",0,6,,"2-Several times",700,"1-LD",1500,"1-LD","0-None","N","N","N","N","2-Several times","Y",0,3,1,6,1,3,4,,"Y","Y","2-Child present;88-Other"
,"12/9/2014 13:03:02",2006,"Z100-New KruTown",2006133,,"1-Male",80,3,"0-None","1-Christian","0-No","","0-No","",,"97-Dont know","1-Vomiting;2-Fever;10-Red eyes",2,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"88-N/A",0,"88-N/A","0-None","N","Y","N","Y","1-Just once or twice","Y",2,2,0,0,1,2,0,,"Y","N","0-None"
,"12/9/2014 10:14:45",2006,"Z100-New KruTown",2006113,,"2-Female",26,5,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","97-Does not know",0,"0-No","N","Y","Y","Y",,"3-Many times",2,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,5,,"3-Many times",400,"1-LD",3000,"1-LD","88-Other","Y","Y","N","N","2-Several times","Y",0,0,0,7,1,3,0,,"N","N","2-Child present;88-Other"
,"12/5/2014 10:13:54",2007,"Z1000-Congo Town",2007184,,"2-Female",40,7,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache",2,"1-Yes","N","Y","N","N",,"3-Many times",2,"Y","N","","88-Other","Y","N","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",,"88-N/A","88-Other","N","N","N","N","2-Several times","Y",0,2,3,3,1,1,99,,"Y","N","0-None"
,"12/4/2014 17:49:53",2007,"Z1000-Congo Town",2007192,,"2-Female",41,7,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;15-Chills;16-Weight loss;17-Chest pain;18-Cough",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","N","","6-Family or self","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,3,,"3-Many times",,"1-LD",500,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",90,3,0,7,2,3,0,,"Y","N","0-None"
,"12/4/2014 17:00:04",2007,"Z1000-Congo Town",2007412,,"2-Female",48,8,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",3,"0-No","N","N","Y","N",,"0-Never",3,"N","","","","Y","N","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",550,"1-LD",1000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,3,0,2,1,3,1,,"Y","N","2-Child present;88-Other"
,"12/5/2014 8:26:37",2007,"Z1000-Congo Town",2007163,,"2-Female",37,6,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"3-Many times",2000,"1-LD",4000,"1-LD","3-Sales and services","N","N","Y","Y","1-Just once or twice","Y",1,2,0,1,1,2,0,,"Y","N","0-None"
,"12/4/2014 15:49:43",2007,"Z1000-Congo Town",2007151,,"1-Male",54,13,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;16-Weight loss",21,"0-No","N","Y","Y","N",,"2-Several times",5,"N","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",7,4,,"0-Never",100,"1-LD",2000,"1-LD","3-Sales and services","Y","Y","N","N","2-Several times","Y",4,3,3,4,1,2,0,,"Y","Y","88-Other"
,"12/5/2014 8:31:10",2007,"Z1000-Congo Town",2007193,,"2-Female",30,6,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;5-Joint and muscle pain;7-Weakness;10-Red eyes",2,"0-No","Y","Y","Y","Y",,"4-Always",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",600,"1-LD","3-Sales and services","N","Y","N","Y","1-Just once or twice","Y",2,3,1,5,2,2,3,,"Y","N","2-Child present"
,"12/4/2014 9:25:03",2007,"Z1000-Congo Town",2007132,,"1-Male",40,6,"7-Some university","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;7-Weakness;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"1-Just once or twice",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;4-NGOs","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",1,1,,"3-Many times",1500,"1-LD",2500,"1-LD","4-Skilled manual","Y","Y","Y","Y","0-Never","N",1,1,1,2,1,2,2,,"Y","N","0-None"
,"12/4/2014 17:20:57",2007,"Z1000-Congo Town",2007452,,"1-Male",32,9,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;10-Red eyes",22,"0-No","N","Y","Y","N",,"3-Many times",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",100,"1-LD",20000,"1-LD","3-Sales and services","N","Y","Y","Y","4-Always","Y",3,3,0,4,1,3,4,,"Y","N","3-Spouse present"
,"12/4/2014 15:48:19",2007,"Z1000-Congo Town",2007211,,"1-Male",22,7,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"4-Always",2,"N","","","","N","","","",,"1-Yes","0-No",3,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",10,"2-USD",20,"2-USD","88-Other","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","2-Child present"
,"12/4/2014 9:25:37",2007,"Z1000-Congo Town",2007101,,"2-Female",45,6,"6-Completed high school","2-Muslim","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea",5,"1-Yes","N","Y","Y","Y",,"0-Never",4,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",3,2,,"2-Several times",5000,"1-LD",7000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,1,3,3,0,,"Y","N","0-None"
,"12/5/2014 10:12:20",2007,"Z1000-Congo Town",2007194,,"2-Female",27,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat",2,"0-No","Y","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",2000,"1-LD","4-Skilled manual","N","Y","N","Y","1-Just once or twice","Y",0,3,0,3,1,3,0,,"Y","N","5-Bossman present"
,"12/5/2014 8:25:46",2007,"Z1000-Congo Town",2007113,,"1-Male",54,2,"6-Completed high school","1-Christian","0-No","","0-No","",,"97-Dont know","97-Does not know",0,"1-Yes","Y","N","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",1,"1-Community leaders","0-Disagree","1-Agree","0-No","0-No","1-Yes","0-No","97-Do not know",0,0,,"1-Just once or twice",0,"1-LD",4000,"1-LD","88-Other","N","N","Y","Y","0-Never","Y",3,1,2,3,0,2,1,,"Y","Y","2-Child present;3-Spouse present"
,"12/4/2014 15:39:26",2007,"Z1000-Congo Town",2007161,,"2-Female",46,6,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding;18-Cough",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",2500,"1-LD",2800,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/5/2014 9:24:59",2007,"Z1000-Congo Town",2007114,,"1-Male",52,12,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache",0,"0-No","N","Y","N","N",,"3-Many times",1,"Y","Y","","","Y","N","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,2,,"2-Several times",4200,"1-LD",6500,"1-LD","1-Professional","Y","Y","N","Y","2-Several times","Y",3,4,3,3,1,2,0,,"Y","N","4-Friend present;88-Other"
,"12/4/2014 9:25:08",2007,"Z1000-Congo Town",2007142,,"1-Male",36,9,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",1,0,,"2-Several times",1000,"1-LD",125,"2-USD","2-Clerical","Y","Y","Y","Y","0-Never","N",1,1,0,2,1,2,0,,"Y","N","0-None"
,"12/4/2014 15:45:10",2007,"Z1000-Congo Town",2007131,,"2-Female",32,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;5-Joint and muscle pain;8-Stomach pain",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"","",,"","","","","","","","",,,,"3-Many times",3600,"1-LD",1500,"1-LD","4-Skilled manual","N","Y","N","N","0-Never","Y",7,5,0,2,1,2,7,,"Y","N","0-None"
,"12/4/2014 9:25:07",2007,"Z1000-Congo Town",2007172,,"2-Female",34,6,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0",2,2,,"0-Never",500,"1-LD",5000,"1-LD","4-Skilled manual","N","Y","N","Y","0-Never","Y",3,7,0,2,1,2,0,,"Y","N","0-None"
,"12/4/2014 16:46:49",2007,"Z1000-Congo Town",2007482,,"1-Male",52,6,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business;6-Contact with infected surfac","4-Headache;5-Joint and muscle pain;8-Stomach pain;9-Rash;10-Red eyes",0,"1-Yes","Y","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"","",,"","","","","","","","",,,,"2-Several times",900,"1-LD",900,"1-LD","6-Domestic services","N","Y","Y","Y","1-Just once or twice","Y",2,3,0,3,7,2,99,,"Y","N","0-None"
,"12/4/2014 16:42:47",2007,"Z1000-Congo Town",2007439,,"2-Female",33,4,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;4-Headache;7-Weakness",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",400,"1-LD",500,"1-LD","4-Skilled manual","N","Y","N","N","0-Never","Y",3,3,0,0,2,3,0,,"Y","N","0-None"
,"12/4/2014 15:54:02",2007,"Z1000-Congo Town",2007191,,"2-Female",35,12,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",5,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",200,"1-LD",500,"1-LD","3-Sales and services","N","Y","Y","Y","0-Never","N",0,0,0,0,1,3,0,,"Y","Y","0-None"
,"12/4/2014 9:25:01",2007,"Z1000-Congo Town",2007152,,"2-Female",31,5,"4-Completed junior high","2-Muslim","0-No","","0-No","",,"1-Preparing or eating bush mea","1-Vomiting;2-Fever",6,"1-Yes","N","Y","Y","N",,"2-Several times",5,"N","","","","Y","Y","","2-Hospital",,"1-Yes","0-No",4,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","1-Yes","1-Yes",7,4,,"1-Just once or twice",0,"1-LD",5000,"1-LD","2-Clerical","Y","Y","Y","N","97-Dont know","Y",3,3,3,2,2,3,3,,"Y","N","0-None"
,"12/4/2014 9:25:00",2007,"Z1000-Congo Town",2007162,,"2-Female",34,3,"6-Completed high school","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",5,"Y","N","","6-Family or self","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",1200,"1-LD",4000,"1-LD","6-Domestic services","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/5/2014 9:07:55",2007,"Z1000-Congo Town",2007183,,"1-Male",82,8,"7-Some university","3-Other","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",3,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",400,"1-LD",400,"1-LD","1-Professional","Y","Y","N","N","1-Just once or twice","Y",2,0,0,0,2,3,0,,"Y","N","0-None"
,"12/4/2014 15:49:09",2007,"Z1000-Congo Town",2007111,,"1-Male",42,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes;12-Bleeding;13-Fatigue",21,"0-No","N","Y","Y","N",,"2-Several times",1,"Y","N","","6-Family or self","N","","","",,"1-Yes","0-No",0,"","97-Do not know","1-Agree","1-Yes","1-Yes","1-Yes","97-Do not know","97-Do not know",9,6,,"2-Several times",2000,"1-LD",5000,"1-LD","4-Skilled manual","N","Y","Y","Y","3-Many times","Y",3,3,2,4,1,2,1,,"Y","Y","2-Child present;88-Other"
,"12/5/2014 9:03:38",2007,"Z1000-Congo Town",2007212,,"",,,"","","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;8-Stomach pain",21,"1-Yes","N","Y","N","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",4000,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",2,6,0,5,1,3,4,,"Y","Y","88-Other"
,"12/4/2014 9:25:06",2007,"Z1000-Congo Town",2007182,,"2-Female",22,5,"3-Some junior high","3-Other","","","","",,"4-Man woman business;6-Contact with infected surfac","6-Sore throat",4,"1-Yes","N","Y","Y","N",,"4-Always",3,"N","","","","Y","N","","",,"1-Yes","0-No",4,"1-Community leaders;4-NGOs","0-Disagree","1-Agree","1-Yes","0-No","1-Yes","1-Yes","1-Yes",4,3,,"0-Never",800,"1-LD",900,"1-LD","6-Domestic services","N","Y","N","Y","3-Many times","N",3,4,4,3,99,99,5,,"Y","N","0-None"
,"12/5/2014 8:36:07",2007,"Z1000-Congo Town",2007153,,"1-Male",46,8,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"2-Several times",500,"1-LD",800,"1-LD","5-Unskilled manual","Y","Y","Y","Y","2-Several times","Y",3,2,4,4,1,3,2,,"Y","N","0-None"
,"12/4/2014 9:25:06",2007,"Z1000-Congo Town",2007112,,"1-Male",35,6,"4-Completed junior high","2-Muslim","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes;12-Bleeding;18-Cough",7,"0-No","Y","Y","Y","Y",,"2-Several times",2,"Y","Y","","","Y","Y","","6-Family or self",,"1-Yes","0-No",2,"1-Community leaders;4-NGOs","97-Do not know","1-Agree","1-Yes","0-No","1-Yes","97-Do not know","97-Do not know",4,8,,"3-Many times",3000,"1-LD",6000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","2-Several times","Y",3,5,2,5,1,2,3,,"Y","Y","2-Child present;3-Spouse present;88-Other"
,"12/5/2014 9:36:29",2007,"Z1000-Congo Town",2007164,,"1-Male",40,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",800,"1-LD",3000,"1-LD","4-Skilled manual","N","Y","N","N","0-Never","N",0,2,0,1,2,3,0,,"Y","N","0-None"
,"12/4/2014 9:25:02",2007,"Z1000-Congo Town",2007121,,"2-Female",50,9,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"2-Several times",3,"Y","N","","6-Family or self","Y","N","","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","0-No","0-No","1-Yes","0-No",0,0,,"0-Never",500,"1-LD",5000,"1-LD","7-Agriculture","Y","Y","Y","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/4/2014 15:38:16",2008,"Z1000-Congo Town",2008121,,"2-Female",28,4,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;12-Bleeding",21,"0-No","N","Y","N","N",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","Y","Y","4-Always","Y",100,1,0,5,1,3,0,,"Y","N","0-None"
,"12/5/2014 10:21:59",2008,"Z1000-Congo Town",2008174,,"1-Male",70,3,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",6000,"1-LD",155,"2-USD","4-Skilled manual","N","Y","N","Y","1-Just once or twice","N",0,0,0,2,1,2,0,,"Y","N","0-None"
,"12/4/2014 17:24:33",2008,"Z1000-Congo Town",2008172,,"2-Female",36,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",3000,"1-LD","5-Unskilled manual","N","Y","Y","Y","3-Many times","Y",4,3,2,7,1,3,0,,"Y","N","0-None"
,"12/5/2014 10:55:27",2008,"Z1000-Congo Town",2008104,,"1-Male",29,11,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;12-Bleeding;15-Chills",4,"1-Yes","N","Y","N","N",,"1-Just once or twice",3,"N","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",1,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"3-Many times",0,"1-LD",85,"2-USD","5-Unskilled manual","Y","Y","Y","Y","1-Just once or twice","Y",0,1,0,2,1,2,0,,"Y","Y","0-None"
,"12/4/2014 15:22:15",2008,"Z1000-Congo Town",2008141,,"2-Female",36,5,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;8-Stomach pain;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",400,"1-LD",5000,"1-LD","6-Domestic services","Y","Y","Y","Y","3-Many times","N",3,2,0,1,2,3,0,,"Y","N","0-None"
,"12/4/2014 15:25:10",2008,"Z1000-Congo Town",2008101,,"2-Female",27,5,"6-Completed high school","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes",7,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",2500,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","N",0,7,0,0,2,4,0,,"Y","Y","0-None"
,"12/4/2014 17:01:37",2008,"Z1000-Congo Town",2008122,,"1-Male",56,11,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;88-Other",3,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",2,"3-Community members","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","1-Professional","N","Y","N","Y","3-Many times","Y",0,7,0,0,2,2,0,,"Y","N","0-None"
,"12/5/2014 9:14:04",2008,"Z1000-Congo Town",2008173,,"2-Female",34,7,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness",21,"0-No","N","Y","N","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0",3,0,,"3-Many times",800,"1-LD",2000,"1-LD","0-None","N","Y","N","Y","1-Just once or twice","Y",5,7,0,7,1,2,0,,"Y","N","0-None"
,"12/4/2014 15:58:31",2008,"Z1000-Congo Town",2008201,,"1-Male",38,12,"8-Completed university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","88-Other",21,"1-Yes","N","Y","N","N",,"",,"","","","","","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",3,0,,"2-Several times",200,"1-LD",500,"1-LD","1-Professional","N","Y","N","Y","2-Several times","Y",0,7,0,0,1,1,0,,"Y","N","0-None"
,"12/4/2014 15:28:47",2008,"Z1000-Congo Town",2008171,,"1-Male",26,6,"4-Completed junior high","1-Christian","1-Yes","4-Grand Bassa","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","3-Diarrhea;6-Sore throat;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",7,7,,"3-Many times",0,"1-LD",25,"2-USD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,7,0,7,1,3,3,,"Y","N","0-None"
,"12/5/2014 9:39:40",2008,"Z1000-Congo Town",2008103,,"2-Female",27,3,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",7,"0-No","N","Y","Y","N",,"1-Just once or twice",1,"N","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","N","Y","1-Just once or twice","Y",0,30,0,14,1,3,0,,"Y","N","2-Child present;88-Other"
,"12/18/2014 8:14:51",2008,"Z1000-Congo Town",2008144,,"2-Female",26,8,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",0,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","88-Other","N","N","N","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","2-Child present"
,"12/4/2014 17:03:45",2008,"Z1000-Congo Town",2008142,,"2-Female",40,10,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;8-Stomach pain;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",60,"2-USD","6-Domestic services","Y","Y","Y","Y","0-Never","Y",2,2,0,0,2,2,0,,"Y","N","0-None"
,"1/8/2015 15:19:31",2008,"Z1000-Congo Town",2008145,,"2-Female",25,10,"3-Some junior high","1-Christian","0-No","","0-No","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",21,"1-Yes","Y","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",200,"1-LD",6000,"1-LD","6-Domestic services","Y","Y","Y","Y","2-Several times","N",1,4,0,3,1,3,2,,"N","N","2-Child present"
,"12/5/2014 9:49:31",2008,"Z1000-Congo Town",2008143,,"2-Female",43,5,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","97-Does not know",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","Y","N","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",4500,"1-LD",8000,"1-LD","6-Domestic services","Y","Y","Y","Y","2-Several times","Y",4,4,3,2,1,2,2,,"Y","N","0-None"
,"12/5/2014 9:44:26",2008,"Z1000-Congo Town",2008123,,"2-Female",33,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",3,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"88-N/A",20,"2-USD","4-Skilled manual","N","Y","N","N","2-Several times","Y",3,3,0,3,2,2,0,,"Y","N","0-None"
,"12/4/2014 15:20:07",2008,"Z1000-Congo Town",2008181,,"1-Male",41,6,"8-Completed university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea",2,"1-Yes","N","Y","Y","N",,"1-Just once or twice",3,"N","","","","N","","","",,"","",,"","","","","","","","",,,,"",,"",,"","","","","","","","",,,,,,,,,"","",""
,"12/5/2014 10:45:24",2008,"Z1000-Congo Town",2008124,,"1-Male",54,7,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;18-Cough;88-Other",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",4,"3-Community members","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",0,"88-N/A",150,"2-USD","1-Professional","Y","Y","N","Y","2-Several times","Y",7,7,3,7,1,3,4,,"Y","N","0-None"
,"12/27/2014 17:01:13",2009,"Z1100-Paynesville",2009154,,"2-Female",50,7,"8-Completed university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",0,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",8000,"1-LD",5000,"1-LD","1-Professional","N","Y","N","Y","1-Just once or twice","Y",0,0,0,0,3,3,0,,"N","Y","0-None"
,"12/27/2014 14:23:03",2009,"Z1100-Paynesville",2009212,,"1-Male",53,5,"7-Some university","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;12-Bleeding;16-Weight loss",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",14,0,,"3-Many times",100,"1-LD",1200,"1-LD","88-Other","N","N","N","N","3-Many times","Y",2,6,0,3,1,2,1,,"Y","N","2-Child present"
,"12/27/2014 13:59:47",2009,"Z1100-Paynesville",2009191,,"2-Female",45,14,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;7-Weakness;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",3,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",0,"1-LD","1-Professional","N","Y","Y","Y","0-Never","N",3,0,0,2,1,1,0,,"Y","N","2-Child present"
,"12/27/2014 14:49:46",2009,"Z1100-Paynesville",2009131,,"2-Female",27,4,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache;10-Red eyes",21,"0-No","Y","Y","N","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,2,,"1-Just once or twice",2400,"1-LD",3500,"1-LD","88-Other","Y","Y","N","N","1-Just once or twice","N",2,2,0,2,2,3,0,,"Y","N","0-None"
,"12/27/2014 15:12:41",2009,"Z1100-Paynesville",2009213,,"1-Male",47,5,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;12-Bleeding",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",4000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",1,3,2,2,1,3,2,,"Y","N","0-None"
,"12/27/2014 14:40:02",2009,"Z1100-Paynesville",2009111,,"1-Male",27,8,"3-Some junior high","2-Muslim","0-No","","1-Yes","1-Bomi",,"","",,"","","","","",,"3-Many times",6,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs;6-Community group","1-Agree","1-Agree","1-Yes","0-No","1-Yes","97-Do not know","97-Do not know",0,4,,"3-Many times",500,"1-LD",8000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,5,3,5,1,2,2,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"12/27/2014 14:03:24",2009,"Z1100-Paynesville",2009151,,"2-Female",30,6,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding;13-Fatigue",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",500,"1-LD",1500,"1-LD","0-None","N","N","N","Y","3-Many times","Y",7,7,1,7,1,2,3,,"Y","N","0-None"
,"12/27/2014 16:28:46",2009,"Z1100-Paynesville",2009133,,"2-Female",25,3,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;6-Sore throat;10-Red eyes",3,"1-Yes","N","Y","N","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",350,"1-LD",500,"1-LD","88-Other","N","Y","N","Y","0-Never","N",0,0,0,2,1,2,0,,"Y","N","0-None"
,"12/27/2014 15:24:59",2009,"Z1100-Paynesville",2009112,,"1-Male",25,8,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;12-Bleeding",21,"1-Yes","N","Y","N","N",,"3-Many times",4,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",0,"","97-Do not know","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",700,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",1,5,3,3,1,3,2,,"Y","N","3-Spouse present"
,"12/27/2014 16:19:11",2009,"Z1100-Paynesville",2009214,,"2-Female",43,11,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","Y",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",2,"4-NGOs;5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",300,"1-LD",15000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",2,3,0,3,1,3,1,,"Y","N","0-None"
,"12/27/2014 17:08:01",2009,"Z1100-Paynesville",2009114,,"2-Female",35,2,"2-Completed ABC","1-Christian","0-No","","0-No","",,"97-Dont know","97-Does not know",3,"0-No","N","Y","Y","N",,"3-Many times",1,"Y","Y","","","Y","Y","","6-Family or self",,"1-Yes","1-Yes",1,"1-Community leaders;2-Religious leaders;3-Community members","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",140,"1-LD",350,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,5,4,1,2,3,,"Y","N","2-Child present;4-Friend present"
,"12/27/2014 15:08:55",2009,"Z1100-Paynesville",2009192,,"2-Female",30,7,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;8-Stomach pain;10-Red eyes",0,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","0-None","N","N","N","N","4-Always","N",0,0,0,0,3,3,0,,"Y","N","2-Child present;4-Friend present"
,"12/27/2014 15:43:51",2009,"Z1100-Paynesville",2009132,,"1-Male",25,0,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",2,"1-Yes","N","Y","N","N",,"1-Just once or twice",0,"","","","","N","","","",,"0-No","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",2000,"1-LD","88-Other","Y","Y","N","Y","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"12/27/2014 12:34:33",2009,"Z1100-Paynesville",2009211,,"2-Female",44,12,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"2-Several times",4,"Y","Y","","","Y","Y","","1-Clinic",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",5000,"1-LD","3-Sales and services","N","Y","Y","Y","3-Many times","Y",2,4,2,4,1,2,1,,"Y","N","0-None"
,"12/27/2014 16:15:50",2009,"Z1100-Paynesville",2009113,,"1-Male",54,9,"7-Some university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",20,"2-USD",50,"2-USD","0-None","N","N","Y","Y","3-Many times","Y",0,5,3,4,1,2,1,,"Y","N","2-Child present"
,"12/27/2014 16:05:19",2009,"Z1100-Paynesville",2009153,,"2-Female",40,10,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",8,"1-Yes","N","Y","Y","N",,"0-Never",1,"Y","N","Y","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",1500,"1-LD",2000,"1-LD","3-Sales and services","N","Y","N","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/27/2014 15:56:44",2009,"Z1100-Paynesville",2009193,,"2-Female",45,2,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",0,"0-No","N","N","N","N",,"4-Always",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",200,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","2-Child present;4-Friend present"
,"12/27/2014 16:32:37",2009,"Z1100-Paynesville",2009194,,"2-Female",29,7,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;5-Joint and muscle pain;7-Weakness",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"4-Always",30,"2-USD",100,"2-USD","4-Skilled manual","N","N","N","N","3-Many times","Y",0,0,0,3,1,3,0,,"Y","N","0-None"
,"12/27/2014 14:59:11",2009,"Z1100-Paynesville",2009152,,"1-Male",20,13,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi;88-Other;97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising;15-Chills;16-Weight loss",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",600,"1-LD",50,"2-USD","3-Sales and services","Y","Y","N","N","3-Many times","Y",2,2,0,0,3,3,0,,"Y","N","0-None"
,"12/27/2014 17:04:29",2009,"Z1100-Paynesville",2009134,,"2-Female",26,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;10-Red eyes;11-Hiccups;12-Bleeding",2,"1-Yes","Y","Y","Y","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",250,"1-LD",400,"1-LD","88-Other","N","Y","N","Y","1-Just once or twice","Y",2,2,0,1,2,2,0,,"Y","N","88-Other"
,"1/3/2015 12:09:49",2010,"Z1100-Paynesville",2010164,,"1-Male",38,8,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",2400,"1-LD",5500,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,2,0,1,2,3,0,,"Y","N","0-None"
,"1/3/2015 11:16:46",2010,"Z1100-Paynesville",2010133,,"2-Female",42,2,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache;7-Weakness;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",350,"1-LD","88-Other","N","N","N","N","0-Never","N",0,0,0,0,99,99,0,,"Y","N","0-None"
,"1/3/2015 11:37:35",2010,"Z1100-Paynesville",2010114,,"1-Male",50,3,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding;18-Cough",15,"0-No","N","Y","N","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,4,,"3-Many times",700,"1-LD",1400,"1-LD","4-Skilled manual","Y","Y","Y","N","3-Many times","Y",4,3,3,3,1,1,4,,"Y","N","2-Child present"
,"1/3/2015 10:41:45",2010,"Z1100-Paynesville",2010132,,"1-Male",24,2,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes",3,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",300,"1-LD",900,"1-LD","88-Other","N","Y","N","N","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"1/3/2015 9:25:08",2010,"Z1100-Paynesville",2010111,,"1-Male",66,17,"3-Some junior high","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding;18-Cough",21,"0-No","Y","Y","Y","N",,"2-Several times",6,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","97-Do not know","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",500,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,5,2,4,1,2,3,,"Y","N","2-Child present;3-Spouse present"
,"1/3/2015 10:51:53",2010,"Z1100-Paynesville",2010193,,"2-Female",21,21,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","N","N",,"4-Always",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","0-None","N","N","N","N","4-Always","Y",0,7,0,7,1,2,2,,"Y","N","4-Friend present"
,"1/3/2015 10:07:45",2010,"Z1100-Paynesville",2010162,,"2-Female",30,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",750,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,2,0,1,99,99,99,,"Y","N","0-None"
,"1/3/2015 11:53:27",2010,"Z1100-Paynesville",2010194,,"1-Male",35,9,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;5-Joint and muscle pain;7-Weakness",0,"0-No","N","Y","Y","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",0,"1-LD",2000,"1-LD","4-Skilled manual","N","Y","Y","Y","0-Never","Y",2,7,1,1,1,2,2,,"Y","N","0-None"
,"1/3/2015 11:51:25",2010,"Z1100-Paynesville",2010134,,"2-Female",29,7,"0-None","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","97-Does not know",2,"0-No","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",350,"1-LD",500,"1-LD","88-Other","N","N","N","N","1-Just once or twice","Y",2,2,0,2,2,2,0,,"Y","N","0-None"
,"1/3/2015 11:06:34",2010,"Z1100-Paynesville",2010163,,"1-Male",25,7,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes",2,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,2,,"2-Several times",0,"1-LD",3000,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",0,3,0,4,2,3,0,,"Y","N","0-None"
,"1/3/2015 12:14:40",2010,"Z1100-Paynesville",2010154,,"2-Female",23,5,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"0-No","N","N","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",4000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",7,7,3,7,2,3,2,,"Y","Y","0-None"
,"1/3/2015 10:09:07",2010,"Z1100-Paynesville",2010112,,"2-Female",37,7,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",3,"0-No","Y","Y","Y","N",,"3-Many times",0,"","","","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","97-Do not know","0-No",0,6,,"3-Many times",400,"1-LD",800,"1-LD","7-Agriculture","Y","Y","Y","Y","3-Many times","Y",3,4,5,4,99,99,99,,"Y","N","2-Child present;4-Friend present"
,"1/3/2015 10:22:43",2010,"Z1100-Paynesville",2010152,,"1-Male",30,3,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising",0,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","Y","Y","4-Always","Y",7,7,7,7,1,2,0,,"Y","N","0-None"
,"1/3/2015 9:21:46",2010,"Z1100-Paynesville",2010161,,"2-Female",29,5,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"","1-Agree","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,2,,"2-Several times",0,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",0,1,0,2,2,3,0,,"Y","N","0-None"
,"1/3/2015 10:11:08",2010,"Z1100-Paynesville",2010192,,"2-Female",35,9,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;5-Joint and muscle pain;8-Stomach pain",4,"0-No","Y","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",100,"1-LD",500,"1-LD","0-None","N","N","N","N","4-Always","Y",7,7,0,7,1,2,0,,"Y","N","0-None"
,"1/3/2015 10:53:48",2010,"Z1100-Paynesville",2010113,,"2-Female",65,12,"0-None","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;18-Cough",2,"0-No","Y","Y","Y","N",,"2-Several times",4,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,3,,"2-Several times",250,"1-LD",750,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,5,4,4,1,1,3,,"Y","N","2-Child present"
,"1/3/2015 9:21:17",2010,"Z1100-Paynesville",2010191,,"2-Female",32,11,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;5-Joint and muscle pain;7-Weakness",21,"0-No","N","Y","Y","N",,"4-Always",0,"","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",1000,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",0,14,0,12,2,3,0,,"Y","Y","2-Child present;3-Spouse present;4-Friend present"
,"1/3/2015 9:32:22",2010,"Z1100-Paynesville",2010151,,"2-Female",25,3,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising;15-Chills",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"4-Always",1500,"1-LD",2500,"1-LD","1-Professional","N","Y","Y","Y","3-Many times","Y",7,7,1,7,3,3,2,,"Y","N","0-None"
,"1/3/2015 10:02:56",2010,"Z1100-Paynesville",2010131,,"1-Male",31,5,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",3,"4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","0-Never","Y",2,2,0,2,1,2,0,,"Y","N","0-None"
,"1/3/2015 11:15:44",2010,"Z1100-Paynesville",2010153,,"2-Female",24,4,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising",2,"0-No","N","N","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"4-Always",500,"1-LD",1000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",7,7,3,7,1,2,0,,"Y","Y","0-None"
,"1/5/2015 11:56:28",2011,"Z1100-Paynesville",2011103,,"2-Female",24,10,"3-Some junior high","1-Christian","1-Yes","9-Margibi","1-Yes","8-Lofa",,"6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"1-Just once or twice",400,"1-LD",2500,"1-LD","0-None","N","Y","Y","Y","1-Just once or twice","Y",2,2,1,5,1,3,0,,"Y","N","0-None"
,"1/5/2015 10:10:43",2011,"Z1100-Paynesville",2011121,,"2-Female",29,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",1500,"1-LD","1-Professional","Y","Y","N","N","3-Many times","Y",7,7,0,7,1,2,0,,"Y","N","0-None"
,"1/5/2015 13:02:30",2011,"Z1100-Paynesville",2011104,,"1-Male",30,3,"6-Completed high school","1-Christian","","","","",,"6-Contact with infected surfac","1-Vomiting;3-Diarrhea;12-Bleeding",7,"0-No","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",1500,"1-LD","5-Unskilled manual","Y","Y","N","Y","0-Never","Y",0,3,0,2,99,99,99,,"Y","N","0-None"
,"1/5/2015 13:43:01",2011,"Z1100-Paynesville",2011175,,"1-Male",45,8,"6-Completed high school","2-Muslim","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","Y","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",2,3,,"2-Several times",2000,"1-LD",200,"2-USD","4-Skilled manual","Y","Y","N","N","3-Many times","Y",4,2,1,6,2,3,0,,"Y","N","0-None;88-Other"
,"1/5/2015 13:27:17",2011,"Z1100-Paynesville",2011221,,"1-Male",28,12,"6-Completed high school","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;12-Bleeding",8,"1-Yes","N","Y","N","N",,"1-Just once or twice",3,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",14,4,,"1-Just once or twice",200,"1-LD",1500,"1-LD","3-Sales and services","N","Y","Y","N","0-Never","Y",0,2,0,3,1,2,0,,"Y","N","0-None"
,"1/5/2015 9:47:02",2011,"Z1100-Paynesville",2011171,,"1-Male",35,7,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;5-Government agency","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",0,"1-LD",12000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,4,0,6,2,3,0,,"Y","N","0-None"
,"1/5/2015 12:37:47",2011,"Z1100-Paynesville",2011202,,"2-Female",22,8,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"0-No","0-No",0,"3-Community members","97-Do not know","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",500,"1-LD",15,"2-USD","0-None","N","N","Y","Y","2-Several times","Y",3,4,0,2,1,3,0,,"Y","N","88-Other"
,"1/5/2015 14:30:57",2011,"Z1100-Paynesville",2011222,,"1-Male",43,6,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes",21,"0-No","N","Y","Y","N",,"2-Several times",2,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","1-Yes","0-No",2,2,,"2-Several times",1500,"1-LD",3000,"1-LD","5-Unskilled manual","N","Y","Y","Y","2-Several times","Y",2,2,1,2,1,2,0,,"Y","N","0-None"
,"1/5/2015 10:58:41",2011,"Z1100-Paynesville",2011182,,"2-Female",32,20,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",21,"1-Yes","Y","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",1000,"1-LD","3-Sales and services","Y","N","Y","N","0-Never","Y",0,1,0,2,1,3,99,,"Y","N","0-None"
,"1/5/2015 12:10:02",2011,"Z1100-Paynesville",2011183,,"1-Male",30,5,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;9-Rash;10-Red eyes;12-Bleeding",2,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0",0,0,,"2-Several times",500,"1-LD",2000,"1-LD","6-Domestic services","Y","Y","N","N","1-Just once or twice","Y",0,1,1,0,2,3,99,,"Y","N","0-None"
,"1/5/2015 10:51:37",2011,"Z1100-Paynesville",2011102,,"2-Female",32,8,"8-Completed university","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,3,,"3-Many times",0,"88-N/A",300,"2-USD","4-Skilled manual","Y","N","Y","Y","3-Many times","Y",3,7,7,7,1,3,0,,"Y","N","0-None"
,"1/5/2015 13:22:28",2011,"Z1100-Paynesville",2011142,,"2-Female",56,5,"7-Some university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",1200,"1-LD",700,"1-LD","6-Domestic services","N","Y","N","Y","2-Several times","N",0,4,0,5,2,3,0,,"Y","N","0-None"
,"1/5/2015 10:54:03",2011,"Z1100-Paynesville",2011122,,"1-Male",58,6,"6-Completed high school","1-Christian","1-Yes","8-Lofa","1-Yes","8-Lofa",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache;9-Rash;10-Red eyes;88-Other",21,"0-No","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","4-Skilled manual","Y","Y","Y","Y","0-Never","Y",7,7,0,2,1,2,0,,"Y","N","0-None"
,"1/5/2015 11:28:26",2011,"Z1100-Paynesville",2011174,,"2-Female",20,8,"4-Completed junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",7,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","97-Do not know",2,0,,"0-Never",2500,"1-LD",4000,"1-LD","3-Sales and services","N","N","N","N","3-Many times","Y",4,2,0,6,1,2,0,,"Y","N","0-None"
,"1/5/2015 10:08:32",2011,"Z1100-Paynesville",2011181,,"2-Female",29,4,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea",2,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",1400,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,0,0,0,2,2,99,,"Y","Y","2-Child present"
,"1/5/2015 9:43:38",2011,"Z1100-Paynesville",2011101,,"1-Male",48,10,"88-Other","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","2-Fever;4-Headache;10-Red eyes;15-Chills",21,"0-No","N","Y","Y","N",,"2-Several times",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,4,,"2-Several times",0,"1-LD",5000,"1-LD","88-Other","Y","N","N","Y","2-Several times","Y",2,6,0,2,2,3,0,,"Y","N","0-None"
,"1/5/2015 11:42:56",2011,"Z1100-Paynesville",2011141,,"2-Female",38,4,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,3,,"1-Just once or twice",35,"2-USD",21000,"1-LD","6-Domestic services","Y","Y","Y","Y","2-Several times","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/5/2015 13:24:02",2011,"Z1100-Paynesville",2011203,,"1-Male",37,6,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",3,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",150,"2-USD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",4,3,0,7,2,3,0,,"Y","N","0-None"
,"1/5/2015 11:33:39",2011,"Z1100-Paynesville",2011123,,"2-Female",58,10,"0-None","1-Christian","0-No","","1-Yes","8-Lofa",,"4-Man woman business;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"3-Many times",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",2000,"1-LD","5-Unskilled manual","N","N","N","N","3-Many times","Y",2,7,2,7,2,3,0,,"Y","N","0-None"
,"1/5/2015 10:51:23",2011,"Z1100-Paynesville",2011173,,"",,,"","","","","","",,"5-Touching dead bodies","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes",7,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",2,2,,"3-Many times",2500,"1-LD",3000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",7,3,1,6,1,3,1,,"Y","N","0-None"
,"1/5/2015 10:18:16",2011,"Z1100-Paynesville",2011172,,"1-Male",59,11,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",2000,"1-LD",25000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",4,2,7,6,1,3,0,,"Y","N","0-None"
,"1/5/2015 11:41:37",2011,"Z1100-Paynesville",2011201,,"2-Female",21,9,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;6-Sore throat;9-Rash",3,"1-Yes","N","Y","N","N",,"0-Never",1,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"1-Just once or twice",100,"1-LD",500,"1-LD","0-None","N","N","N","N","1-Just once or twice","Y",0,1,0,1,2,2,0,,"Y","N","0-None"
,"1/5/2015 16:03:56",2011,"Z1100-Paynesville",2011223,,"1-Male",22,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","N","N",,"1-Just once or twice",2,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",2,7,,"0-Never",5000,"1-LD",6000,"1-LD","4-Skilled manual","N","Y","N","N","0-Never","N",1,1,0,2,2,2,1,,"Y","N","0-None"
,"1/7/2015 12:55:36",2012,"Z1100-Paynesville",2012154,,"1-Male",38,6,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",3000,"1-LD","4-Skilled manual","N","Y","Y","Y","3-Many times","Y",7,7,1,6,1,2,1,,"Y","N","0-None"
,"1/7/2015 13:11:15",2012,"Z1100-Paynesville",2012223,,"1-Male",22,9,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",3,"1-Yes","N","Y","N","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",6,6,,"3-Many times",400,"1-LD",600,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",0,3,0,3,2,3,0,,"Y","N","0-None"
,"1/7/2015 13:54:09",2012,"Z1100-Paynesville",2012116,,"1-Male",47,6,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding;18-Cough",21,"1-Yes","Y","Y","Y","N",,"4-Always",0,"","","","","Y","N","Y","",,"0-No","0-No",1,"1-Community leaders;2-Religious leaders;3-Community members","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,4,,"3-Many times",0,"1-LD",1500,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",0,7,4,4,1,1,4,,"Y","N","2-Child present;3-Spouse present"
,"1/7/2015 11:09:57",2012,"Z1100-Paynesville",2012113,,"1-Male",69,10,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;10-Red eyes;18-Cough",21,"1-Yes","Y","Y","Y","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"0-No","0-No",2,"1-Community leaders;2-Religious leaders;3-Community members","1-Agree","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"3-Many times",500,"1-LD",2000,"1-LD","7-Agriculture","Y","Y","Y","Y","3-Many times","Y",0,6,0,0,1,2,3,,"Y","N","2-Child present;4-Friend present"
,"1/7/2015 11:52:27",2012,"Z1100-Paynesville",2012164,,"1-Male",46,6,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;10-Red eyes;15-Chills",14,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","Y","N","Y","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",1800,"1-LD","1-Professional","N","N","N","N","0-Never","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"1/7/2015 10:47:04",2012,"Z1100-Paynesville",2012212,,"1-Male",29,7,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"2-Several times",200,"1-LD",850,"1-LD","5-Unskilled manual","N","N","N","N","3-Many times","Y",2,4,1,3,1,2,2,,"Y","Y","0-None"
,"1/7/2015 10:34:34",2012,"Z1100-Paynesville",2012112,,"2-Female",40,7,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;12-Bleeding",3,"1-Yes","Y","Y","N","N",,"3-Many times",0,"","","","","Y","N","Y","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"3-Many times",400,"1-LD",3500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",0,3,5,4,1,3,3,,"Y","N","2-Child present;4-Friend present"
,"1/7/2015 11:07:17",2012,"Z1100-Paynesville",2012163,,"2-Female",44,8,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",2,0,,"0-Never",1200,"1-LD",3000,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",0,2,0,1,2,3,0,,"Y","N","0-None"
,"1/7/2015 10:54:41",2012,"Z1100-Paynesville",2012152,,"1-Male",25,10,"5-Some high school","3-Other","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",3,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",800,"1-LD",2800,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",3,3,2,5,1,2,3,,"Y","N","0-None"
,"1/7/2015 9:45:20",2012,"Z1100-Paynesville",2012151,,"1-Male",56,16,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2100,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",6,6,0,6,1,1,0,,"Y","N","0-None"
,"1/7/2015 9:37:45",2012,"Z1100-Paynesville",2012111,,"2-Female",43,4,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes;12-Bleeding;18-Cough",21,"1-Yes","Y","Y","N","Y",,"3-Many times",0,"","","","","Y","N","Y","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","1-Yes","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"3-Many times",150,"1-LD",500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",0,5,0,3,99,99,99,,"Y","Y","2-Child present;4-Friend present"
,"1/7/2015 11:41:37",2012,"Z1100-Paynesville",2012213,,"2-Female",47,3,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;4-Headache;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",7,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",2500,"1-LD",9000,"1-LD","3-Sales and services","N","Y","N","Y","1-Just once or twice","N",0,1,0,1,2,3,0,,"Y","N","0-None"
,"1/7/2015 9:30:21",2012,"Z1100-Paynesville",2012161,,"1-Male",45,9,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",7,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",5,2,,"2-Several times",2300,"1-LD",3500,"1-LD","3-Sales and services","Y","N","N","N","3-Many times","Y",1,4,0,4,1,2,0,,"Y","N","0-None"
,"1/7/2015 10:21:03",2012,"Z1100-Paynesville",2012162,,"2-Female",25,3,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,12,,"2-Several times",600,"1-LD",1000,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",0,1,0,2,99,99,99,,"Y","N","0-None"
,"1/7/2015 11:55:40",2012,"Z1100-Paynesville",2012153,,"2-Female",80,8,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes",21,"1-Yes","Y","Y","Y","N",,"3-Many times",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"Y","N","0-None"
,"1/7/2015 12:05:27",2012,"Z1100-Paynesville",2012114,,"1-Male",39,6,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding;18-Cough",7,"0-No","N","Y","N","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"0-No","0-No",2,"1-Community leaders;2-Religious leaders;3-Community members","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"3-Many times",350,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",5,3,2,3,1,1,5,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"1/7/2015 13:04:21",2012,"Z1100-Paynesville",2012115,,"2-Female",25,12,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes;18-Cough",21,"0-No","N","Y","Y","N",,"3-Many times",4,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","97-Do not know","0-No","0-No","0-No","97-Do not know","0-No",0,2,,"3-Many times",300,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,2,35,3,1,1,4,,"Y","N","2-Child present;4-Friend present"
,"1/7/2015 12:56:29",2012,"Z1100-Paynesville",2012214,,"1-Male",48,5,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",400,"1-LD",2000,"1-LD","5-Unskilled manual","N","Y","Y","Y","3-Many times","Y",0,6,2,3,1,2,0,,"Y","N","0-None"
,"1/7/2015 11:53:06",2012,"Z1100-Paynesville",2012222,,"1-Male",24,12,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;4-Headache;7-Weakness;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"3-Many times",5000,"1-LD",8000,"1-LD","3-Sales and services","N","Y","Y","Y","0-Never","N",0,0,0,1,2,3,0,,"Y","N","0-None"
,"1/7/2015 9:46:46",2012,"Z1100-Paynesville",2012211,,"1-Male",44,7,"7-Some university","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding",14,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"3-Many times",500,"1-LD",7000,"1-LD","3-Sales and services","N","Y","Y","Y","3-Many times","Y",0,4,0,3,1,2,0,,"Y","N","0-None"
,"1/7/2015 13:26:36",2012,"Z1100-Paynesville",2012166,,"2-Female",33,7,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1200,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,2,0,2,1,2,0,,"Y","N","0-None"
,"1/7/2015 12:42:50",2012,"Z1100-Paynesville",2012165,,"1-Male",23,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",2,1,,"0-Never",0,"1-LD",1900,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/7/2015 10:55:21",2012,"Z1100-Paynesville",2012221,,"1-Male",39,9,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes",3,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","Y","Y","","88-Other",,"0-No","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",6000,"1-LD",7000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"1/9/2015 11:05:48",2013,"Z1100-Paynesville",2013112,,"2-Female",22,8,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;12-Bleeding;18-Cough",21,"1-Yes","N","Y","Y","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",0,"","1-Agree","97-Do not know","0-No","0-No","0-No","97-Do not know","97-Do not know",0,4,,"3-Many times",400,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",3,4,5,3,1,1,3,,"Y","N","2-Child present"
,"1/9/2015 11:18:02",2013,"Z1100-Paynesville",2013133,,"2-Female",51,7,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",3,"0-No","Y","Y","Y","Y",,"2-Several times",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",500,"1-LD","88-Other","N","N","N","N","3-Many times","Y",3,3,2,2,1,2,0,,"Y","N","0-None"
,"1/8/2015 15:58:09",2013,"Z1100-Paynesville",2013192,,"1-Male",34,5,"5-Some high school","1-Christian","1-Yes","12-Nimba","1-Yes","15-Sinoe",,"1-Preparing or eating bush mea;4-Man woman business;7-Mother breastfeeding her chi","1-Vomiting;4-Headache;7-Weakness;9-Rash",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"Y","N","Y","","N","","","",,"0-No","0-No",0,"","0-Disagree","0-Disagree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"1-LD",500,"1-LD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",2,0,0,6,1,2,0,,"Y","N","0-None"
,"1/9/2015 9:53:41",2013,"Z1100-Paynesville",2013111,,"2-Female",19,6,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;18-Cough",21,"1-Yes","Y","Y","N","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",1,"1-Community leaders;4-NGOs","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,6,,"3-Many times",0,"1-LD",500,"1-LD","6-Domestic services","Y","Y","Y","Y","3-Many times","Y",5,2,3,3,1,1,4,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"1/9/2015 11:17:48",2013,"Z1100-Paynesville",2013195,,"2-Female",33,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;4-Headache;7-Weakness;9-Rash",21,"0-No","N","Y","N","N",,"0-Never",1,"Y","N","N","","N","","","",,"0-No","0-No",0,"","0-Disagree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",400,"1-LD",7000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",0,0,3,3,2,2,0,,"Y","N","2-Child present"
,"1/8/2015 17:07:56",2013,"Z1100-Paynesville",2013153,,"2-Female",36,10,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",7,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",3500,"1-LD",5,"2-USD","3-Sales and services","Y","Y","N","Y","3-Many times","Y",7,7,2,5,3,3,0,,"Y","N","0-None"
,"1/9/2015 10:07:11",2013,"Z1100-Paynesville",2013132,,"2-Female",48,7,"1-Some ABC","2-Muslim","","","","",,"88-Other","1-Vomiting;9-Rash;10-Red eyes;88-Other",21,"1-Yes","Y","Y","Y","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,2,,"2-Several times",150,"1-LD",350,"1-LD","88-Other","N","N","N","N","0-Never","N",0,2,0,2,2,2,0,,"Y","N","0-None"
,"1/8/2015 16:54:40",2013,"Z1100-Paynesville",2013193,,"1-Male",50,5,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;5-Joint and muscle pain",21,"1-Yes","Y","N","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",400,"1-LD",6000,"1-LD","4-Skilled manual","N","N","N","Y","0-Never","Y",4,4,0,0,2,3,0,,"Y","N","2-Child present"
,"1/8/2015 16:10:08",2013,"Z1100-Paynesville",2013152,,"1-Male",27,9,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",35,"2-USD",70,"2-USD","3-Sales and services","N","Y","N","Y","3-Many times","Y",4,3,2,6,1,3,0,,"Y","N","0-None"
,"1/9/2015 10:30:12",2013,"Z1100-Paynesville",2013154,,"1-Male",60,9,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"0-Never",4,"N","","","","Y","N","Y","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,,,"3-Many times",6300,"1-LD",3500,"1-LD","1-Professional","Y","Y","N","Y","3-Many times","Y",6,6,2,6,2,2,0,,"Y","N","0-None"
,"1/8/2015 16:47:21",2013,"Z1100-Paynesville",2013131,,"1-Male",45,5,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;4-Headache;7-Weakness;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","N","N","0-Never","N",0,0,0,0,1,2,0,,"Y","N","88-Other"
,"1/8/2015 15:21:34",2013,"Z1100-Paynesville",2013191,,"2-Female",18,9,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;10-Red eyes;13-Fatigue;16-Weight loss",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"Y","N","N","","N","","","",,"1-Yes","1-Yes",1,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",2,2,,"0-Never",0,"1-LD",0,"1-LD","0-None","N","N","N","N","0-Never","Y",0,0,0,0,2,2,0,,"Y","N","4-Friend present"
,"1/9/2015 10:23:56",2013,"Z1100-Paynesville",2013194,,"2-Female",24,7,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"0-No","N","Y","Y","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",300,"1-LD",2000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",0,0,0,0,1,2,0,,"Y","Y","2-Child present"
,"1/8/2015 15:20:20",2013,"Z1100-Paynesville",2013151,,"1-Male",26,12,"5-Some high school","1-Christian","1-Yes","15-Sinoe","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",2100,"1-LD",5500,"1-LD","3-Sales and services","N","Y","N","Y","3-Many times","Y",7,7,0,7,1,2,0,,"Y","Y","0-None"
,"1/4/2015 10:26:38",2014,"Z1100-Paynesville",2014183,,"1-Male",24,8,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;2-Fever;10-Red eyes",3,"1-Yes","N","Y","N","N",,"0-Never",5,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",2400,"1-LD","88-Other","N","N","Y","N","2-Several times","Y",0,4,2,2,1,2,99,,"Y","N","0-None"
,"1/4/2015 8:55:57",2014,"Z1100-Paynesville",2014181,,"1-Male",43,9,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache",21,"1-Yes","N","Y","N","Y",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",1700,"1-LD","1-Professional","Y","Y","Y","Y","0-Never","Y",0,2,2,2,1,2,99,,"Y","Y","88-Other"
,"1/4/2015 8:55:07",2014,"Z1100-Paynesville",2014101,,"1-Male",27,9,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","2-Fever;3-Diarrhea;5-Joint and muscle pain;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",3,"1-Yes","N","Y","N","N",,"1-Just once or twice",2,"Y","Y","","","N","","","",,"0-No","0-No",1,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","0-No","0-No","1-Yes","0-No",2,0,,"3-Many times",0,"88-N/A",4000,"1-LD","3-Sales and services","N","Y","N","Y","2-Several times","Y",0,3,0,4,1,2,0,,"Y","N","0-None"
,"1/4/2015 11:42:10",2014,"Z1100-Paynesville",2014184,,"1-Male",24,9,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;3-Diarrhea;10-Red eyes",3,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",1200,"1-LD","3-Sales and services","Y","Y","N","N","2-Several times","Y",0,5,0,3,1,2,99,,"Y","N","0-None"
,"1/4/2015 9:38:44",2014,"Z1100-Paynesville",2014172,,"1-Male",33,9,"4-Completed junior high","1-Christian","","","","",,"","",,"","","","","",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","0-No",3,5,,"3-Many times",2000,"1-LD",12000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",2,3,1,5,1,3,1,,"Y","N","0-None;88-Other"
,"1/4/2015 10:08:07",2014,"Z1100-Paynesville",2014173,,"1-Male",52,9,"88-Other","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;88-Other","0-Disagree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,2,,"3-Many times",3000,"1-LD",12000,"1-LD","4-Skilled manual","Y","Y","Y","Y","0-Never","Y",2,3,1,6,1,3,2,,"Y","N","0-None;88-Other"
,"1/4/2015 11:22:37",2014,"Z1100-Paynesville",2014202,,"2-Female",29,4,"3-Some junior high","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",21,"0-No","Y","Y","Y","N",,"1-Just once or twice",2,"N","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",100,"2-USD","3-Sales and services","Y","Y","N","N","2-Several times","N",0,7,0,2,1,2,0,,"Y","N","0-None"
,"1/4/2015 11:04:08",2014,"Z1100-Paynesville",2014124,,"1-Male",36,13,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",50,"2-USD","4-Skilled manual","Y","Y","Y","Y","0-Never","N",0,0,0,0,2,2,0,,"","",""
,"1/4/2015 11:29:37",2014,"Z1100-Paynesville",2014175,,"1-Male",47,15,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",7,"0-No","Y","Y","Y","Y",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,2,,"3-Many times",200,"1-LD",1200,"1-LD","0-None","Y","Y","N","N","2-Several times","Y",4,2,2,5,1,3,2,,"","",""
,"12/28/2014 15:02:46",2014,"Z1100-Paynesville",2024185,,"2-Female",48,8,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;10-Red eyes",4,"1-Yes","N","Y","","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",2000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",2,1,1,2,2,3,99,,"Y","N","0-None"
,"1/4/2015 10:30:27",2014,"Z1100-Paynesville",2014141,,"1-Male",35,4,"7-Some university","1-Christian","1-Yes","4-Grand Bassa","1-Yes","4-Grand Bassa",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;12-Bleeding",21,"1-Yes","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",4,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",1,0,,"1-Just once or twice",0,"1-LD",0,"1-LD","4-Skilled manual","Y","Y","Y","N","0-Never","Y",0,4,0,7,2,2,2,,"Y","N","2-Child present"
,"1/4/2015 11:52:15",2014,"Z1100-Paynesville",2014142,,"1-Male",19,3,"5-Some high school","2-Muslim","1-Yes","1-Bomi","1-Yes","1-Bomi",,"1-Preparing or eating bush mea;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",2,1,,"1-Just once or twice",3000,"1-LD",5000,"1-LD","6-Domestic services","N","Y","Y","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","Y","0-None"
,"1/4/2015 9:38:36",2014,"Z1100-Paynesville",2014182,,"1-Male",52,9,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;7-Weakness;10-Red eyes",2,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",2000,"1-LD",5000,"1-LD","4-Skilled manual","N","N","N","N","0-Never","Y",0,0,0,0,3,3,99,,"Y","N","0-None"
,"1/4/2015 10:25:30",2014,"Z1100-Paynesville",2014201,,"2-Female",82,5,"6-Completed high school","1-Christian","0-No","","1-Yes","11-Montserrado",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea",7,"1-Yes","N","Y","Y","Y",,"1-Just once or twice",0,"","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"1-LD",0,"1-LD","1-Professional","N","N","N","N","2-Several times","Y",0,3,0,1,2,2,0,,"Y","N","0-None"
,"1/4/2015 10:51:43",2014,"Z1100-Paynesville",2014174,,"",,,"","","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;3-Diarrhea;10-Red eyes",7,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","97-Do not know","97-Do not know","1-Yes","0-No","0-No","97-Do not know","0-No",0,1,,"3-Many times",2000,"1-LD",25000,"1-LD","3-Sales and services","Y","Y","N","N","2-Several times","Y",3,1,0,6,2,3,0,,"Y","N","0-None;88-Other"
,"1/4/2015 10:24:18",2014,"Z1100-Paynesville",2014123,,"1-Male",38,10,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","2-Fever;6-Sore throat;10-Red eyes;88-Other",2,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","5-Unskilled manual","Y","Y","N","N","0-Never","Y",0,7,0,5,1,2,0,,"Y","N","0-None"
,"1/4/2015 9:06:41",2014,"Z1100-Paynesville",2014171,,"1-Male",43,15,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","Y","Y","Y","Y",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",2000,"1-LD",1500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","4-Always","Y",3,5,2,6,1,2,2,,"Y","N","0-None;88-Other"
,"1/4/2015 9:36:41",2014,"Z1100-Paynesville",2014122,,"2-Female",60,3,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;7-Weakness;88-Other",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","5-Unskilled manual","N","N","N","N","3-Many times","Y",2,7,0,0,1,1,0,,"Y","N","0-None"
,"1/4/2015 11:11:31",2014,"Z1100-Paynesville",2014103,,"1-Male",31,10,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;7-Weakness",5,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",50,"2-USD","4-Skilled manual","N","N","N","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/4/2015 9:53:55",2014,"Z1100-Paynesville",2014102,,"2-Female",27,8,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;6-Contact with infected surfac","2-Fever;10-Red eyes",21,"1-Yes","Y","Y","Y","Y",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",1000,"1-LD",1000,"1-LD","0-None","N","N","N","N","1-Just once or twice","N",0,0,0,0,2,2,0,,"N","N","0-None"
,"1/4/2015 8:55:46",2014,"Z1100-Paynesville",2014121,,"1-Male",36,8,"6-Completed high school","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;8-Stomach pain;10-Red eyes;88-Other",21,"1-Yes","N","Y","N","N",,"0-Never",1,"Y","N","N","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",100,"2-USD","3-Sales and services","Y","Y","Y","Y","0-Never","N",0,7,0,7,2,3,0,,"Y","N","0-None"
,"1/3/2015 13:37:59",2015,"Z1100-Paynesville",2015204,,"2-Female",31,10,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",3,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","97-Do not know",0,0,,"2-Several times",2000,"1-LD",60,"2-USD","3-Sales and services","Y","Y","Y","Y","2-Several times","N",4,7,2,3,1,2,3,,"Y","N","0-None"
,"1/3/2015 16:34:10",2015,"Z1100-Paynesville",2015207,,"2-Female",37,12,"7-Some university","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;5-Joint and muscle pain;7-Weakness;10-Red eyes",5,"1-Yes","N","Y","N","N",,"1-Just once or twice",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"1-Just once or twice",400,"1-LD",3000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",0,7,0,3,2,4,0,,"Y","N","0-None"
,"1/3/2015 13:15:24",2015,"Z1100-Paynesville",2015143,,"1-Male",72,8,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","1-Professional","Y","Y","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","2-Child present"
,"1/3/2015 13:55:10",2015,"Z1100-Paynesville",2015175,,"2-Female",24,8,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",8,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,1,,"3-Many times",2000,"1-LD",10000,"1-LD","3-Sales and services","N","N","N","N","3-Many times","Y",,2,1,5,1,3,1,,"","",""
,"1/3/2015 16:42:59",2015,"Z1100-Paynesville",2015145,,"1-Male",24,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",5000,"1-LD",7000,"1-LD","6-Domestic services","N","Y","N","Y","0-Never","N",0,0,0,0,2,2,0,,"N","N","2-Child present"
,"1/3/2015 14:41:22",2015,"Z1100-Paynesville",2015205,,"1-Male",35,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;12-Bleeding",4,"1-Yes","N","Y","N","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1500,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","N","N","2-Several times","N",1,7,0,2,1,2,0,,"Y","N","0-None"
,"1/3/2015 16:09:30",2015,"Z1100-Paynesville",2015178,,"2-Female",25,3,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;3-Community members;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",2,0,,"0-Never",500,"1-LD",2000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",2,3,0,5,2,2,0,,"Y","N","0-None"
,"1/3/2015 10:52:09",2015,"Z1100-Paynesville",2015141,,"1-Male",23,7,"7-Some university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache",21,"1-Yes","N","N","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",6,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",3,0,,"2-Several times",55,"2-USD",1800,"1-LD","4-Skilled manual","N","Y","Y","Y","3-Many times","Y",0,7,0,0,2,3,0,,"Y","N","2-Child present"
,"1/3/2015 15:13:34",2015,"Z1100-Paynesville",2015144,,"2-Female",28,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"Y","N","N","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",2,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",3000,"1-LD","6-Domestic services","Y","Y","N","Y","0-Never","N",0,4,0,3,1,1,0,,"Y","N","2-Child present"
,"1/3/2015 10:59:59",2015,"Z1100-Paynesville",2015171,,"1-Male",26,18,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",3000,"1-LD",5500,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",2,4,2,6,1,3,1,,"","",""
,"1/3/2015 12:12:55",2015,"Z1100-Paynesville",2015202,,"2-Female",48,7,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes;12-Bleeding",3,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",1000,"1-LD",750,"1-LD","1-Professional","Y","Y","N","Y","2-Several times","N",0,0,0,1,2,2,0,,"Y","N","0-None"
,"1/3/2015 11:15:47",2015,"Z1100-Paynesville",2015201,,"1-Male",64,11,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;9-Rash",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","0-Disagree","1-Yes","0-No","0-No","1-Yes","0-No",0,0,,"2-Several times",200,"1-LD",400,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",0,7,0,2,1,2,0,,"Y","N","0-None"
,"1/3/2015 15:23:42",2015,"Z1100-Paynesville",2015177,,"2-Female",50,13,"6-Completed high school","1-Christian","0-No","","1-Yes","10-Maryland",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",2000,"1-LD",12000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",4,5,0,6,1,3,0,,"Y","N","0-None;88-Other"
,"1/3/2015 11:59:51",2015,"Z1100-Paynesville",2015142,,"1-Male",52,6,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness;9-Rash;12-Bleeding",21,"0-No","N","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders;6-Community group","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",50,"1-LD",3000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",1,5,0,4,2,2,0,,"Y","N","2-Child present"
,"1/3/2015 15:48:38",2015,"Z1100-Paynesville",2015206,,"2-Female",32,11,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",500,"1-LD",1000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/3/2015 11:40:31",2015,"Z1100-Paynesville",2015172,,"1-Male",47,8,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",22000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",2,3,0,3,1,2,0,,"Y","N","0-None"
,"1/3/2015 12:36:39",2015,"Z1100-Paynesville",2015173,,"2-Female",22,6,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;4-NGOs","97-Do not know","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"Y","N","0-None"
,"1/3/2015 13:23:22",2015,"Z1100-Paynesville",2015174,,"1-Male",20,7,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","1-Yes",0,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",3000,"1-LD",10000,"1-LD","88-Other","N","N","N","N","3-Many times","Y",2,4,1,5,1,3,0,,"Y","N","0-None"
,"1/3/2015 14:45:09",2015,"Z1100-Paynesville",2015176,,"2-Female",41,6,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",1,0,,"3-Many times",2000,"1-LD",12000,"1-LD","4-Skilled manual","Y","Y","N","N","3-Many times","Y",2,4,0,5,1,2,0,,"Y","N","0-None"
,"1/3/2015 13:01:41",2015,"Z1100-Paynesville",2015203,,"2-Female",66,5,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","97-Does not know",1,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",100,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","N","N","2-Several times","Y",3,7,2,3,1,1,0,,"Y","N","0-None"
,"1/3/2015 13:41:43",2016,"Z1100-Paynesville",2016185,,"2-Female",40,8,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;8-Stomach pain;10-Red eyes",21,"1-Yes","Y","Y","Y","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",1600,"1-LD",5000,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",1,2,0,0,1,3,99,,"Y","N","0-None"
,"1/3/2015 10:12:56",2016,"Z1100-Paynesville",2016101,,"2-Female",25,10,"5-Some high school","1-Christian","","","","",,"6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","1-Yes","0-No","0-No",1,2,,"3-Many times",0,"88-N/A",0,"88-N/A","0-None","Y","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/3/2015 13:23:54",2016,"Z1100-Paynesville",2016125,,"1-Male",28,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes;12-Bleeding;88-Other",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,5,,"3-Many times",300,"1-LD",500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","0-Never","Y",0,4,0,0,1,2,0,,"Y","N","0-None"
,"1/3/2015 13:46:03",2016,"Z1100-Paynesville",2016105,,"2-Female",51,13,"1-Some ABC","1-Christian","","","","",,"97-Dont know","1-Vomiting;3-Diarrhea",0,"0-No","Y","Y","N","N",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","0-No","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",0,"1-LD",10000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,6,0,0,2,2,0,,"Y","N","0-None"
,"1/3/2015 11:30:49",2016,"Z1100-Paynesville",2016183,,"1-Male",21,7,"6-Completed high school","1-Christian","1-Yes","12-Nimba","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea",21,"1-Yes","N","Y","Y","Y",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",2000,"1-LD",500,"1-LD","3-Sales and services","Y","Y","N","N","0-Never","N",0,0,0,0,1,1,99,,"Y","N","0-None"
,"1/3/2015 14:45:27",2016,"Z1100-Paynesville",2016127,,"1-Male",59,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",10,"1-Yes","N","Y","N","N",,"",,"","","","","","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","1-Professional","N","Y","Y","N","0-Never","N",0,0,0,0,1,1,0,,"Y","N","0-None"
,"1/3/2015 12:06:34",2016,"Z1100-Paynesville",2016123,,"2-Female",32,7,"0-None","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;12-Bleeding;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",10,"2-USD","5-Unskilled manual","Y","Y","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/3/2015 13:59:02",2016,"Z1100-Paynesville",2016126,,"2-Female",26,9,"7-Some university","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;88-Other",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","Y","N","N","",,"1-Yes","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",12,"2-USD","1-Professional","Y","Y","Y","Y","0-Never","N",,0,0,0,2,2,0,,"Y","N","0-None"
,"1/3/2015 10:54:46",2016,"Z1100-Paynesville",2016182,,"2-Female",25,3,"5-Some high school","1-Christian","","","","",,"97-Dont know","97-Does not know",2,"0-No","N","Y","Y","N",,"0-Never",1,"Y","Y","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"1-LD",1000,"1-LD","3-Sales and services","Y","Y","N","N","0-Never","Y",2,3,0,2,2,2,99,,"Y","Y","2-Child present"
,"1/3/2015 10:27:25",2016,"Z1100-Paynesville",2016181,,"1-Male",28,4,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness",2,"1-Yes","Y","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",1000,"1-LD",3500,"1-LD","5-Unskilled manual","N","N","N","N","0-Never","N",0,0,0,0,1,2,0,,"Y","Y","2-Child present"
,"1/3/2015 12:47:25",2016,"Z1100-Paynesville",2016124,,"2-Female",39,3,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/3/2015 12:44:24",2016,"Z1100-Paynesville",2016184,,"1-Male",42,5,"0-None","1-Christian","0-No","","0-No","",,"4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",500,"1-LD",4000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,2,0,1,1,2,99,,"Y","Y","88-Other"
,"1/3/2015 11:52:39",2016,"Z1100-Paynesville",2016103,,"2-Female",39,6,"0-None","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;8-Stomach pain;10-Red eyes;11-Hiccups",3,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",200,"1-LD","88-Other","Y","N","N","N","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"1/3/2015 11:26:36",2016,"Z1100-Paynesville",2016122,,"1-Male",25,9,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;4-Headache;6-Sore throat;88-Other",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",50,"2-USD","5-Unskilled manual","Y","Y","Y","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/3/2015 14:11:04",2016,"Z1100-Paynesville",2016186,,"1-Male",60,10,"7-Some university","2-Muslim","1-Yes","2-Bong","0-No","",,"2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;7-Weakness;11-Hiccups;12-Bleeding",4,"1-Yes","Y","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",2000,"1-LD",8000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,0,0,0,2,3,2,,"Y","Y","2-Child present"
,"1/3/2015 11:11:16",2016,"Z1100-Paynesville",2016102,,"1-Male",36,11,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash;10-Red eyes",4,"0-No","N","Y","N","N",,"1-Just once or twice",1,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",1500,"88-N/A","0-None","N","N","N","N","0-Never","N",0,7,0,5,2,2,0,,"Y","N","0-None"
,"1/3/2015 14:40:41",2016,"Z1100-Paynesville",2016106,,"1-Male",29,9,"3-Some junior high","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;9-Rash;11-Hiccups;15-Chills",21,"0-No","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",4000,"1-LD","5-Unskilled manual","Y","Y","N","Y","3-Many times","Y",0,2,0,2,1,2,0,,"Y","N","0-None"
,"1/3/2015 14:55:15",2016,"Z1100-Paynesville",2016187,,"1-Male",18,3,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe","1-Vomiting;7-Weakness;8-Stomach pain",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",1000,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",1,0,0,0,1,2,99,,"Y","Y","88-Other"
,"1/3/2015 12:43:39",2016,"Z1100-Paynesville",2016104,,"1-Male",27,8,"7-Some university","1-Christian","","","","",,"6-Contact with infected surfac","2-Fever;3-Diarrhea;4-Headache;7-Weakness",21,"1-Yes","N","Y","N","N",,"0-Never",1,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",14,14,,"0-Never",0,"88-N/A",0,"88-N/A","4-Skilled manual","N","Y","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"1/3/2015 10:46:25",2016,"Z1100-Paynesville",2016121,,"2-Female",35,4,"7-Some university","1-Christian","0-No","","1-Yes","12-Nimba",,"1-Preparing or eating bush mea;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;4-Headache;11-Hiccups;12-Bleeding;88-Other",21,"0-No","N","Y","N","N",,"1-Just once or twice",1,"Y","Y","","","Y","Y","","6-Family or self",,"1-Yes","1-Yes",1,"3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"3-Many times",0,"88-N/A",5000,"1-LD","5-Unskilled manual","Y","Y","N","N","0-Never","N",0,0,0,1,3,3,0,,"Y","N","0-None"
,"12/29/2014 9:37:35",2017,"Z1100-Paynesville",2017171,,"1-Male",45,9,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",3000,"1-LD",25,"2-USD","1-Professional","Y","Y","Y","Y","3-Many times","Y",3,2,2,5,1,3,3,,"Y","N","0-None"
,"12/29/2014 11:32:57",2017,"Z1100-Paynesville",2017203,,"1-Male",18,11,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",4,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,3,,"2-Several times",0,"1-LD",500,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",2,7,0,2,1,2,0,,"Y","N","0-None"
,"12/29/2014 11:19:24",2017,"Z1100-Paynesville",2017103,,"2-Female",30,6,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;88-Other","1-Vomiting;3-Diarrhea;4-Headache;9-Rash",21,"0-No","Y","Y","Y","Y",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","0-None","N","N","N","Y","0-Never","Y",0,3,3,3,2,2,0,,"Y","N","0-None"
,"12/29/2014 11:27:05",2017,"Z1100-Paynesville",2017183,,"2-Female",27,5,"7-Some university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;12-Bleeding",8,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",800,"1-LD","0-None","Y","Y","Y","Y","2-Several times","Y",3,7,0,2,1,2,99,,"Y","Y","88-Other"
,"12/29/2014 12:05:54",2017,"Z1100-Paynesville",2017104,,"1-Male",29,7,"7-Some university","1-Christian","1-Yes","12-Nimba","1-Yes","12-Nimba",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"0-No","N","Y","N","N",,"1-Just once or twice",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",935,"1-LD","1-Professional","Y","N","Y","N","2-Several times","Y",0,3,0,2,1,2,0,,"Y","N","0-None"
,"12/29/2014 9:58:00",2017,"Z1100-Paynesville",2017201,,"2-Female",26,5,"4-Completed junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache",7,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","Y","Y","","2-Hospital",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1400,"1-LD",2400,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",0,7,0,2,2,2,0,,"Y","N","0-None"
,"12/29/2014 12:25:06",2017,"Z1100-Paynesville",2017175,,"1-Male",27,4,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"4-NGOs;88-Other","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",5000,"1-LD",50,"2-USD","1-Professional","N","N","Y","Y","0-Never","N",0,0,0,2,3,3,0,,"Y","N","0-None"
,"12/29/2014 13:58:31",2017,"Z1100-Paynesville",2017176,,"2-Female",40,4,"1-Some ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;4-NGOs;88-Other","97-Do not know","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",2,1,,"0-Never",1200,"1-LD",2500,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",2,2,0,3,2,3,0,,"Y","N","0-None;88-Other"
,"12/29/2014 12:27:42",2017,"Z1100-Paynesville",2017204,,"1-Male",77,9,"0-None","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;12-Bleeding",3,"1-Yes","N","Y","Y","N",,"2-Several times",2,"N","","","","Y","Y","","2-Hospital",,"0-No","0-No",1,"3-Community members","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"1-LD",0,"1-LD","4-Skilled manual","N","N","N","N","2-Several times","Y",4,7,0,2,1,2,0,,"Y","N","0-None"
,"12/29/2014 10:44:14",2017,"Z1100-Paynesville",2017182,,"2-Female",35,8,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes",4,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",900,"1-LD","3-Sales and services","Y","Y","N","N","3-Many times","Y",0,3,0,4,1,2,99,,"Y","Y","0-None"
,"12/29/2014 12:33:02",2017,"Z1100-Paynesville",2017184,,"2-Female",28,12,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;88-Other","2-Fever;3-Diarrhea;8-Stomach pain",2,"0-No","N","Y","Y","N",,"2-Several times",2,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",0,"1-LD","0-None","N","N","N","N","2-Several times","Y",0,4,3,2,1,1,99,,"Y","N","0-None"
,"12/29/2014 10:25:53",2017,"Z1100-Paynesville",2017102,,"2-Female",38,10,"6-Completed high school","1-Christian","","","","",,"5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;10-Red eyes;12-Bleeding",3,"1-Yes","N","Y","Y","N",,"2-Several times",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",6000,"1-LD",8000,"1-LD","3-Sales and services","N","Y","N","N","3-Many times","Y",2,2,0,3,99,99,99,,"Y","N","0-None"
,"12/29/2014 9:41:39",2017,"Z1100-Paynesville",2017,,"1-Male",29,12,"7-Some university","2-Muslim","0-No","","1-Yes","3-Gbarpolu",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes",3,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",2500,"1-LD","1-Professional","Y","Y","N","N","0-Never","Y",0,0,0,0,1,1,99,,"Y","Y","3-Spouse present"
,"12/29/2014 11:00:24",2017,"Z1100-Paynesville",2017173,,"2-Female",26,7,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",7,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,0,,"0-Never",5000,"1-LD",12000,"1-LD","3-Sales and services","N","N","Y","Y","0-Never","N",0,0,0,4,2,2,0,,"Y","N","0-None"
,"12/29/2014 13:36:23",2017,"Z1100-Paynesville",2017185,,"1-Male",34,6,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;3-Diarrhea;7-Weakness;12-Bleeding",2,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"3-Community members","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",1500,"1-LD",5000,"1-LD","5-Unskilled manual","Y","Y","N","N","2-Several times","Y",2,1,1,1,1,2,99,,"","",""
,"12/29/2014 9:28:45",2017,"Z1100-Paynesville",2017101,,"1-Male",35,6,"7-Some university","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;10-Red eyes",0,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"88-N/A",2500,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",7,7,0,5,99,99,99,,"Y","N","0-None"
,"12/29/2014 10:38:54",2017,"Z1100-Paynesville",2017202,,"1-Male",22,4,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;8-Stomach pain",14,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",50,"1-LD",1000,"1-LD","0-None","N","N","N","N","1-Just once or twice","N",0,7,0,1,1,2,0,,"Y","N","0-None"
,"12/29/2014 13:17:10",2017,"Z1100-Paynesville",2017105,,"1-Male",19,5,"5-Some high school","1-Christian","","","","",,"6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;8-Stomach pain",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","0-Disagree","0-No","0-No","1-Yes","0-No","0-No",1,0,,"3-Many times",0,"88-N/A",1500,"1-LD","0-None","N","N","Y","N","3-Many times","Y",3,2,3,0,99,99,99,,"Y","N","0-None"
,"12/29/2014 10:19:56",2017,"Z1100-Paynesville",2017172,,"2-Female",20,16,"1-Some ABC","3-Other","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",6,"0-No","Y","Y","Y","Y",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;88-Other","97-Do not know","97-Do not know","0-No","0-No","1-Yes","97-Do not know","0-No",3,6,,"3-Many times",500,"1-LD",1000,"1-LD","3-Sales and services","N","N","Y","Y","3-Many times","Y",4,3,2,5,1,3,0,,"Y","Y","4-Friend present"
,"12/29/2014 11:42:30",2017,"Z1100-Paynesville",2017174,,"2-Female",23,6,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",4000,"1-LD",14000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",2,2,0,4,2,2,0,,"Y","N","0-None;88-Other"
,"12/29/2014 13:18:24",2017,"Z1100-Paynesville",2017205,,"2-Female",23,3,"0-None","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","97-Does not know",3,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",3000,"1-LD",3000,"1-LD","3-Sales and services","Y","Y","N","N","1-Just once or twice","N",1,7,2,3,1,1,0,,"Y","N","0-None"
,"12/30/2014 10:32:40",2018,"Z1100-Paynesville",2018172,,"1-Male",28,4,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",8000,"1-LD",13000,"1-LD","1-Professional","Y","Y","Y","Y","4-Always","Y",4,2,1,6,2,3,0,,"Y","N","0-None"
,"12/30/2014 13:35:11",2018,"Z1100-Paynesville",2018175,,"2-Female",35,10,"1-Some ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","Y","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;6-Community group;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",2000,"1-LD",4000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",2,0,0,0,1,1,0,,"Y","N","0-None"
,"12/30/2014 16:18:47",2018,"Z1100-Paynesville",2018127,,"1-Male",25,4,"7-Some university","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes;88-Other",15,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",4,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",1400,"1-LD","6-Domestic services","Y","Y","N","N","3-Many times","Y",7,7,0,5,1,3,3,,"Y","N","0-None"
,"12/30/2014 14:59:29",2018,"Z1100-Paynesville",2018145,,"1-Male",44,4,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",4000,"1-LD",10000,"1-LD","1-Professional","Y","Y","N","Y","2-Several times","N",0,0,0,3,2,4,0,,"N","N","2-Child present"
,"12/30/2014 9:46:50",2018,"Z1100-Paynesville",2018171,,"1-Male",42,7,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;4-Headache;7-Weakness;9-Rash;10-Red eyes",14,"1-Yes","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;4-NGOs;5-Government agency","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",3000,"1-LD",13000,"1-LD","1-Professional","Y","Y","Y","Y","4-Always","Y",3,5,2,6,1,3,2,,"Y","N","0-None"
,"12/30/2014 14:48:57",2018,"Z1100-Paynesville",2018176,,"2-Female",21,7,"5-Some high school","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"98-Refuse to answer",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",1,2,,"3-Many times",3000,"1-LD",12000,"1-LD","6-Domestic services","N","Y","Y","Y","0-Never","Y",2,1,0,3,1,3,0,,"Y","N","0-None"
,"12/30/2014 12:19:39",2018,"Z1100-Paynesville",2018122,,"2-Female",35,13,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes;12-Bleeding;88-Other",10,"1-Yes","N","Y","N","N",,"0-Never",5,"N","","","","Y","N","N","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",10000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",0,7,1,0,1,3,0,,"Y","N","0-None"
,"12/30/2014 15:29:46",2018,"Z1100-Paynesville",2018177,,"1-Male",39,12,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness",21,"1-Yes","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",3,2,,"3-Many times",2000,"1-LD",15000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",2,4,1,5,1,3,1,,"Y","N","0-None"
,"12/30/2014 12:48:00",2018,"Z1100-Paynesville",2018174,,"2-Female",25,11,"6-Completed high school","2-Muslim","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"0-Never",0,"1-LD",50,"2-USD","88-Other","N","Y","Y","Y","3-Many times","Y",3,2,3,5,1,3,1,,"Y","N","0-None"
,"12/30/2014 13:10:49",2018,"Z1100-Paynesville",2018123,,"1-Male",23,8,"5-Some high school","1-Christian","1-Yes","4-Grand Bassa","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes;18-Cough;88-Other",21,"0-No","Y","Y","N","N",,"0-Never",2,"N","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","Y","Y","0-Never","N",0,7,0,0,2,2,0,,"Y","N","0-None"
,"12/30/2014 15:43:04",2018,"Z1100-Paynesville",2018126,,"1-Male",27,5,"7-Some university","2-Muslim","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;4-Headache;9-Rash;10-Red eyes;12-Bleeding;88-Other",21,"1-Yes","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,2,,"3-Many times",0,"88-N/A",500,"1-LD","6-Domestic services","N","N","N","Y","2-Several times","Y",2,5,2,1,1,1,2,,"Y","N","0-None"
,"12/30/2014 14:46:18",2018,"Z1100-Paynesville",2018125,,"1-Male",20,25,"5-Some high school","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",3,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",3,"2-Religious leaders;4-NGOs","1-Agree","0-Disagree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","5-Unskilled manual","N","Y","N","N","0-Never","N",0,0,0,0,1,1,0,,"Y","N","0-None"
,"12/30/2014 12:08:52",2018,"Z1100-Paynesville",2018143,,"1-Male",64,6,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",2000,"1-LD","88-Other","N","Y","Y","Y","0-Never","N",0,0,0,4,2,3,0,,"","",""
,"12/30/2014 13:56:27",2018,"Z1100-Paynesville",2018124,,"2-Female",43,13,"0-None","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;88-Other",21,"0-No","Y","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","5-Unskilled manual","N","N","N","N","0-Never","N",0,0,0,0,1,1,0,,"Y","N","0-None"
,"12/30/2014 9:39:43",2018,"Z1100-Paynesville",2018121,,"2-Female",32,16,"5-Some high school","1-Christian","","","","",,"5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes;88-Other",3,"1-Yes","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"0-No","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"3-Many times",0,"88-N/A",6000,"1-LD","6-Domestic services","Y","Y","Y","Y","3-Many times","Y",0,4,2,0,2,2,0,,"Y","N","0-None"
,"12/30/2014 11:32:44",2018,"Z1100-Paynesville",2018173,,"1-Male",28,7,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,2,,"3-Many times",2000,"1-LD",100,"2-USD","1-Professional","Y","Y","Y","Y","0-Never","Y",2,2,0,0,2,2,0,,"Y","N","0-None;88-Other"
,"12/30/2014 16:07:26",2018,"Z1100-Paynesville",2018178,,"1-Male",33,6,"7-Some university","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes;88-Other",14,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","97-Do not know","0-No",0,0,,"3-Many times",2000,"1-LD",200,"2-USD","1-Professional","Y","Y","Y","Y","1-Just once or twice","Y",1,2,0,3,3,3,0,,"Y","N","0-None;88-Other"
,"12/30/2014 13:42:33",2018,"Z1100-Paynesville",2018144,,"1-Male",51,18,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;5-Joint and muscle pain;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"3-Many times",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",2100,"1-LD",6000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",5,5,0,5,2,3,0,,"N","Y","3-Spouse present"
,"12/30/2014 10:01:14",2019,"Z1100-Paynesville",2019151,,"1-Male",32,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising;15-Chills",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","1-Yes","0-No",0,0,,"2-Several times",1000,"1-LD",1800,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",3,3,1,7,1,2,0,,"Y","N","0-None"
,"12/30/2014 12:59:02",2019,"Z1100-Paynesville",2019154,,"2-Female",25,5,"2-Completed ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising;15-Chills;16-Weight loss",21,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",800,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",7,7,3,7,1,2,0,,"Y","N","0-None"
,"12/30/2014 10:39:38",2019,"Z1100-Paynesville",2019111,,"2-Female",32,7,"6-Completed high school","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;12-Bleeding;18-Cough",21,"1-Yes","N","Y","Y","N",,"3-Many times",1,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",2,"1-Community leaders;3-Community members","1-Agree","97-Do not know","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,4,,"3-Many times",500,"1-LD",1050,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",2,5,2,4,1,1,2,,"Y","N","2-Child present;4-Friend present"
,"12/30/2014 10:40:52",2019,"Z1100-Paynesville",2019162,,"1-Male",24,2,"6-Completed high school","1-Christian","0-No","","1-Yes","9-Margibi",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","Y","N","N","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,1,,"0-Never",1400,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/30/2014 9:40:24",2019,"Z1100-Paynesville",2019161,,"1-Male",26,11,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes;15-Chills",3,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","Y","N","Y","",,"1-Yes","0-No",0,"88-Other","1-Agree","0-Disagree","1-Yes","0-No","1-Yes","0-No","0-No",0,3,,"1-Just once or twice",1100,"1-LD",50,"2-USD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,1,0,2,2,2,0,,"Y","N","0-None"
,"12/30/2014 11:23:15",2019,"Z1100-Paynesville",2019112,,"2-Female",23,11,"2-Completed ABC","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes;12-Bleeding;18-Cough",12,"1-Yes","Y","Y","Y","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","97-Do not know","97-Do not know",0,8,,"3-Many times",100,"1-LD",2500,"1-LD","0-None","N","N","Y","Y","3-Many times","Y",3,4,3,4,1,2,2,,"Y","N","2-Child present;4-Friend present"
,"12/30/2014 11:12:08",2019,"Z1100-Paynesville",2019193,,"2-Female",50,11,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;4-Headache;7-Weakness;10-Red eyes",21,"0-No","N","N","N","N",,"0-Never",3,"Y","Y","","","N","","","",,"","",,"","","","","","","","",,,,"4-Always",400,"1-LD",6000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",7,7,4,7,1,2,3,,"","",""
,"12/30/2014 12:22:28",2019,"Z1100-Paynesville",2019164,,"2-Female",28,2,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;9-Rash",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,12,,"0-Never",6000,"1-LD",10000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,1,0,0,3,3,0,,"Y","N","0-None"
,"12/30/2014 10:54:38",2019,"Z1100-Paynesville",2019132,,"1-Male",54,5,"3-Some junior high","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;10-Red eyes",2,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",0,"1-LD","88-Other","N","N","N","N","1-Just once or twice","N",0,0,0,2,1,2,0,,"Y","N","0-None"
,"12/30/2014 10:03:10",2019,"Z1100-Paynesville",2019131,,"2-Female",28,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"2-Several times",1,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"1-Just once or twice",0,"88-N/A",400,"1-LD","4-Skilled manual","Y","Y","N","Y","1-Just once or twice","Y",2,2,0,1,1,2,0,,"Y","N","0-None"
,"12/30/2014 10:37:48",2019,"Z1100-Paynesville",2019192,,"2-Female",24,5,"4-Completed junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;6-Sore throat",0,"0-No","N","Y","N","N",,"4-Always",0,"","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",200,"1-LD",600,"1-LD","3-Sales and services","N","Y","N","Y","4-Always","Y",0,7,0,7,1,2,0,,"Y","N","0-None"
,"12/30/2014 11:30:37",2019,"Z1100-Paynesville",2019163,,"2-Female",43,10,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","Y","N","N","",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",800,"1-LD",2500,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",0,2,0,1,2,2,0,,"Y","N","0-None"
,"12/30/2014 11:00:35",2019,"Z1100-Paynesville",2019152,,"2-Female",39,6,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",7,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2500,"1-LD",4000,"1-LD","3-Sales and services","Y","Y","N","Y","3-Many times","Y",7,7,1,3,2,2,0,,"Y","N","0-None"
,"12/30/2014 12:01:27",2019,"Z1100-Paynesville",2019153,,"2-Female",30,4,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"0-No","N","Y","Y","N",,"3-Many times",1,"N","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",5,"1-LD",3000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",6,6,2,2,1,2,6,,"Y","N","0-None"
,"12/30/2014 12:11:40",2019,"Z1100-Paynesville",2019113,,"2-Female",19,7,"3-Some junior high","1-Christian","","","","",,"97-Dont know","97-Does not know",7,"0-No","N","Y","Y","N",,"1-Just once or twice",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",1,"1-Community leaders;2-Religious leaders","1-Agree","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,3,,"3-Many times",1500,"1-LD",3500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,4,2,4,1,2,3,,"Y","N","2-Child present;4-Friend present"
,"12/30/2014 11:51:52",2019,"Z1100-Paynesville",2019133,,"1-Male",38,4,"6-Completed high school","2-Muslim","","","","",,"88-Other","97-Does not know",2,"1-Yes","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","97-Do not know",0,0,,"2-Several times",300,"1-LD",600,"1-LD","88-Other","N","N","N","N","2-Several times","Y",2,2,0,2,1,2,0,,"Y","N","0-None"
,"12/30/2014 9:55:08",2019,"Z1100-Paynesville",2019191,,"2-Female",27,13,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;7-Weakness;10-Red eyes",0,"0-No","N","Y","N","N",,"0-Never",5,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",200,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","N","N","0-Never","N",3,7,0,0,1,3,0,,"Y","N","0-None"
,"12/30/2014 12:24:41",2019,"Z1100-Paynesville",2019134,,"1-Male",64,5,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;8-Stomach pain;9-Rash;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,0,,"2-Several times",0,"88-N/A",350,"1-LD","88-Other","N","N","N","N","2-Several times","Y",3,2,0,2,2,2,0,,"Y","N","0-None"
,"12/30/2014 12:09:39",2019,"Z1100-Paynesville",2019194,,"2-Female",24,10,"6-Completed high school","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",4,"1-Yes","N","Y","N","N",,"4-Always",2,"Y","Y","","","N","","","",,"0-No","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",400,"1-LD",700,"1-LD","3-Sales and services","N","Y","N","Y","0-Never","Y",14,7,0,7,1,3,0,,"Y","N","2-Child present;4-Friend present"
,"12/30/2014 12:58:12",2019,"Z1100-Paynesville",2019114,,"2-Female",30,7,"3-Some junior high","1-Christian","1-Yes","2-Bong","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes;12-Bleeding;18-Cough",10,"0-No","N","Y","Y","Y",,"3-Many times",4,"Y","N","Y","","Y","N","Y","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,4,,"3-Many times",1400,"1-LD",4000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",0,7,0,7,1,1,3,,"Y","N","2-Child present"
,"1/4/2015 9:27:10",2020,"Z1100-Paynesville",2020131,,"2-Female",58,2,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","88-Other",2,"1-Yes","N","Y","","",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",200,"1-LD",700,"1-LD","88-Other","N","Y","N","Y","2-Several times","Y",3,3,0,0,1,2,0,,"Y","N","0-None"
,"1/4/2015 11:34:14",2020,"Z1100-Paynesville",2020152,,"1-Male",40,19,"6-Completed high school","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2100,"1-LD",4000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,2,7,1,2,0,,"Y","N","0-None"
,"1/4/2015 9:23:12",2020,"Z1100-Paynesville",2020191,,"1-Male",43,14,"6-Completed high school","1-Christian","1-Yes","11-Montserrado","0-No","",,"1-Preparing or eating bush mea;4-Man woman business;6-Contact with infected surfac","1-Vomiting;5-Joint and muscle pain;7-Weakness;9-Rash",21,"1-Yes","N","Y","N","N",,"0-Never",6,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",,"88-N/A","0-None","N","N","N","N","3-Many times","Y",0,0,0,5,1,2,0,,"Y","N","0-None"
,"1/4/2015 11:54:26",2020,"Z1100-Paynesville",2020113,,"2-Female",27,5,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",2,"0-No","Y","Y","Y","Y",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",2,"1-Community leaders;3-Community members;4-NGOs","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,4,,"3-Many times",50,"1-LD",150,"1-LD","0-None","N","N","Y","Y","3-Many times","Y",3,4,4,3,1,1,3,,"Y","N","2-Child present"
,"1/4/2015 11:03:03",2020,"Z1100-Paynesville",2020112,,"2-Female",33,10,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;12-Bleeding",7,"1-Yes","N","Y","Y","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"3-Many times",350,"1-LD",1400,"1-LD","88-Other","Y","Y","Y","Y","3-Many times","Y",5,2,2,2,1,1,5,,"Y","N","2-Child present"
,"1/4/2015 12:17:40",2020,"Z1100-Paynesville",2020134,,"2-Female",37,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;7-Weakness;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",250,"1-LD",2000,"1-LD","88-Other","N","Y","N","N","1-Just once or twice","Y",3,2,0,0,1,2,0,,"Y","N","88-Other"
,"1/4/2015 10:03:36",2020,"Z1100-Paynesville",2020192,,"1-Male",33,6,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;6-Sore throat;8-Stomach pain",21,"0-No","N","Y","Y","N",,"0-Never",5,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",400,"1-LD","0-None","N","N","N","N","0-Never","Y",0,0,0,7,1,3,0,,"Y","N","2-Child present;3-Spouse present;88-Other"
,"1/4/2015 12:21:38",2020,"Z1100-Paynesville",2020213,,"1-Male",55,5,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;9-Rash;10-Red eyes;12-Bleeding",8,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",1,"5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",10,"2-USD",350,"2-USD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",2,4,0,2,2,3,1,,"Y","N","0-None"
,"1/4/2015 12:51:19",2020,"Z1100-Paynesville",2020461,,"1-Male",52,5,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;10-Red eyes;88-Other",21,"1-Yes","N","Y","N","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",3000,"1-LD","0-None","Y","Y","N","N","1-Just once or twice","Y",2,2,0,0,1,2,0,,"Y","N","88-Other"
,"1/4/2015 11:19:45",2020,"Z1100-Paynesville",2020212,,"1-Male",32,9,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;2-Religious leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1700,"1-LD",200,"2-USD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",3,4,1,3,1,3,2,,"Y","N","0-None"
,"1/4/2015 10:19:09",2020,"Z1100-Paynesville",2020211,,"1-Male",42,5,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;9-Rash;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",14,0,,"1-Just once or twice",500,"1-LD",5000,"1-LD","5-Unskilled manual","Y","Y","N","Y","2-Several times","N",0,2,0,4,2,3,0,,"Y","N","0-None"
,"1/4/2015 11:14:42",2020,"Z1100-Paynesville",2020133,,"2-Female",39,5,"2-Completed ABC","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;7-Weakness;10-Red eyes;88-Other",2,"1-Yes","Y","Y","Y","N",,"2-Several times",2,"Y","Y","","","N","","","",,"0-No","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",1000,"1-LD","88-Other","Y","Y","N","N","3-Many times","Y",2,3,0,3,1,2,0,,"Y","N","0-None"
,"1/4/2015 10:43:34",2020,"Z1100-Paynesville",2020193,,"1-Male",38,21,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;5-Joint and muscle pain;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",5,"Y","Y","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",200,"1-LD",6000,"1-LD","0-None","N","N","N","N","4-Always","Y",0,0,0,5,1,2,0,,"Y","N","0-None"
,"1/4/2015 11:21:01",2020,"Z1100-Paynesville",2020194,,"2-Female",50,12,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;8-Stomach pain",21,"1-Yes","N","Y","Y","N",,"4-Always",6,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",500,"1-LD",2500,"1-LD","1-Professional","Y","N","N","N","2-Several times","Y",3,3,0,7,2,3,0,,"Y","N","2-Child present;4-Friend present"
,"1/4/2015 13:13:55",2020,"Z1100-Paynesville",2020154,,"1-Male",33,17,"3-Some junior high","1-Christian","1-Yes","12-Nimba","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"0-Never",8,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1500,"1-LD",20,"2-USD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,1,7,1,3,3,,"Y","N","0-None"
,"1/4/2015 11:58:56",2020,"Z1100-Paynesville",2020161,,"1-Male",18,3,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;6-Sore throat;9-Rash;11-Hiccups",21,"1-Yes","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",500,"1-LD",600,"1-LD","0-None","N","N","N","N","2-Several times","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"1/4/2015 10:01:51",2020,"Z1100-Paynesville",2020111,,"1-Male",34,7,"6-Completed high school","1-Christian","0-No","","0-No","",,"97-Dont know","97-Does not know",3,"0-No","N","Y","Y","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"0-No","0-No",0,"","97-Do not know","1-Agree","0-No","0-No","1-Yes","97-Do not know","97-Do not know",2,6,,"2-Several times",400,"1-LD",750,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",3,4,4,2,1,2,3,,"Y","N","2-Child present;3-Spouse present"
,"1/4/2015 10:16:29",2020,"Z1100-Paynesville",2020132,,"2-Female",28,2,"0-None","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness",4,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",2000,"1-LD","88-Other","Y","Y","N","N","1-Just once or twice","Y",2,2,0,1,99,99,0,,"Y","N","0-None"
,"1/4/2015 12:44:30",2020,"Z1100-Paynesville",2020114,,"2-Female",30,8,"2-Completed ABC","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes;12-Bleeding;18-Cough",7,"0-No","Y","Y","Y","N",,"3-Many times",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","1-Yes",0,0,,"3-Many times",500,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,5,3,4,1,2,3,,"Y","N","2-Child present;4-Friend present"
,"1/4/2015 10:18:59",2020,"Z1100-Paynesville",2020151,,"1-Male",52,7,"2-Completed ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",800,"1-LD",3500,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",7,7,1,7,1,2,0,,"Y","N","0-None"
,"1/4/2015 12:24:34",2020,"Z1100-Paynesville",2020153,,"1-Male",44,7,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",3,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",600,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,3,7,1,2,2,,"Y","Y","0-None"
,"1/5/2015 16:15:05",2021,"Z1100-Paynesville",2021162,,"1-Male",27,2,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;9-Rash;10-Red eyes;15-Chills",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",1,"6-Community group","1-Agree","0-Disagree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",2000,"1-LD",6000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"1/5/2015 16:22:47",2021,"Z1100-Paynesville",2021213,,"1-Male",40,7,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",2,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","1-Yes","0-No",2,1,,"3-Many times",500,"1-LD",2000,"1-LD","3-Sales and services","N","Y","N","Y","3-Many times","Y",2,3,0,4,1,2,1,,"Y","N","0-None"
,"1/6/2015 10:54:36",2021,"Z1100-Paynesville",2021164,,"2-Female",26,5,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes",3,"0-No","N","Y","Y","N",,"1-Just once or twice",1,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,12,,"1-Just once or twice",2000,"1-LD",4500,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,2,0,1,1,2,0,,"Y","N","0-None"
,"1/5/2015 12:56:16",2021,"Z1100-Paynesville",2021212,,"2-Female",34,9,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;10-Red eyes;18-Cough",21,"0-No","N","Y","Y","Y",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",600,"1-LD",1300,"1-LD","3-Sales and services","N","Y","Y","Y","4-Always","Y",2,6,0,4,1,3,2,,"Y","N","88-Other"
,"1/5/2015 17:37:30",2021,"Z1100-Paynesville",2021152,,"2-Female",39,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue",21,"1-Yes","N","Y","Y","N",,"3-Many times",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",3500,"1-LD",4900,"1-LD","2-Clerical","Y","Y","N","Y","3-Many times","Y",6,5,0,0,2,3,0,,"Y","N","0-None"
,"1/6/2015 10:07:03",2021,"Z1100-Paynesville",2021194,,"2-Female",32,10,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;5-Joint and muscle pain;8-Stomach pain",21,"0-No","Y","Y","Y","Y",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",2000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",20,5,3,5,2,3,7,,"Y","N","0-None"
,"1/6/2015 11:41:41",2021,"Z1100-Paynesville",2021165,,"1-Male",32,2,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;9-Rash;10-Red eyes",5,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",3,"6-Community group","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,4,,"0-Never",1000,"1-LD",10000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,0,0,0,99,99,99,,"Y","N","0-None"
,"1/5/2015 11:56:15",2021,"Z1100-Paynesville",2021211,,"2-Female",34,8,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding",3,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;5-Government agency","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",800,"1-LD",3000,"1-LD","3-Sales and services","N","Y","N","Y","3-Many times","Y",3,4,3,4,1,2,2,,"Y","Y","4-Friend present"
,"1/6/2015 10:47:53",2021,"Z1100-Paynesville",2021195,,"2-Female",24,10,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;4-Headache;7-Weakness",21,"1-Yes","N","N","N","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"1-LD",5000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",7,3,0,7,1,3,0,,"Y","Y","2-Child present;3-Spouse present"
,"1/6/2015 12:13:36",2021,"Z1100-Paynesville",2021134,,"2-Female",35,3,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;4-Headache;10-Red eyes;12-Bleeding",3,"0-No","Y","Y","Y","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,0,,"2-Several times",0,"88-N/A",500,"1-LD","88-Other","N","N","N","N","2-Several times","Y",4,2,0,2,1,2,0,,"Y","N","2-Child present"
,"1/5/2015 16:57:23",2021,"Z1100-Paynesville",2021193,,"2-Female",49,10,"0-None","1-Christian","0-No","","0-No","",,"97-Dont know","97-Does not know",0,"0-No","N","Y","N","N",,"3-Many times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",500,"1-LD","0-None","N","N","N","N","0-Never","Y",7,7,0,0,1,1,0,,"Y","N","0-None"
,"1/5/2015 16:24:46",2021,"Z1100-Paynesville",2021192,,"1-Male",43,4,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;7-Weakness",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",3,0,,"0-Never",0,"1-LD",500,"1-LD","4-Skilled manual","Y","Y","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/6/2015 10:05:41",2021,"Z1100-Paynesville",202112,,"2-Female",23,4,"3-Some junior high","1-Christian","","","","",,"97-Dont know","1-Vomiting;4-Headache;12-Bleeding",0,"0-No","Y","Y","Y","Y",,"2-Several times",1,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"","",""
,"1/5/2015 16:24:28",2021,"Z1100-Paynesville",2021151,,"1-Male",43,5,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"3-Many times",2,"N","","","","Y","Y","","6-Family or self",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,2,7,1,3,1,,"Y","N","0-None"
,"1/5/2015 15:37:05",2021,"Z1100-Paynesville",2021131,,"2-Female",49,9,"0-None","1-Christian","0-No","","0-No","",,"97-Dont know","97-Does not know",3,"0-No","N","Y","Y","N",,"1-Just once or twice",1,"Y","N","Y","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",300,"1-LD",500,"1-LD","88-Other","N","N","Y","Y","1-Just once or twice","Y",4,4,0,2,1,2,0,,"Y","N","88-Other"
,"1/6/2015 11:41:36",2021,"Z1100-Paynesville",2021196,,"1-Male",43,10,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;4-Headache;6-Sore throat",0,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",400,"1-LD",9000,"1-LD","3-Sales and services","N","Y","N","N","2-Several times","Y",0,7,0,1,1,3,0,,"Y","N","0-None"
,"1/5/2015 15:20:16",2021,"Z1100-Paynesville",2021161,,"2-Female",23,4,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;7-Weakness;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"6-Community group","1-Agree","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,3,,"2-Several times",800,"1-LD",4000,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,2,0,3,2,2,0,,"Y","N","0-None"
,"1/5/2015 15:39:04",2021,"Z1100-Paynesville",2021191,,"2-Female",40,15,"1-Some ABC","1-Christian","1-Yes","4-Grand Bassa","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;11-Hiccups",0,"0-No","N","Y","N","N",,"0-Never",3,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",0,"1-LD",300,"1-LD","3-Sales and services","N","Y","Y","N","2-Several times","Y",0,7,0,0,1,3,0,,"Y","N","2-Child present;4-Friend present"
,"1/6/2015 9:59:47",2021,"Z1100-Paynesville",2021163,,"1-Male",42,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"6-Community group","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",13,6,,"0-Never",2500,"1-LD",6000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"1/6/2015 10:57:05",2021,"Z1100-Paynesville",2021133,,"2-Female",42,9,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes",5,"1-Yes","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",150,"1-LD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",5,3,0,0,1,1,0,,"Y","N","0-None"
,"12/28/2014 9:58:03",2022,"Z1100-Paynesville",2022112,,"2-Female",35,6,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding;18-Cough",21,"0-No","Y","Y","Y","N",,"2-Several times",1,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",2,"1-Community leaders;4-NGOs;5-Government agency","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",20,"2-USD",50,"2-USD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,4,3,1,3,4,,"Y","N","2-Child present"
,"12/28/2014 9:13:44",2022,"Z1100-Paynesville",2022192,,"2-Female",56,17,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;6-Sore throat",0,"1-Yes","N","Y","Y","Y",,"0-Never",7,"Y","N","Y","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",200,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","N","N","4-Always","Y",7,6,0,4,1,3,0,,"Y","N","2-Child present;4-Friend present"
,"12/28/2014 11:05:01",2022,"Z1100-Paynesville",2022153,,"1-Male",39,32,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain",21,"0-No","N","Y","Y","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",4,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",5000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,2,7,1,2,1,,"Y","N","88-Other"
,"12/28/2014 10:01:50",2022,"Z1100-Paynesville",2022152,,"2-Female",25,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;16-Weight loss",0,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",3000,"1-LD",5000,"1-LD","0-None","Y","Y","Y","Y","2-Several times","Y",7,7,2,2,1,2,1,,"Y","N","0-None"
,"12/28/2014 8:18:11",2022,"Z1100-Paynesville",2022,,"1-Male",31,13,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;10-Red eyes",21,"0-No","N","Y","Y","N",,"4-Always",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","1-Yes","0-No",0,2,,"4-Always",0,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","Y","Y","4-Always","Y",7,7,0,7,2,2,7,,"Y","N","0-None"
,"12/28/2014 9:10:38",2022,"Z1100-Paynesville",2022111,,"1-Male",19,8,"5-Some high school","1-Christian","1-Yes","6-Grand Gedeh","0-No","",,"97-Dont know","97-Does not know",8,"0-No","Y","Y","N","N",,"2-Several times",2,"Y","N","Y","","Y","N","Y","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,4,,"3-Many times",500,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",3,5,2,4,1,3,3,,"Y","N","0-None"
,"12/28/2014 10:39:41",2022,"Z1100-Paynesville",2022113,,"2-Female",20,10,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes",21,"1-Yes","Y","Y","N","N",,"3-Many times",6,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",1000,"1-LD",7000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,5,5,5,1,2,2,,"Y","N","2-Child present"
,"12/28/2014 9:53:30",2022,"Z1100-Paynesville",2022193,,"2-Female",41,8,"0-None","2-Muslim","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;5-Joint and muscle pain;10-Red eyes",21,"0-No","N","Y","Y","N",,"4-Always",2,"N","","","","N","","","",,"1-Yes","1-Yes",4,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",200,"1-LD",50,"2-USD","3-Sales and services","N","Y","N","N","4-Always","N",7,7,0,7,1,2,0,,"Y","Y","2-Child present;4-Friend present"
,"12/28/2014 7:58:51",2022,"Z1100-Paynesville",2022211,,"1-Male",40,4,"3-Some junior high","1-Christian","0-No","","1-Yes","2-Bong",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding;15-Chills",21,"1-Yes","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;3-Community members","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",2000,"1-LD",6000,"1-LD","3-Sales and services","N","N","N","Y","2-Several times","N",1,2,0,2,1,2,2,,"Y","N","4-Friend present;88-Other"
,"12/28/2014 9:34:16",2022,"Z1100-Paynesville",2022162,,"2-Female",29,4,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",1,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"2-Several times",1200,"1-LD",2000,"1-LD","1-Professional","N","Y","N","N","0-Never","Y",0,2,0,3,2,3,0,,"Y","N","0-None"
,"12/28/2014 11:28:24",2022,"Z1100-Paynesville",2022114,,"2-Female",37,7,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","97-Does not know",6,"0-No","Y","Y","Y","N",,"2-Several times",1,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","97-Do not know",0,0,,"3-Many times",2100,"1-LD",4500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,4,0,4,1,3,3,,"Y","N","2-Child present"
,"12/28/2014 8:57:16",2022,"Z1100-Paynesville",2022151,,"2-Female",35,12,"2-Completed ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes",21,"0-No","N","Y","Y","N",,"1-Just once or twice",1,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",4000,"1-LD",2500,"1-LD","3-Sales and services","N","Y","Y","Y","3-Many times","Y",7,7,1,7,2,3,2,,"Y","N","0-None"
,"12/28/2014 9:58:49",2022,"Z1100-Paynesville",2022132,,"1-Male",48,13,"6-Completed high school","1-Christian","0-No","","1-Yes","4-Grand Bassa",,"88-Other","1-Vomiting;3-Diarrhea;10-Red eyes;88-Other",21,"0-No","Y","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",350,"1-LD",3000,"1-LD","4-Skilled manual","N","Y","N","N","1-Just once or twice","N",0,0,0,2,1,3,0,,"Y","N","0-None"
,"12/28/2014 11:29:27",2022,"Z1100-Paynesville",2022134,,"1-Male",35,4,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","2-Fever;8-Stomach pain;10-Red eyes",2,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",250,"1-LD",500,"1-LD","0-None","N","Y","N","Y","1-Just once or twice","Y",2,2,0,1,2,3,0,,"Y","N","0-None"
,"12/28/2014 8:36:26",2022,"Z1100-Paynesville",2022161,,"1-Male",26,2,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,4,,"3-Many times",0,"1-LD",1000,"1-LD","1-Professional","Y","N","N","N","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"12/28/2014 9:13:33",2022,"Z1100-Paynesville",2022131,,"1-Male",42,5,"3-Some junior high","1-Christian","","","","",,"6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",3,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",300,"1-LD",4000,"1-LD","5-Unskilled manual","Y","Y","N","Y","0-Never","Y",2,2,0,3,1,3,1,,"Y","N","0-None"
,"12/28/2014 10:42:21",2022,"Z1100-Paynesville",2022133,,"1-Male",44,4,"6-Completed high school","2-Muslim","1-Yes","12-Nimba","1-Yes","12-Nimba",,"6-Contact with infected surfac","1-Vomiting;3-Diarrhea",21,"0-No","Y","Y","N","Y",,"1-Just once or twice",3,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",3000,"1-LD",5000,"1-LD","3-Sales and services","N","Y","N","N","1-Just once or twice","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/28/2014 10:45:19",2022,"Z1100-Paynesville",2022194,,"1-Male",35,8,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;6-Sore throat;7-Weakness",21,"0-No","N","Y","Y","N",,"4-Always",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",3,0,,"4-Always",400,"1-LD",1700,"1-LD","3-Sales and services","N","Y","N","Y","4-Always","Y",0,7,0,5,1,2,0,,"Y","N","2-Child present;3-Spouse present"
,"12/28/2014 9:56:55",2022,"Z1100-Paynesville",2022212,,"2-Female",23,5,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;4-Headache;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",5,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;6-Community group","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",2600,"1-LD","3-Sales and services","N","Y","N","Y","1-Just once or twice","Y",2,3,1,2,1,3,1,,"Y","N","4-Friend present;88-Other"
,"12/28/2014 10:25:32",2022,"Z1100-Paynesville",2022163,,"2-Female",30,5,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,2,,"2-Several times",1700,"1-LD",3000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,1,0,2,2,3,0,,"Y","N","0-None"
,"1/3/2015 13:40:29",2023,"Z1100-Paynesville",2023111,,"2-Female",45,10,"1-Some ABC","1-Christian","0-No","","0-No","",,"97-Dont know","97-Does not know",3,"0-No","Y","Y","Y","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",1,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",500,"1-LD",2000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",0,7,7,4,1,2,2,,"Y","N","2-Child present;3-Spouse present"
,"1/3/2015 15:10:40",2023,"Z1100-Paynesville",2023133,,"2-Female",40,6,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;97-Dont know","1-Vomiting;2-Fever;10-Red eyes;97-Does not know",2,"0-No","Y","Y","Y","N",,"2-Several times",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",500,"1-LD","0-None","N","N","N","N","3-Many times","Y",2,2,0,3,1,2,0,,"Y","N","2-Child present"
,"1/3/2015 14:10:51",2023,"Z1100-Paynesville",2023214,,"2-Female",54,12,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"0-No","0-No",3,"4-NGOs;5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",2000,"1-LD",8000,"1-LD","2-Clerical","Y","Y","Y","Y","2-Several times","Y",0,3,0,2,1,3,0,,"Y","N","88-Other"
,"1/3/2015 14:29:16",2023,"Z1100-Paynesville",2023132,,"2-Female",24,3,"6-Completed high school","1-Christian","","","","",,"6-Contact with infected surfac","1-Vomiting;3-Diarrhea;6-Sore throat;10-Red eyes",7,"0-No","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"88-N/A",3000,"1-LD","88-Other","N","N","N","N","1-Just once or twice","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"1/3/2015 12:50:28",2023,"Z1100-Paynesville",2023213,,"2-Female",25,5,"0-None","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes;12-Bleeding",21,"0-No","Y","Y","Y","Y",,"1-Just once or twice",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"4-Always",200,"1-LD",800,"1-LD","3-Sales and services","N","Y","Y","Y","3-Many times","Y",3,4,2,6,1,2,2,,"Y","N","2-Child present"
,"1/3/2015 15:21:38",2023,"Z1100-Paynesville",2023194,,"2-Female",40,20,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;5-Joint and muscle pain;8-Stomach pain",0,"0-No","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","0-None","N","N","N","N","0-Never","Y",0,0,0,0,1,1,0,,"Y","Y","2-Child present;88-Other"
,"1/3/2015 14:03:42",2023,"Z1100-Paynesville",2023192,,"2-Female",30,7,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;8-Stomach pain;9-Rash",0,"1-Yes","N","N","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",400,"1-LD","0-None","N","N","N","N","4-Always","Y",0,0,0,7,1,1,0,,"Y","N","0-None"
,"1/3/2015 14:40:18",2023,"Z1100-Paynesville",2023193,,"2-Female",27,11,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;3-Diarrhea;6-Sore throat;9-Rash",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",100,"2-USD","3-Sales and services","Y","Y","N","N","0-Never","Y",7,0,4,7,0,0,0,,"Y","N","0-None"
,"1/3/2015 14:18:34",2023,"Z1100-Paynesville",2023112,,"1-Male",58,4,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes;12-Bleeding;18-Cough",21,"1-Yes","Y","Y","N","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",2,"1-Community leaders;3-Community members","97-Do not know","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",350,"1-LD",700,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",2,5,4,4,1,1,3,,"Y","N","2-Child present;4-Friend present"
,"1/3/2015 13:31:41",2023,"Z1100-Paynesville",2023161,,"2-Female",23,4,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"1-Just once or twice",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"1-Just once or twice",1000,"1-LD",2500,"1-LD","3-Sales and services","N","N","Y","N","1-Just once or twice","Y",0,3,0,3,99,99,99,,"Y","N","0-None"
,"1/3/2015 11:29:43",2023,"Z1100-Paynesville",2023212,,"1-Male",38,8,"7-Some university","1-Christian","1-Yes","3-Gbarpolu","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;6-Sore throat;8-Stomach pain;10-Red eyes;11-Hiccups;12-Bleeding",3,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",800,"1-LD",5000,"1-LD","1-Professional","Y","Y","N","N","3-Many times","Y",0,3,0,2,1,2,0,,"Y","N","88-Other"
,"1/3/2015 14:36:34",2023,"Z1100-Paynesville",2023152,,"1-Male",26,3,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1250,"1-LD",1500,"1-LD","3-Sales and services","N","Y","Y","N","3-Many times","Y",6,6,0,6,2,2,0,,"Y","Y","0-None"
,"1/3/2015 14:59:38",2023,"Z1100-Paynesville",2023113,,"2-Female",29,7,"0-None","1-Christian","","","","",,"","",,"","","","","",,"2-Several times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,6,,"3-Many times",400,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",3,4,4,4,1,2,3,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"1/3/2015 13:04:48",2023,"Z1100-Paynesville",2023191,,"1-Male",33,15,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;4-Headache;7-Weakness;11-Hiccups",1,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"1-LD",0,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/3/2015 16:04:58",2023,"Z1100-Paynesville",2023114,,"2-Female",26,10,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;7-Weakness;12-Bleeding",21,"1-Yes","N","Y","N","N",,"3-Many times",1,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,2,,"3-Many times",5,"2-USD",20,"2-USD","88-Other","Y","Y","Y","Y","3-Many times","Y",0,7,2,3,1,2,0,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"1/3/2015 15:27:48",2023,"Z1100-Paynesville",2023153,,"1-Male",52,15,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats","88-Other",3,"0-No","N","Y","N","N",,"0-Never",5,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",2000,"1-LD","4-Skilled manual","Y","Y","N","N","3-Many times","Y",7,7,0,6,1,1,0,,"Y","N","0-None"
,"1/3/2015 13:43:53",2023,"Z1100-Paynesville",2023131,,"2-Female",45,6,"3-Some junior high","1-Christian","0-No","","0-No","",,"88-Other","1-Vomiting;2-Fever;4-Headache",21,"0-No","Y","Y","Y","N",,"2-Several times",2,"Y","N","Y","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",300,"1-LD","88-Other","N","N","N","N","2-Several times","Y",2,2,0,2,2,2,0,,"Y","N","0-None"
,"1/3/2015 14:22:11",2023,"Z1100-Paynesville",2023162,,"2-Female",46,7,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;6-Sore throat;7-Weakness;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,6,,"0-Never",4000,"1-LD",6000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"1/3/2015 13:40:15",2023,"Z1100-Paynesville",2023151,,"1-Male",35,5,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising;15-Chills",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","Y","N","Y","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",1000,"1-LD",1500,"1-LD","1-Professional","Y","N","N","Y","3-Many times","Y",7,7,2,7,1,3,2,,"Y","N","0-None"
,"1/3/2015 10:26:44",2023,"Z1100-Paynesville",2023211,,"1-Male",60,23,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding",3,"1-Yes","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","0-No",4,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",300,"1-LD",1200,"1-LD","88-Other","N","Y","Y","Y","3-Many times","Y",3,4,2,3,1,2,2,,"Y","N","0-None"
,"12/28/2014 14:42:24",2024,"Z1100-Paynesville",2024105,,"1-Male",39,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",5,0,,"1-Just once or twice",0,"88-N/A",1000,"1-LD","5-Unskilled manual","N","N","N","Y","0-Never","N",0,0,0,0,2,2,0,,"N","N","0-None"
,"12/28/2014 13:36:32",2024,"Z1100-Paynesville",2024104,,"1-Male",26,6,"6-Completed high school","1-Christian","1-Yes","8-Lofa","0-No","",,"6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;8-Stomach pain",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","0-Disagree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",3700,"1-LD",10500,"1-LD","5-Unskilled manual","N","N","Y","Y","2-Several times","Y",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/28/2014 10:41:21",2024,"Z1100-Paynesville",2024181,,"1-Male",30,2,"2-Completed ABC","2-Muslim","","","","",,"1-Preparing or eating bush mea","3-Diarrhea;10-Red eyes",2,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",200,"1-LD",2000,"1-LD","4-Skilled manual","Y","Y","N","N","0-Never","N",0,0,0,0,2,4,99,,"Y","Y","3-Spouse present"
,"12/28/2014 11:39:56",2024,"Z1100-Paynesville",2024102,,"2-Female",25,6,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;12-Bleeding;18-Cough",21,"0-No","N","Y","Y","N",,"0-Never",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","0-Disagree","0-No","0-No","0-No","0-No","0-No",0,2,,"1-Just once or twice",2000,"1-LD",5000,"1-LD","3-Sales and services","N","Y","N","N","0-Never","Y",1,2,0,1,1,2,0,,"Y","N","0-None"
,"12/28/2014 12:52:33",2024,"Z1100-Paynesville",2024184,,"1-Male",36,8,"6-Completed high school","1-Christian","","","","",,"88-Other","1-Vomiting;4-Headache",21,"1-Yes","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",1000,"1-LD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",2,3,0,1,1,1,99,,"Y","N","0-None"
,"12/28/2014 14:19:38",2024,"Z1100-Paynesville",2024175,,"2-Female",32,13,"0-None","2-Muslim","1-Yes","8-Lofa","0-No","",,"97-Dont know","97-Does not know",2,"0-No","Y","Y","N","Y",,"0-Never",5,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","97-Do not know","1-Yes","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",2000,"1-LD",14000,"1-LD","3-Sales and services","N","N","N","N","3-Many times","Y",2,5,0,4,2,3,0,,"Y","N","0-None"
,"12/28/2014 10:50:04",2024,"Z1100-Paynesville",2024201,,"2-Female",47,7,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain",3,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",300,"1-LD",4000,"1-LD","3-Sales and services","Y","Y","N","N","2-Several times","Y",2,3,0,4,1,2,0,,"Y","N","0-None"
,"12/28/2014 11:38:40",2024,"Z1100-Paynesville",2024202,,"2-Female",32,6,"2-Completed ABC","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache",2,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"1-Just once or twice",250,"1-LD",500,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",3,7,4,1,1,2,0,,"N","Y","88-Other"
,"12/28/2014 11:25:36",2024,"Z1100-Paynesville",2024182,,"1-Male",22,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","2-Fever;4-Headache;8-Stomach pain",0,"0-No","N","Y","Y","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","0-Disagree","0-No","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","0-None","N","Y","N","N","2-Several times","Y",2,2,2,1,1,1,99,,"Y","Y","88-Other"
,"12/28/2014 10:33:04",2024,"Z1100-Paynesville",2024101,,"2-Female",41,2,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",0,"1-LD","0-None","N","N","N","N","3-Many times","Y",1,2,0,4,99,99,99,,"Y","N","0-None"
,"12/28/2014 13:19:52",2024,"Z1100-Paynesville",2024204,,"2-Female",26,18,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",2,"0-No","N","N","N","N",,"97-Dont know",0,"","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"97-Dont know",0,"1-LD",0,"1-LD","0-None","N","N","N","N","97-Dont know","N",0,0,0,0,0,0,0,,"N","Y","0-None"
,"12/28/2014 12:45:18",2024,"Z1100-Paynesville",2024103,,"2-Female",28,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","0-Disagree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"1-LD",2500,"1-LD","3-Sales and services","Y","Y","Y","Y","4-Always","Y",3,4,3,4,1,3,0,,"Y","N","0-None"
,"12/28/2014 12:27:30",2024,"Z1100-Paynesville",2024203,,"2-Female",22,9,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",2,"1-Yes","N","Y","Y","N",,"1-Just once or twice",1,"Y","Y","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",700,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,7,0,4,1,2,0,,"N","Y","2-Child present"
,"12/28/2014 12:57:12",2024,"Z1100-Paynesville",2024173,,"1-Male",41,6,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",2,1,,"3-Many times",4000,"1-LD",12000,"1-LD","4-Skilled manual","N","N","N","N","3-Many times","Y",3,5,1,5,1,3,0,,"Y","N","0-None"
,"12/28/2014 12:13:28",2024,"Z1100-Paynesville",2024183,,"1-Male",29,17,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","2-Fever",21,"1-Yes","N","Y","Y","Y",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",5000,"1-LD",7000,"1-LD","4-Skilled manual","N","N","N","N","1-Just once or twice","Y",0,0,0,0,2,3,99,,"Y","Y","2-Child present"
,"12/28/2014 12:05:01",2024,"Z1100-Paynesville",2024172,,"2-Female",24,12,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",1,0,,"3-Many times",5000,"1-LD",12000,"1-LD","0-None","N","N","Y","Y","3-Many times","Y",3,1,1,3,1,3,0,,"Y","N","0-None"
,"12/28/2014 11:13:56",2024,"Z1100-Paynesville",2024171,,"1-Male",56,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",9,"1-Yes","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"0-No","0-No",4,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",3000,"1-LD",50,"2-USD","1-Professional","Y","Y","Y","Y","3-Many times","Y",3,2,0,3,1,2,0,,"Y","N","0-None"
,"12/28/2014 15:23:54",2024,"Z1100-Paynesville",2024176,,"1-Male",42,4,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","N","Y",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",3000,"1-LD",12000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",3,2,0,5,1,2,0,,"Y","N","0-None"
,"12/28/2014 13:36:47",2024,"Z1100-Paynesville",2024174,,"1-Male",45,2,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",3,5,,"0-Never",2500,"1-LD",25,"2-USD","1-Professional","N","N","N","N","3-Many times","Y",2,3,0,5,1,3,2,,"Y","N","0-None"
,"12/29/2014 15:49:22",2025,"Z1100-Paynesville",2025128,,"2-Female",23,5,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",4,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",5000,"1-LD",6000,"1-LD","5-Unskilled manual","N","N","N","N","0-Never","N",2,7,0,0,2,2,0,,"Y","N","0-None"
,"12/29/2014 12:16:23",2025,"Z1100-Paynesville",2025143,,"1-Male",49,8,"6-Completed high school","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",500,"2-USD","4-Skilled manual","N","N","N","N","2-Several times","Y",4,14,0,7,1,2,4,,"Y","N","2-Child present"
,"12/29/2014 10:01:53",2025,"Z1100-Paynesville",2025141,,"2-Female",39,5,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","88-Other","N","N","N","N","0-Never","Y",0,3,0,2,2,2,0,,"N","Y","2-Child present"
,"12/29/2014 14:50:29",2025,"Z1100-Paynesville",2025181,,"1-Male",25,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;88-Other","1-Vomiting;10-Red eyes",3,"1-Yes","N","Y","Y","N",,"0-Never",2,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","0-No",2,"3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",2500,"1-LD","5-Unskilled manual","Y","Y","N","N","2-Several times","Y",0,2,1,2,1,2,99,,"Y","Y","88-Other"
,"12/29/2014 14:18:27",2025,"Z1100-Paynesville",2025201,,"2-Female",23,4,"5-Some high school","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;6-Sore throat;12-Bleeding",3,"1-Yes","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","97-Do not know","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",300,"1-LD",2500,"1-LD","3-Sales and services","N","N","Y","Y","2-Several times","Y",2,7,0,3,1,2,2,,"Y","N","0-None"
,"12/29/2014 14:49:12",2025,"Z1100-Paynesville",2025101,,"1-Male",32,8,"4-Completed junior high","1-Christian","","","","",,"6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;11-Hiccups;15-Chills",1,"0-No","N","Y","N","Y",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;3-Community members;6-Community group","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",800,"1-LD",35,"2-USD","5-Unskilled manual","Y","Y","N","N","0-Never","Y",0,2,0,3,2,2,0,,"Y","N","0-None"
,"12/29/2014 11:06:47",2025,"Z1100-Paynesville",2025142,,"2-Female",35,7,"2-Completed ABC","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes",22,"0-No","N","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",300,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",2,6,0,7,2,2,0,,"N","Y","0-None"
,"12/29/2014 10:44:08",2025,"Z1100-Paynesville",2025122,,"2-Female",40,8,"0-None","1-Christian","","","","",,"4-Man woman business;88-Other","1-Vomiting;3-Diarrhea;4-Headache;9-Rash;12-Bleeding;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,3,0,1,2,2,,"Y","N","0-None"
,"12/29/2014 12:22:33",2025,"Z1100-Paynesville",2025124,,"2-Female",49,4,"0-None","1-Christian","1-Yes","6-Grand Gedeh","1-Yes","6-Grand Gedeh",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;88-Other",21,"1-Yes","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"3-Many times",350,"1-LD",350,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,0,1,1,1,2,,"Y","N","0-None"
,"12/29/2014 13:11:06",2025,"Z1100-Paynesville",2025125,,"1-Male",71,9,"4-Completed junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","2-Fever;3-Diarrhea;5-Joint and muscle pain;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"0-Never",3,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",13000,"1-LD","1-Professional","Y","Y","Y","Y","4-Always","Y",7,7,0,5,1,3,3,,"Y","N","0-None"
,"12/29/2014 14:11:24",2025,"Z1100-Paynesville",2025126,,"2-Female",34,4,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;12-Bleeding;88-Other",97,"0-No","Y","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",1200,"1-LD","2-Clerical","Y","Y","Y","Y","3-Many times","Y",3,3,3,2,1,2,2,,"Y","N","0-None"
,"12/29/2014 15:07:21",2025,"Z1100-Paynesville",2025127,,"2-Female",35,11,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;88-Other",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",1,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",7000,"1-LD","5-Unskilled manual","Y","Y","N","N","0-Never","Y",0,0,4,0,3,3,0,,"Y","N","0-None"
,"12/29/2014 10:02:10",2025,"Z1100-Paynesville",2025121,,"2-Female",29,4,"4-Completed junior high","1-Christian","1-Yes","4-Grand Bassa","1-Yes","4-Grand Bassa",,"1-Preparing or eating bush mea;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;9-Rash;10-Red eyes;12-Bleeding;88-Other",24,"0-No","N","Y","Y","N",,"3-Many times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",1700,"1-LD","5-Unskilled manual","Y","Y","Y","Y","0-Never","Y",3,0,0,3,1,1,0,,"Y","N","0-None"
,"12/29/2014 16:30:26",2025,"Z1100-Paynesville",2025145,,"1-Male",32,6,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"4-NGOs","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",4200,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",6,4,0,6,1,2,0,,"N","Y","0-None"
,"12/29/2014 15:36:19",2025,"Z1100-Paynesville",2025102,,"1-Male",26,12,"7-Some university","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash",21,"1-Yes","N","Y","N","N",,"2-Several times",3,"N","","","","Y","N","Y","",,"1-Yes","1-Yes",1,"4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","1-Yes",4,0,,"2-Several times",0,"88-N/A",750,"1-LD","88-Other","Y","Y","N","Y","1-Just once or twice","Y",4,7,0,7,1,2,0,,"Y","N","0-None"
,"12/29/2014 14:43:53",2025,"Z1100-Paynesville",2025171,,"1-Male",42,5,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",3000,"1-LD",16000,"1-LD","1-Professional","N","N","Y","Y","0-Never","N",0,0,0,2,3,3,0,,"Y","N","0-None"
,"12/29/2014 11:39:05",2025,"Z1100-Paynesville",2025123,,"1-Male",28,4,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;12-Bleeding;88-Other",8,"0-No","N","Y","N","N",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,1,,"3-Many times",500,"1-LD",40,"2-USD","1-Professional","Y","Y","Y","Y","3-Many times","Y",1,7,2,0,1,1,1,,"Y","N","0-None"
,"12/29/2014 15:11:58",2025,"Z1100-Paynesville",2025144,,"2-Female",28,3,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;4-Headache;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",7000,"1-LD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",3,6,0,5,2,3,2,,"N","Y","2-Child present"
,"12/29/2014 15:48:29",2025,"Z1100-Paynesville",2025202,,"1-Male",27,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain",7,"1-Yes","N","Y","N","Y",,"1-Just once or twice",0,"","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",300,"1-LD",500,"1-LD","2-Clerical","N","N","N","N","2-Several times","Y",2,7,0,3,1,2,0,,"Y","N","88-Other"
,"12/27/2014 15:54:01",2026,"Z1100-Paynesville",2026101,,"1-Male",44,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac","3-Diarrhea;4-Headache",18,"0-No","N","Y","N","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,3,,"3-Many times",3000,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","Y","Y","1-Just once or twice","Y",2,2,1,3,99,99,99,,"Y","N","0-None"
,"12/28/2014 11:25:32",2026,"Z1100-Paynesville",2026141,,"1-Male",22,5,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,1,,"2-Several times",4000,"1-LD",75,"2-USD","4-Skilled manual","N","Y","Y","Y","3-Many times","Y",0,2,0,7,1,1,3,,"Y","N","2-Child present"
,"1/6/2015 9:59:15",2026,"Z1100-Paynesville",2026129,,"1-Male",68,26,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness;9-Rash;10-Red eyes;88-Other",21,"1-Yes","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",600,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,4,0,4,1,2,3,,"","",""
,"12/28/2014 15:39:21",2026,"Z1100-Paynesville",2026128,,"2-Female",48,9,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;8-Stomach pain;88-Other",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","5-Unskilled manual","Y","Y","Y","Y","0-Never","Y",0,4,0,0,2,3,0,,"Y","N","0-None"
,"12/28/2014 14:16:13",2026,"Z1100-Paynesville",2026143,,"1-Male",51,12,"6-Completed high school","1-Christian","","","","",,"97-Dont know","2-Fever;3-Diarrhea;4-Headache",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",1500,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",0,7,0,5,1,3,0,,"Y","Y","2-Child present"
,"12/27/2014 17:30:11",2026,"Z1100-Paynesville",2026122,,"2-Female",24,6,"0-None","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","0-Disagree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",4000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,2,0,4,1,3,4,,"Y","N","0-None"
,"12/27/2014 17:30:33",2026,"Z1100-Paynesville",2026172,,"1-Male",36,11,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;3-Diarrhea;10-Red eyes",21,"1-Yes","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",2,0,,"3-Many times",3000,"1-LD",5000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",3,3,2,5,1,2,2,,"Y","N","0-None;88-Other"
,"12/28/2014 12:43:45",2026,"Z1100-Paynesville",2026142,,"2-Female",41,10,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",3,"Y","N","Y","","N","","","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",500,"1-LD",600,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",2,4,2,4,1,2,2,,"N","N","2-Child present"
,"12/27/2014 15:52:37",2026,"Z1100-Paynesville",2026201,,"2-Female",31,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;9-Rash;12-Bleeding",2,"1-Yes","N","Y","Y","N",,"1-Just once or twice",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"","97-Do not know","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",100,"1-LD",3000,"1-LD","3-Sales and services","N","Y","Y","Y","2-Several times","Y",3,7,1,3,1,2,0,,"Y","N","0-None"
,"12/28/2014 11:13:13",2026,"Z1100-Paynesville",2026123,,"1-Male",45,7,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;10-Red eyes;88-Other",21,"0-No","N","Y","Y","N",,"1-Just once or twice",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","1-Professional","Y","Y","N","N","3-Many times","Y",2,7,0,7,1,2,0,,"Y","N","0-None"
,"12/28/2014 13:55:45",2026,"Z1100-Paynesville",2026126,,"1-Male",42,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding;88-Other",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","5-Unskilled manual","Y","Y","N","N","0-Never","N",0,7,0,0,0,0,0,,"Y","N","0-None"
,"12/27/2014 17:28:25",2026,"Z1100-Paynesville",2026202,,"2-Female",46,8,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",2,"0-No","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",250,"1-LD",550,"1-LD","0-None","N","N","N","N","2-Several times","Y",2,7,0,3,1,1,0,,"Y","N","2-Child present"
,"12/28/2014 15:36:37",2026,"Z1100-Paynesville",2026144,,"1-Male",25,4,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","Y","N","N","",,"1-Yes","0-No",0,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",700,"1-LD",2000,"1-LD","88-Other","N","Y","N","Y","2-Several times","Y",3,6,0,4,1,3,0,,"Y","N","0-None"
,"12/28/2014 12:58:48",2026,"Z1100-Paynesville",2026125,,"1-Male",27,3,"3-Some junior high","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;88-Other",21,"0-No","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",0,"88-N/A","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,0,4,1,3,0,,"Y","N","0-None"
,"12/28/2014 12:03:51",2026,"Z1100-Paynesville",2026124,,"2-Female",24,8,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;88-Other",21,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",1000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",7,3,0,4,3,4,0,,"Y","N","0-None"
,"12/27/2014 16:11:50",2026,"Z1100-Paynesville",2026181,,"2-Female",20,15,"3-Some junior high","1-Christian","","","","",,"97-Dont know","1-Vomiting;3-Diarrhea;7-Weakness",0,"1-Yes","N","Y","Y","N",,"0-Never",14,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","0-Disagree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",2,6,2,3,1,2,99,,"Y","Y","88-Other"
,"12/27/2014 15:53:57",2026,"Z1100-Paynesville",2026121,,"2-Female",28,3,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",7,"0-No","Y","Y","Y","N",,"2-Several times",1,"N","","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","N","N","0-Never","N",0,0,2,0,4,4,0,,"Y","N","0-None"
,"12/28/2014 14:52:47",2026,"Z1100-Paynesville",2026127,,"2-Female",35,4,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",97,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",0,"88-N/A","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",1,7,0,7,2,2,0,,"Y","N","0-None"
,"12/27/2014 15:53:05",2026,"Z1100-Paynesville",2026171,,"1-Male",33,2,"7-Some university","1-Christian","1-Yes","15-Sinoe","1-Yes","15-Sinoe",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat",21,"1-Yes","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",2000,"1-LD",23000,"1-LD","1-Professional","N","N","Y","Y","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/27/2014 17:26:21",2026,"Z1100-Paynesville",2026102,,"1-Male",20,10,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",2,"0-No","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",50,"2-USD","0-None","N","N","Y","Y","2-Several times","N",0,3,2,4,1,3,1,,"Y","N","0-None"
,"12/27/2014 11:26:00",2027,"Z1100-Paynesville",2027173,,"2-Female",43,9,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes",6,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","97-Do not know","1-Yes","1-Yes","1-Yes","97-Do not know","0-No",2,0,,"3-Many times",3000,"1-LD",12000,"1-LD","1-Professional","Y","Y","N","N","3-Many times","Y",3,2,0,5,1,3,0,,"Y","N","0-None"
,"12/27/2014 12:06:06",2027,"Z1100-Paynesville",2027124,,"1-Male",47,4,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","2-Fever;3-Diarrhea;4-Headache;12-Bleeding;88-Other",3,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",160,"2-USD",200,"2-USD","1-Professional","N","Y","N","Y","0-Never","Y",3,5,0,2,2,3,0,,"Y","N","0-None"
,"12/27/2014 13:06:24",2027,"Z1100-Paynesville",2027175,,"1-Male",32,6,"6-Completed high school","1-Christian","","","","",,"","1-Vomiting;2-Fever;3-Diarrhea;8-Stomach pain;10-Red eyes",6,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","0-No","1-Yes","0-No","0-No","0-No",2,4,,"3-Many times",2000,"1-LD",200,"2-USD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",2,3,0,5,3,1,0,,"Y","N","0-None;88-Other"
,"12/27/2014 10:36:40",2027,"Z1100-Paynesville",2027122,,"2-Female",46,6,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes;88-Other",97,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",1000,"1-LD","5-Unskilled manual","Y","Y","Y","N","0-Never","N",0,7,0,0,1,1,0,,"Y","N","0-None"
,"12/27/2014 9:52:12",2027,"Z1100-Paynesville",2027121,,"1-Male",31,6,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;97-Dont know","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;9-Rash;10-Red eyes;88-Other",21,"1-Yes","N","Y","Y","N",,"0-Never",3,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","1-Professional","Y","Y","Y","Y","3-Many times","Y",2,0,0,0,2,3,0,,"Y","N","0-None"
,"12/27/2014 11:22:15",2027,"Z1100-Paynesville",2027123,,"2-Female",45,7,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;8-Stomach pain;10-Red eyes;11-Hiccups;88-Other",3,"0-No","N","Y","Y","N",,"0-Never",1,"Y","Y","","","Y","Y","","2-Hospital",,"","",,"","","","","","","","",,,,"3-Many times",0,"88-N/A",0,"88-N/A","4-Skilled manual","Y","Y","Y","Y","0-Never","Y",0,3,0,0,2,3,0,,"Y","N","0-None"
,"12/27/2014 12:51:56",2027,"Z1100-Paynesville",2027125,,"1-Male",38,6,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",5000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",3,5,0,7,1,2,3,,"Y","N","0-None"
,"12/27/2014 12:21:02",2027,"Z1100-Paynesville",2027174,,"1-Male",24,7,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","Y","Y","N","Y",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,2,,"3-Many times",2000,"1-LD",12000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","N",0,0,0,3,1,2,0,,"Y","N","0-None"
,"12/27/2014 11:48:32",2027,"Z1100-Paynesville",2027203,,"2-Female",25,4,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",0,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,7,0,2,1,2,0,,"Y","N",""
,"12/27/2014 12:09:00",2027,"Z1100-Paynesville",2027183,,"2-Female",26,15,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;4-Headache;9-Rash;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"Y","N","N","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"Y","Y","2-Child present"
,"12/27/2014 11:01:07",2027,"Z1100-Paynesville",2027182,,"1-Male",18,8,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;4-Headache",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",200,"1-LD",1000,"1-LD","3-Sales and services","N","N","N","Y","0-Never","N",0,1,0,0,3,3,99,,"Y","N","0-None"
,"12/27/2014 12:56:32",2027,"Z1100-Paynesville",2027204,,"2-Female",22,20,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",2,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",1600,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",2,0,0,2,2,2,0,,"Y","N","88-Other"
,"12/27/2014 10:57:27",2027,"Z1100-Paynesville",2027202,,"2-Female",44,8,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",7,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",600,"1-LD",800,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,7,0,2,1,2,0,,"Y","N","0-None"
,"12/27/2014 9:51:43",2027,"Z1100-Paynesville",2027201,,"2-Female",25,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;9-Rash;10-Red eyes;12-Bleeding",1,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",150,"1-LD",150,"1-LD","3-Sales and services","Y","Y","N","N","2-Several times","Y",1,7,0,1,1,2,0,,"Y","N","0-None"
,"12/27/2014 9:55:12",2027,"Z1100-Paynesville",2027181,,"1-Male",27,3,"5-Some high school","1-Christian","1-Yes","14-Rivergee","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","3-Diarrhea;4-Headache;7-Weakness",3,"1-Yes","N","Y","Y","N",,"0-Never",1,"Y","N","N","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",1500,"1-LD",2500,"1-LD","1-Professional","N","Y","N","N","2-Several times","Y",2,5,3,4,1,2,99,,"Y","Y","2-Child present"
,"12/27/2014 9:52:37",2027,"Z1100-Paynesville",2027101,,"2-Female",26,5,"1-Some ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea",2,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",5,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"2-Several times",500,"1-LD",1200,"1-LD","0-None","N","Y","N","Y","3-Many times","Y",2,1,0,1,1,2,3,,"Y","N","0-None"
,"12/27/2014 10:36:40",2027,"Z1100-Paynesville",2027172,,"1-Male",20,6,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;88-Other","1-Vomiting;6-Sore throat;10-Red eyes",21,"1-Yes","Y","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",4,0,,"3-Many times",3000,"1-LD",40000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",,3,2,5,1,3,0,,"Y","N","0-None"
,"12/27/2014 9:53:24",2027,"Z1100-Paynesville",2027171,,"1-Male",33,8,"6-Completed high school","1-Christian","","","","",,"","",,"","","","","",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",1,"4-NGOs","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",3,0,,"3-Many times",2000,"1-LD",70,"2-USD","1-Professional","Y","Y","Y","Y","3-Many times","Y",3,3,1,4,3,1,0,,"Y","N","0-None"
,"12/27/2014 11:16:16",2027,"Z1100-Paynesville",2027102,,"1-Male",75,16,"4-Completed junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat",4,"0-No","N","Y","N","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",4,4,,"0-Never",0,"1-LD",0,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","2-Child present;4-Friend present"
,"12/27/2014 12:41:21",2027,"Z1100-Paynesville",2027103,,"2-Female",45,6,"5-Some high school","1-Christian","","","","",,"6-Contact with infected surfac","3-Diarrhea;10-Red eyes;12-Bleeding;18-Cough",3,"0-No","Y","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",9800,"1-LD","3-Sales and services","Y","Y","N","Y","3-Many times","N",0,3,2,3,99,99,99,,"N","N","0-None"
,"1/5/2015 14:37:21",2028,"Z1100-Paynesville",2028155,,"2-Female",56,10,"2-Completed ABC","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"3-Many times",0,"","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",4000,"1-LD","5-Unskilled manual","N","Y","Y","Y","3-Many times","Y",7,7,2,7,1,3,0,,"Y","N","88-Other"
,"1/5/2015 10:49:08",2028,"Z1100-Paynesville",2028151,,"2-Female",19,10,"2-Completed ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",1,"Y","Y","","","Y","N","Y","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1400,"1-LD",3500,"1-LD","5-Unskilled manual","N","Y","N","Y","3-Many times","Y",6,6,1,7,1,2,1,,"Y","Y","0-None"
,"1/5/2015 10:25:29",2028,"Z1100-Paynesville",2028161,,"1-Male",40,7,"4-Completed junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;8-Stomach pain;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",2,3,,"1-Just once or twice",2500,"1-LD",4000,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,1,0,2,2,2,0,,"Y","N","0-None"
,"1/5/2015 12:52:14",2028,"Z1100-Paynesville",2028164,,"1-Male",43,6,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",1200,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,3,0,2,99,99,99,,"Y","N","0-None"
,"1/5/2015 12:11:41",2028,"Z1100-Paynesville",2028153,,"1-Male",39,5,"0-None","3-Other","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1500,"1-LD",20,"2-USD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",6,6,6,6,2,3,0,,"Y","N","0-None"
,"1/5/2015 11:34:29",2028,"Z1100-Paynesville",2028113,,"2-Female",54,10,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding;18-Cough",21,"1-Yes","Y","Y","N","N",,"3-Many times",4,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",3000,"1-LD",9000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",0,7,0,0,1,2,0,,"Y","N","2-Child present;4-Friend present"
,"1/5/2015 10:04:20",2028,"Z1100-Paynesville",2028131,,"2-Female",24,2,"3-Some junior high","1-Christian","1-Yes","15-Sinoe","1-Yes","15-Sinoe",,"97-Dont know","97-Does not know",3,"0-No","Y","Y","Y","Y",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",100,"1-LD",300,"1-LD","88-Other","N","N","N","N","3-Many times","Y",2,2,0,1,1,2,1,,"Y","N","0-None"
,"1/5/2015 12:23:54",2028,"Z1100-Paynesville",2028194,,"2-Female",47,11,"0-None","1-Christian","","","","",,"","",,"","","","","",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"2-Several times",220,"1-LD",500,"1-LD","3-Sales and services","N","N","N","Y","2-Several times","Y",0,0,0,3,1,1,0,,"Y","N","0-None"
,"1/5/2015 12:05:46",2028,"Z1100-Paynesville",2020163,,"2-Female",36,7,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;6-Sore throat;7-Weakness;9-Rash;10-Red eyes",21,"0-No","N","Y","N","N",,"1-Just once or twice",2,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",1700,"1-LD",2500,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,2,0,2,1,2,0,,"Y","N","2-Child present"
,"1/5/2015 12:28:20",2028,"Z1100-Paynesville",2028114,,"1-Male",23,9,"6-Completed high school","1-Christian","","","","",,"97-Dont know","97-Does not know",3,"1-Yes","Y","Y","Y","N",,"2-Several times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",2,"1-Community leaders;2-Religious leaders;3-Community members","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","0-No",0,4,,"2-Several times",350,"1-LD",1000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",2,4,5,3,1,3,3,,"Y","N","4-Friend present"
,"1/5/2015 10:40:24",2028,"Z1100-Paynesville",2028192,,"2-Female",28,6,"3-Some junior high","1-Christian","0-No","","1-Yes","12-Nimba",,"1-Preparing or eating bush mea;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;5-Joint and muscle pain;9-Rash;10-Red eyes",0,"0-No","N","Y","Y","N",,"0-Never",4,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",4000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",7,7,0,7,2,3,0,,"Y","N","2-Child present"
,"1/5/2015 9:50:21",2028,"Z1100-Paynesville",2028111,,"1-Male",35,5,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding;18-Cough",13,"1-Yes","N","Y","N","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",750,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,2,5,3,1,1,4,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"1/5/2015 9:46:44",2028,"Z1100-Paynesville",2028191,,"2-Female",22,2,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;3-Diarrhea;7-Weakness;9-Rash",0,"0-No","N","Y","N","Y",,"0-Never",3,"Y","Y","","","N","","","",,"0-No","0-No",0,"","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",2000,"1-LD",6000,"1-LD","3-Sales and services","Y","Y","N","Y","2-Several times","Y",7,7,7,7,2,3,3,,"Y","N","2-Child present;4-Friend present"
,"1/5/2015 10:48:15",2028,"Z1100-Paynesville",2028112,,"2-Female",60,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;12-Bleeding;18-Cough",21,"1-Yes","N","Y","N","N",,"3-Many times",0,"","","","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",50,"1-LD",150,"1-LD","0-None","N","N","Y","Y","3-Many times","Y",2,5,3,5,99,99,99,,"Y","N","2-Child present"
,"1/5/2015 11:32:37",2028,"Z1100-Paynesville",2028193,,"2-Female",28,7,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;6-Sore throat;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",2000,"1-LD",3000,"1-LD","3-Sales and services","N","Y","N","N","0-Never","N",0,0,0,0,2,3,0,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"1/5/2015 11:17:55",2028,"Z1100-Paynesville",2028162,,"2-Female",23,10,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;10-Red eyes;12-Bleeding",21,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",1000,"1-LD",3000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,0,0,2,2,2,0,,"Y","N","0-None"
,"1/5/2015 12:16:56",2028,"Z1100-Paynesville",2028133,,"2-Female",20,2,"2-Completed ABC","1-Christian","0-No","","0-No","",,"4-Man woman business;88-Other","1-Vomiting;2-Fever;6-Sore throat;10-Red eyes",21,"0-No","Y","Y","Y","N",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",200,"1-LD",700,"1-LD","88-Other","N","N","N","N","2-Several times","Y",5,5,0,3,1,2,0,,"Y","N","2-Child present"
,"1/5/2015 11:12:21",2028,"Z1100-Paynesville",2028132,,"1-Male",21,3,"5-Some high school","1-Christian","","","","",,"6-Contact with infected surfac;88-Other","2-Fever;3-Diarrhea;10-Red eyes",3,"0-No","N","Y","Y","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,,,"1-Just once or twice",0,"88-N/A",500,"1-LD","88-Other","N","N","N","N","0-Never","N",4,4,4,4,1,2,0,,"Y","N","0-None"
,"1/5/2015 13:17:06",2028,"Z1100-Paynesville",2028154,,"2-Female",46,9,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash",21,"1-Yes","N","Y","N","N",,"2-Several times",4,"N","","","","Y","N","Y","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",1500,"1-LD",4000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,7,7,1,2,2,,"Y","N","0-None"
,"1/5/2015 13:11:20",2028,"Z1100-Paynesville",2028134,,"2-Female",50,8,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache",2,"0-No","Y","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",1000,"1-LD","88-Other","N","N","N","N","0-Never","N",0,0,0,0,1,2,0,,"Y","N","2-Child present"
,"12/30/2014 14:09:41",2029,"Z1100-Paynesville",2029104,,"2-Female",34,4,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,2,,"2-Several times",50,"2-USD",100,"2-USD","1-Professional","Y","Y","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/30/2014 13:57:48",2029,"Z1100-Paynesville",2029185,,"1-Male",46,10,"6-Completed high school","1-Christian","0-No","","1-Yes","9-Margibi",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",3,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",800,"1-LD","2-Clerical","Y","Y","N","N","0-Never","N",0,0,0,0,1,2,99,,"Y","Y","4-Friend present"
,"12/30/2014 10:30:28",2029,"Z1100-Paynesville",2029201,,"1-Male",40,6,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;6-Sore throat;9-Rash;10-Red eyes",21,"0-No","N","N","Y","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",1200,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",0,6,0,0,1,2,0,,"Y","N","0-None"
,"12/30/2014 12:59:02",2029,"Z1100-Paynesville",2029203,,"2-Female",36,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;13-Fatigue",3,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",1800,"1-LD","1-Professional","N","Y","N","N","2-Several times","N",3,7,1,2,1,2,0,,"Y","N","0-None"
,"12/30/2014 15:30:31",2029,"Z1100-Paynesville",2029205,,"1-Male",56,5,"7-Some university","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",8,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",100,"1-LD",100,"1-LD","0-None","N","N","N","N","1-Just once or twice","Y",0,7,4,2,1,1,0,,"Y","N","0-None"
,"12/30/2014 16:11:08",2029,"Z1100-Paynesville",2029106,,"2-Female",28,4,"7-Some university","1-Christian","0-No","","1-Yes","9-Margibi",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;12-Bleeding",2,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","0-Disagree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,5,,"0-Never",1000,"1-LD",0,"1-LD","0-None","N","N","N","N","2-Several times","Y",0,4,0,4,2,2,0,,"Y","N","0-None"
,"12/30/2014 10:26:01",2029,"Z1100-Paynesville",2029101,,"2-Female",22,14,"6-Completed high school","1-Christian","","","","",,"6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",5,"1-Yes","N","Y","N","N",,"1-Just once or twice",2,"Y","Y","","","Y","N","Y","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,1,,"2-Several times",0,"88-N/A",0,"88-N/A","0-None","N","N","N","N","0-Never","N",0,3,0,3,2,2,0,,"Y","N","0-None"
,"12/30/2014 11:33:30",2029,"Z1100-Paynesville",2029202,,"2-Female",45,7,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;9-Rash;10-Red eyes",7,"1-Yes","N","Y","Y","N",,"1-Just once or twice",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","N","N","2-Several times","Y",3,7,2,6,1,1,0,,"Y","N","0-None"
,"12/30/2014 11:16:06",2029,"Z1100-Paynesville",2029182,,"2-Female",20,10,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;11-Hiccups",2,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",1600,"1-LD","0-None","N","N","Y","Y","2-Several times","Y",0,7,0,0,1,3,99,,"Y","Y","88-Other"
,"12/30/2014 13:56:00",2029,"Z1100-Paynesville",2029204,,"1-Male",37,3,"6-Completed high school","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi;88-Other","1-Vomiting;2-Fever;3-Diarrhea;8-Stomach pain;9-Rash;10-Red eyes",2,"1-Yes","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",1500,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","Y","Y","1-Just once or twice","Y",3,0,0,3,1,1,0,,"Y","N","4-Friend present"
,"12/30/2014 15:34:32",2029,"Z1100-Paynesville",2029187,,"2-Female",56,15,"0-None","1-Christian","1-Yes","4-Grand Bassa","0-No","11-Montserrado",,"88-Other","1-Vomiting;3-Diarrhea",0,"0-No","Y","Y","","",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",500,"1-LD","3-Sales and services","Y","N","N","N","0-Never","N",0,0,0,0,2,3,99,,"Y","Y","2-Child present"
,"12/30/2014 14:57:21",2029,"Z1100-Paynesville",2029186,,"2-Female",23,4,"5-Some high school","1-Christian","0-No","","0-No","",,"88-Other","1-Vomiting;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",1000,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",2,2,0,0,2,2,99,,"Y","Y","88-Other"
,"12/30/2014 16:18:51",2029,"Z1100-Paynesville",2029188,,"1-Male",44,7,"5-Some high school","1-Christian","","","","",,"88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",4500,"1-LD","1-Professional","N","Y","N","N","2-Several times","Y",0,0,1,0,2,2,99,,"Y","Y","0-None"
,"12/30/2014 16:30:27",2029,"Z1100-Paynesville",2029206,,"1-Male",31,4,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;5-Joint and muscle pain;6-Sore throat;10-Red eyes",1,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",10,"2-USD","4-Skilled manual","N","N","N","N","1-Just once or twice","Y",0,7,0,3,1,2,0,,"Y","N","88-Other"
,"12/30/2014 11:44:14",2029,"Z1100-Paynesville",2029102,,"1-Male",37,7,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;12-Bleeding",3,"1-Yes","N","Y","N","N",,"2-Several times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",0,"88-N/A","0-None","N","N","N","Y","0-Never","N",0,7,0,3,2,3,0,,"Y","N","0-None"
,"12/30/2014 10:25:54",2029,"Z1100-Paynesville",2029181,,"1-Male",31,6,"7-Some university","1-Christian","","","","",,"5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea",2,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",4,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",500,"1-LD","0-None","N","Y","Y","Y","2-Several times","Y",4,5,1,3,1,2,99,,"Y","N","0-None"
,"12/30/2014 12:59:35",2029,"Z1100-Paynesville",2029184,,"2-Female",31,12,"6-Completed high school","1-Christian","","","","",,"88-Other","1-Vomiting;2-Fever;3-Diarrhea",3,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","0-Disagree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",3000,"1-LD","1-Professional","Y","Y","Y","Y","0-Never","Y",0,0,0,1,2,3,99,,"Y","Y","2-Child present"
,"12/30/2014 13:02:24",2029,"Z1100-Paynesville",2029103,,"2-Female",43,4,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",1000,"1-LD",2500,"1-LD","4-Skilled manual","N","Y","N","Y","2-Several times","Y",3,6,0,4,1,2,0,,"Y","N","0-None"
,"12/30/2014 15:26:18",2029,"Z1100-Paynesville",2029105,,"1-Male",21,8,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",3,"1-Yes","N","Y","N","Y",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"1-Just once or twice",0,"88-N/A",0,"88-N/A","0-None","N","N","N","Y","1-Just once or twice","Y",0,1,0,2,2,3,0,,"Y","N","0-None"
,"1/6/2015 10:14:34",2030,"Z1100-Paynesville",2030111,,"2-Female",23,9,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;12-Bleeding",21,"1-Yes","N","Y","N","N",,"2-Several times",0,"","","","","Y","N","Y","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",500,"1-LD",2000,"1-LD","88-Other","Y","Y","N","N","1-Just once or twice","Y",0,0,0,0,99,99,99,,"Y","N","0-None"
,"1/6/2015 12:33:08",2030,"Z1100-Paynesville",2030213,,"1-Male",39,7,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders;5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"1-Just once or twice",200,"1-LD",5000,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",2,3,0,2,1,2,1,,"Y","N","2-Child present"
,"12/11/2014 17:02:48",2030,"Z1100-Paynesville",2039177,,"1-Male",70,7,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"1-Yes","N","Y","N","Y",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",2000,"1-LD",4500,"1-LD","1-Professional","N","N","N","N","0-Never","N",0,0,0,4,3,3,0,,"Y","N","0-None"
,"1/6/2015 13:33:53",2030,"Z1100-Paynesville",2030161,,"1-Male",35,6,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",3,"1-Yes","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","0-No",1,"4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",3,0,,"2-Several times",0,"1-LD",40,"2-USD","0-None","Y","N","N","N","2-Several times","Y",0,3,0,2,2,3,0,,"Y","N","0-None"
,"1/6/2015 15:08:58",2030,"Z1100-Paynesville",2030116,,"2-Female",37,15,"0-None","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;12-Bleeding;18-Cough",21,"0-No","Y","Y","Y","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","97-Do not know","97-Do not know","1-Yes","0-No","1-Yes","97-Do not know","0-No",0,4,,"3-Many times",0,"1-LD",500,"1-LD","4-Skilled manual","Y","Y","Y","Y","1-Just once or twice","N",0,0,0,0,2,3,0,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"1/6/2015 10:30:18",2030,"Z1100-Paynesville",2030211,,"2-Female",29,8,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",21,"0-No","N","Y","N","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",250,"1-LD",1000,"1-LD","3-Sales and services","N","Y","N","Y","2-Several times","Y",2,4,3,2,1,2,2,,"Y","N","0-None"
,"12/16/2014 16:43:02",2030,"Z1100-Paynesville",2030171,,"2-Female",42,6,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",20000,"1-LD",40000,"1-LD","0-None","N","N","N","N","3-Many times","N",1,1,0,0,3,3,0,,"Y","Y","2-Child present"
,"1/6/2015 10:34:55",2030,"Z1100-Paynesville",2030151,,"2-Female",34,11,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",3500,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",7,7,3,6,1,3,3,,"Y","N","0-None"
,"1/6/2015 12:36:43",2030,"Z1100-Paynesville",2030114,,"2-Female",28,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes;11-Hiccups;12-Bleeding;18-Cough",21,"1-Yes","N","Y","N","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,12,,"2-Several times",1000,"1-LD",1500,"1-LD","0-None","N","N","Y","Y","1-Just once or twice","N",0,0,0,0,2,2,0,,"Y","N","1-Rain;4-Friend present"
,"1/6/2015 14:40:55",2030,"Z1100-Paynesville",2030155,,"1-Male",21,9,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",4200,"1-LD",3500,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/6/2015 14:17:55",2030,"Z1100-Paynesville",2030192,,"2-Female",40,10,"8-Completed university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;2-Fever;4-Headache;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",6000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"1/6/2015 14:21:34",2030,"Z1100-Paynesville",2030162,,"1-Male",29,4,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",1,2,,"3-Many times",800,"1-LD",1200,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",0,3,0,3,2,2,0,,"Y","N","0-None"
,"1/6/2015 11:09:38",2030,"Z1100-Paynesville",2030112,,"2-Female",20,13,"5-Some high school","1-Christian","1-Yes","4-Grand Bassa","1-Yes","4-Grand Bassa",,"97-Dont know","97-Does not know",21,"1-Yes","Y","Y","Y","N",,"3-Many times",2,"Y","N","Y","","Y","N","Y","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","1-Yes","1-Yes","1-Yes","97-Do not know","97-Do not know",0,4,,"3-Many times",200,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",3,4,6,3,1,1,3,,"Y","N","4-Friend present"
,"1/6/2015 14:33:28",2030,"Z1100-Paynesville",2030132,,"2-Female",35,6,"2-Completed ABC","1-Christian","0-No","","0-No","",,"97-Dont know","97-Does not know",0,"0-No","Y","Y","Y","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",500,"1-LD","0-None","N","N","Y","Y","2-Several times","Y",5,2,0,3,0,1,2,,"Y","N","2-Child present"
,"1/6/2015 12:27:42",2030,"Z1100-Paynesville",2030153,,"1-Male",27,4,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,2,,"3-Many times",1700,"1-LD",3500,"1-LD","2-Clerical","Y","Y","N","Y","3-Many times","Y",7,7,2,7,2,3,0,,"Y","N","0-None"
,"1/6/2015 13:27:29",2030,"Z1100-Paynesville",2030154,,"2-Female",72,8,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;15-Chills",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",4000,"1-LD",6000,"1-LD","1-Professional","Y","N","N","Y","97-Dont know","N",7,7,2,7,1,3,0,,"Y","N","0-None"
,"1/6/2015 11:35:58",2030,"Z1100-Paynesville",2030212,,"2-Female",49,13,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",10000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",3,4,0,5,1,3,2,,"Y","N","2-Child present"
,"1/6/2015 11:33:57",2030,"Z1100-Paynesville",2030152,,"1-Male",24,3,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1300,"1-LD",2100,"1-LD","3-Sales and services","Y","Y","N","Y","3-Many times","Y",7,7,1,0,2,3,2,,"Y","N","0-None"
,"1/6/2015 13:39:03",2030,"Z1100-Paynesville",2030131,,"1-Male",40,3,"7-Some university","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;4-Headache;6-Sore throat;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"1-Just once or twice",500,"1-LD",3500,"1-LD","88-Other","N","N","N","N","1-Just once or twice","N",0,0,0,0,2,2,0,,"Y","N","4-Friend present"
,"1/6/2015 13:33:31",2030,"Z1100-Paynesville",2030191,,"1-Male",41,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;6-Contact with infected surfac","1-Vomiting;5-Joint and muscle pain;9-Rash",4,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",7,7,,"2-Several times",0,"1-LD",500,"1-LD","4-Skilled manual","N","Y","Y","N","3-Many times","Y",7,7,6,7,1,3,0,,"Y","N","0-None"
,"1/6/2015 11:53:29",2030,"Z1100-Paynesville",2030113,,"2-Female",26,5,"2-Completed ABC","1-Christian","0-No","","1-Yes","4-Grand Bassa",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;18-Cough",7,"1-Yes","Y","Y","Y","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","97-Do not know","97-Do not know",0,8,,"3-Many times",500,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,6,3,1,2,4,,"Y","Y","2-Child present;4-Friend present"
,"1/6/2015 13:23:33",2030,"Z1100-Paynesville",2030115,,"1-Male",45,8,"5-Some high school","1-Christian","1-Yes","2-Bong","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;9-Rash;10-Red eyes;12-Bleeding;18-Cough",7,"1-Yes","Y","Y","Y","N",,"3-Many times",4,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",1,"1-Community leaders;2-Religious leaders;3-Community members","1-Agree","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,8,,"3-Many times",250,"1-LD",700,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,2,3,3,1,1,3,,"Y","N","2-Child present;4-Friend present"
,"12/30/2014 12:26:14",2031,"Z1100-Paynesville",2031211,,"2-Female",58,12,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",7,"1-Yes","N","Y","N","N",,"0-Never",4,"Y","Y","","","N","","","",,"1-Yes","1-Yes",4,"1-Community leaders;4-NGOs","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"3-Many times",1500,"1-LD",5000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",0,5,2,3,1,3,0,,"Y","N","88-Other"
,"12/30/2014 16:38:05",2031,"Z1100-Paynesville",2031164,,"1-Male",56,7,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",2,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,2,,"0-Never",2000,"1-LD",5000,"1-LD","1-Professional","N","N","N","N","0-Never","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"12/30/2014 17:06:51",2031,"Z1100-Paynesville",2031134,,"2-Female",29,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","2-Fever;3-Diarrhea;4-Headache",3,"0-No","N","Y","Y","Y",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","0-None","N","N","N","N","1-Just once or twice","N",0,0,0,2,2,2,0,,"Y","N","0-None"
,"12/30/2014 14:33:43",2031,"Z1100-Paynesville",2031192,,"1-Male",20,18,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",8,"1-Yes","N","Y","Y","N",,"2-Several times",5,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",3,0,,"4-Always",3000,"1-LD",4500,"1-LD","3-Sales and services","N","N","N","N","4-Always","Y",2,3,0,0,2,2,0,,"Y","N","0-None"
,"12/30/2014 14:37:08",2031,"Z1100-Paynesville",2031151,,"2-Female",22,13,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;14-Bruising;15-Chills;16-Weight loss;17-Chest pain;18-Cough",8,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1500,"1-LD",1500,"1-LD","1-Professional","N","Y","Y","Y","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/30/2014 15:08:08",2031,"Z1100-Paynesville",2031112,,"1-Male",28,12,"7-Some university","1-Christian","1-Yes","8-Lofa","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;3-Diarrhea;6-Sore throat;10-Red eyes;12-Bleeding",4,"1-Yes","N","Y","N","N",,"3-Many times",1,"Y","N","N","","N","","","",,"0-No","0-No",3,"1-Community leaders;6-Community group","1-Agree","1-Agree","0-No","0-No","0-No","1-Yes","97-Do not know",0,0,,"3-Many times",1000,"1-LD",3500,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",0,2,2,4,1,2,0,,"Y","N","2-Child present;4-Friend present"
,"12/30/2014 14:04:39",2031,"Z1100-Paynesville",2031161,,"2-Female",24,8,"5-Some high school","1-Christian","","","","",,"6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,2,,"0-Never",1200,"1-LD",3500,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","N",0,1,0,4,1,2,0,,"Y","N","0-None"
,"12/30/2014 15:44:17",2031,"Z1100-Paynesville",2031163,,"1-Male",31,4,"88-Other","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes;12-Bleeding;15-Chills",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,3,,"0-Never",1800,"1-LD",2500,"1-LD","1-Professional","N","N","N","N","0-Never","Y",0,2,0,0,2,3,0,,"Y","N","0-None"
,"12/30/2014 16:41:11",2031,"Z1100-Paynesville",2031212,,"2-Female",32,2,"2-Completed ABC","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;12-Bleeding;13-Fatigue",21,"0-No","Y","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",1,"5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",200,"1-LD",1300,"1-LD","3-Sales and services","N","Y","Y","Y","3-Many times","Y",1,3,0,2,1,2,0,,"N","Y","4-Friend present"
,"12/30/2014 16:49:12",2031,"Z1100-Paynesville",2031153,,"1-Male",25,4,"2-Completed ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"3-Many times",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","N","Y","2-Several times","Y",4,3,1,7,2,2,2,,"Y","N","0-None"
,"12/30/2014 15:44:55",2031,"Z1100-Paynesville",2031113,,"2-Female",30,10,"7-Some university","1-Christian","0-No","","1-Yes","8-Lofa",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;14-Bruising;15-Chills;18-Cough",3,"0-No","Y","Y","Y","N",,"3-Many times",4,"Y","N","N","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"1-Just once or twice",3000,"1-LD",7000,"1-LD","0-None","N","N","N","N","1-Just once or twice","N",0,0,0,0,2,2,0,,"Y","N","2-Child present;4-Friend present"
,"12/30/2014 16:22:07",2031,"Z1100-Paynesville",2031133,,"2-Female",32,5,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",150,"1-LD","88-Other","N","N","N","N","0-Never","N",0,0,0,1,2,2,0,,"Y","N","0-None"
,"12/30/2014 14:06:39",2031,"Z1100-Paynesville",2031191,,"1-Male",43,20,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;3-Diarrhea;6-Sore throat;9-Rash;12-Bleeding",0,"0-No","N","Y","Y","N",,"4-Always",6,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","97-Do not know",0,0,,"4-Always",300,"1-LD",5000,"1-LD","4-Skilled manual","Y","Y","N","N","1-Just once or twice","N",0,0,0,0,1,2,0,,"Y","N","0-None"
,"12/30/2014 16:33:02",2031,"Z1100-Paynesville",2031114,,"1-Male",58,6,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding;18-Cough",10,"0-No","Y","Y","Y","N",,"3-Many times",4,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",2,"1-Community leaders;3-Community members","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","0-No",0,0,,"3-Many times",500,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,5,4,5,1,1,3,,"Y","N","2-Child present;3-Spouse present;4-Friend present"
,"12/30/2014 15:23:37",2031,"Z1100-Paynesville",2031132,,"1-Male",44,6,"6-Completed high school","1-Christian","0-No","","0-No","",,"6-Contact with infected surfac;88-Other","2-Fever;10-Red eyes;88-Other",21,"1-Yes","Y","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",0,"88-N/A","4-Skilled manual","N","Y","N","N","2-Several times","Y",2,4,0,3,1,2,0,,"","",""
,"12/30/2014 14:52:10",2031,"Z1100-Paynesville",2031162,,"1-Male",43,12,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,2,,"0-Never",2000,"1-LD",3800,"1-LD","1-Professional","N","N","N","N","1-Just once or twice","Y",0,2,0,2,2,2,0,,"Y","N","0-None"
,"12/30/2014 15:42:51",2031,"Z1100-Paynesville",2031152,,"1-Male",38,9,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue",8,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",1100,"1-LD","1-Professional","N","Y","N","Y","3-Many times","Y",7,7,3,7,1,3,1,,"Y","N","0-None"
,"12/30/2014 14:29:12",2031,"Z1100-Paynesville",2031111,,"2-Female",27,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding;18-Cough",3,"0-No","Y","N","Y","N",,"3-Many times",0,"","","","","Y","N","Y","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,2,,"3-Many times",250,"1-LD",1000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,7,3,99,99,99,,"Y","N","4-Friend present"
,"12/30/2014 15:10:04",2031,"Z1100-Paynesville",2031193,,"2-Female",42,7,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;8-Stomach pain",0,"0-No","N","N","Y","N",,"4-Always",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",700,"1-LD",8000,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"12/23/2014 12:03:05",2032,"Z1100-Paynesville",2032122,,"1-Male",46,4,"7-Some university","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache;5-Joint and muscle pain;10-Red eyes;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","1-Professional","Y","Y","Y","Y","3-Many times","Y",1,7,0,1,1,1,0,,"Y","N","88-Other"
,"12/23/2014 13:47:45",2032,"Z1100-Paynesville",2032124,,"1-Male",31,2,"7-Some university","1-Christian","","","","",,"6-Contact with infected surfac;97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",3,"6-Community group","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,3,,"3-Many times",0,"88-N/A",0,"88-N/A","5-Unskilled manual","N","N","Y","Y","3-Many times","Y",0,7,0,0,1,2,0,,"Y","N","0-None"
,"12/23/2014 15:25:47",2032,"Z1100-Paynesville",2032184,,"1-Male",44,4,"88-Other","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","2-Fever;3-Diarrhea;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",500,"1-LD","1-Professional","Y","Y","Y","Y","0-Never","Y",0,7,0,0,2,2,99,,"Y","N","0-None"
,"12/23/2014 14:10:49",2032,"Z1100-Paynesville",2032143,,"1-Male",70,5,"0-None","2-Muslim","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",7,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","88-Other","N","Y","N","Y","1-Just once or twice","Y",0,3,0,7,1,2,0,,"N","Y","3-Spouse present"
,"12/23/2014 13:04:43",2032,"Z1100-Paynesville",2032183,,"1-Male",61,25,"2-Completed ABC","1-Christian","","","","",,"4-Man woman business;88-Other","1-Vomiting;3-Diarrhea;6-Sore throat;9-Rash",14,"0-No","Y","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",500,"1-LD",1000,"1-LD","6-Domestic services","N","N","N","N","2-Several times","Y",1,2,4,0,1,3,99,,"Y","N","0-None"
,"12/23/2014 12:34:49",2032,"Z1100-Paynesville",2032102,,"1-Male",36,4,"3-Some junior high","1-Christian","0-No","","1-Yes","11-Montserrado",,"97-Dont know","1-Vomiting;4-Headache;6-Sore throat;10-Red eyes;11-Hiccups",0,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",100,"2-USD",100,"2-USD","4-Skilled manual","N","Y","N","Y","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/23/2014 14:34:37",2032,"Z1100-Paynesville",2032104,,"2-Female",41,13,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;9-Rash;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",2000,"1-LD","0-None","N","N","Y","N","2-Several times","Y",0,2,0,1,99,99,99,,"Y","N","0-None"
,"12/23/2014 13:04:33",2032,"Z1100-Paynesville",2032123,,"2-Female",30,7,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;12-Bleeding;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","Y","Y","3-Many times","Y",0,0,0,0,1,1,0,,"Y","N","0-None"
,"12/23/2014 14:38:14",2032,"Z1100-Paynesville",2032125,,"2-Female",24,5,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;7-Weakness;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","Y","Y","0-Never","Y",7,7,0,3,1,2,0,,"Y","N","0-None"
,"12/23/2014 10:41:15",2032,"Z1100-Paynesville",2032101,,"2-Female",46,6,"0-None","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;12-Bleeding",5,"0-No","Y","Y","Y","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",1500,"1-LD","3-Sales and services","N","Y","Y","Y","3-Many times","Y",1,7,0,4,1,2,3,,"Y","N","0-None"
,"12/23/2014 13:42:32",2032,"Z1100-Paynesville",2032103,,"2-Female",48,13,"0-None","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;88-Other","97-Does not know",0,"0-No","Y","Y","Y","Y",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;2-Religious leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","1-Yes","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","0-None","N","N","Y","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/23/2014 11:09:18",2032,"Z1100-Paynesville",2032121,,"1-Male",34,3,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;88-Other",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",1000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","0-Never","Y",0,2,3,2,1,2,0,,"Y","N","0-None"
,"12/23/2014 15:24:25",2032,"Z1100-Paynesville",2032105,,"1-Male",20,4,"5-Some high school","1-Christian","","","","",,"6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache;6-Sore throat",3,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",0,"88-N/A","0-None","N","N","Y","N","1-Just once or twice","Y",,4,0,3,2,3,0,,"Y","N","0-None"
,"12/23/2014 11:17:20",2032,"Z1100-Paynesville",2032141,,"2-Female",20,5,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","N","N",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","88-Other","N","Y","N","Y","1-Just once or twice","Y",2,3,0,3,1,2,0,,"Y","Y","2-Child present"
,"12/23/2014 12:16:59",2032,"Z1100-Paynesville",2032201,,"2-Female",31,10,"6-Completed high school","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;12-Bleeding",21,"1-Yes","N","Y","N","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",900,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",3,4,2,4,1,2,2,,"Y","N","0-None"
,"12/23/2014 10:41:00",2032,"Z1100-Paynesville",2032181,,"1-Male",33,7,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;88-Other","1-Vomiting;2-Fever;7-Weakness;12-Bleeding",21,"1-Yes","N","Y","N","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","0-No",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",3000,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",0,0,0,3,1,2,99,,"Y","Y","88-Other"
,"12/23/2014 13:33:57",2032,"Z1100-Paynesville",2032202,,"1-Male",62,8,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;9-Rash;10-Red eyes",3,"1-Yes","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",100,"1-LD",250,"1-LD","1-Professional","N","N","N","N","1-Just once or twice","Y",0,2,0,0,1,0,0,,"Y","N","4-Friend present"
,"12/23/2014 12:20:05",2032,"Z1100-Paynesville",2032182,,"2-Female",52,10,"4-Completed junior high","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;4-Headache",2,"0-No","N","Y","Y","N",,"0-Never",5,"N","","","","N","","","",,"1-Yes","1-Yes",2,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",350,"1-LD",750,"1-LD","0-None","N","N","N","Y","0-Never","N",0,0,0,0,3,3,99,,"Y","Y","2-Child present"
,"12/23/2014 12:38:17",2032,"Z1100-Paynesville",2032142,,"2-Female",32,5,"88-Other","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",1200,"1-LD","88-Other","N","Y","N","Y","0-Never","Y",2,3,0,3,2,2,0,,"N","N","2-Child present"
,"12/29/2014 15:37:26",2033,"Z1200-Gardnersnesville",2033192,,"2-Female",30,12,"6-Completed high school","1-Christian","1-Yes","6-Grand Gedeh","0-No","",,"1-Preparing or eating bush mea;4-Man woman business;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;5-Joint and muscle pain;7-Weakness",0,"0-No","N","Y","Y","N",,"4-Always",5,"N","","","","N","","","",,"1-Yes","0-No",0,"","0-Disagree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",500,"1-LD",6000,"1-LD","0-None","N","N","N","N","4-Always","Y",7,7,7,7,1,3,0,,"Y","N","0-None"
,"12/29/2014 14:40:57",2033,"Z1200-Gardnersnesville",2033111,,"1-Male",70,9,"2-Completed ABC","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;10-Red eyes;12-Bleeding;18-Cough",7,"0-No","N","Y","Y","N",,"3-Many times",7,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",500,"1-LD",1000,"1-LD","0-None","N","N","Y","Y","3-Many times","Y",3,4,0,4,1,2,3,,"Y","N","2-Child present;3-Spouse present"
,"12/29/2014 16:14:10",2033,"Z1200-Gardnersnesville",2033214,,"2-Female",39,7,"4-Completed junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;9-Rash;10-Red eyes",2,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",4000,"1-LD","3-Sales and services","N","Y","N","Y","4-Always","Y",1,4,2,2,1,3,1,,"Y","N","2-Child present"
,"12/29/2014 14:53:36",2033,"Z1200-Gardnersnesville",2033191,,"2-Female",21,17,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",0,"1-LD",500,"1-LD","0-None","N","N","N","N","2-Several times","Y",7,7,2,7,1,3,7,,"Y","N","0-None"
,"12/29/2014 14:56:17",2033,"Z1200-Gardnersnesville",2033155,,"1-Male",21,7,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",3,"1-Yes","Y","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","0-No","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",2000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,2,0,1,2,0,,"Y","Y","0-None"
,"12/29/2014 12:42:04",2033,"Z1200-Gardnersnesville",2033153,,"1-Male",26,9,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue",6,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",5000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,2,7,1,3,2,,"Y","N","0-None"
,"12/29/2014 12:32:23",2033,"Z1200-Gardnersnesville",2033211,,"1-Male",30,4,"7-Some university","1-Christian","","","","",,"","",,"","","","","",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,2,,"2-Several times",600,"1-LD",3000,"1-LD","2-Clerical","Y","Y","Y","Y","2-Several times","Y",0,2,0,1,2,3,0,,"Y","N",""
,"12/29/2014 14:46:50",2033,"Z1200-Gardnersnesville",2033131,,"1-Male",62,9,"6-Completed high school","1-Christian","","","","",,"97-Dont know","88-Other",0,"0-No","Y","N","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","0-Disagree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",6,0,,"1-Just once or twice",300,"1-LD",800,"1-LD","5-Unskilled manual","N","N","N","N","1-Just once or twice","Y",2,2,0,2,1,1,3,,"Y","N","88-Other"
,"12/29/2014 15:11:42",2033,"Z1200-Gardnersnesville",2033213,,"2-Female",23,5,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;4-Headache;5-Joint and muscle pain;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",3,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","1-Yes","0-No",0,0,,"3-Many times",200,"1-LD",1000,"1-LD","3-Sales and services","N","Y","N","N","2-Several times","Y",0,2,0,2,1,2,0,,"Y","N","0-None"
,"12/29/2014 15:58:19",2033,"Z1200-Gardnersnesville",2033161,,"2-Female",41,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"88-Other","1-Agree","0-Disagree","0-No","0-No","0-No","0-No","0-No",0,1,,"0-Never",0,"1-LD",0,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"12/29/2014 16:54:27",2033,"Z1200-Gardnersnesville",2033156,,"1-Male",22,13,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",250,"1-LD",100,"1-LD","3-Sales and services","N","N","N","Y","2-Several times","Y",7,7,0,0,1,2,0,,"Y","N","0-None"
,"12/29/2014 13:46:38",2033,"Z1200-Gardnersnesville",2033154,,"2-Female",20,21,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising",5,"0-No","N","Y","Y","N",,"2-Several times",4,"N","","","","Y","Y","","1-Clinic",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","N","Y","3-Many times","Y",7,7,1,4,2,3,0,,"Y","Y","0-None"
,"12/29/2014 13:57:32",2033,"Z1200-Gardnersnesville",2033212,,"1-Male",65,8,"7-Some university","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;8-Stomach pain;9-Rash;10-Red eyes;12-Bleeding",4,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",3,"4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",100,"1-LD",500,"1-LD","4-Skilled manual","N","Y","N","Y","2-Several times","Y",2,2,1,4,1,2,1,,"Y","Y","2-Child present"
,"12/29/2014 16:27:08",2033,"Z1200-Gardnersnesville",2033113,,"1-Male",47,5,"6-Completed high school","1-Christian","","","","",,"97-Dont know","97-Does not know",7,"0-No","Y","Y","Y","N",,"3-Many times",7,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",1,"1-Community leaders;2-Religious leaders","1-Agree","97-Do not know","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",75,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",3,6,4,4,1,1,3,,"Y","N","2-Child present;4-Friend present"
,"12/29/2014 16:35:50",2033,"Z1200-Gardnersnesville",2033162,,"2-Female",22,10,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;6-Sore throat;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","0-Disagree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",2500,"1-LD","0-None","N","N","N","N","1-Just once or twice","Y",1,3,0,3,1,2,0,,"Y","N","0-None"
,"12/29/2014 15:35:13",2033,"Z1200-Gardnersnesville",2033112,,"2-Female",29,6,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain;12-Bleeding;18-Cough",21,"1-Yes","N","Y","N","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"0-No","0-No",0,"","0-Disagree","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,2,,"3-Many times",50,"2-USD",80,"2-USD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,4,2,4,1,2,3,,"Y","N","2-Child present"
,"12/29/2014 10:26:46",2033,"Z1200-Gardnersnesville",2033151,,"1-Male",70,8,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",4,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",400,"1-LD",600,"1-LD","4-Skilled manual","N","N","Y","Y","4-Always","Y",7,7,2,7,1,3,1,,"Y","N","0-None"
,"12/29/2014 15:38:13",2033,"Z1200-Gardnersnesville",2033132,,"2-Female",39,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;5-Joint and muscle pain;8-Stomach pain;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",2,2,0,2,1,2,0,,"Y","N","0-None"
,"12/29/2014 16:28:50",2033,"Z1200-Gardnersnesville",2033193,,"2-Female",30,11,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",0,"1-Yes","N","Y","N","N",,"4-Always",4,"Y","Y","","","Y","N","Y","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,1,,"0-Never",800,"1-LD",1000,"1-LD","0-None","N","N","Y","N","4-Always","Y",7,7,3,1,2,3,0,,"Y","N","0-None"
,"12/29/2014 11:52:09",2033,"Z1200-Gardnersnesville",2033152,,"2-Female",34,5,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash",0,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",2000,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",7,7,7,7,2,3,0,,"Y","Y","0-None"
,"12/29/2014 16:35:30",2033,"Z1200-Gardnersnesville",2033133,,"2-Female",40,8,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes;88-Other",2,"1-Yes","Y","Y","Y","N",,"1-Just once or twice",2,"Y","N","Y","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"1-Just once or twice",350,"1-LD",600,"1-LD","3-Sales and services","N","Y","N","N","1-Just once or twice","N",0,0,0,3,1,2,0,,"Y","N","0-None"
,"12/22/2014 9:59:14",2034,"Z1200-Gardnersnesville",2034141,,"1-Male",68,7,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;3-Diarrhea;4-Headache;12-Bleeding",3,"1-Yes","N","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",700,"1-LD",20,"2-USD","4-Skilled manual","Y","Y","Y","Y","2-Several times","N",3,5,0,3,1,2,0,,"N","N","2-Child present"
,"12/22/2014 11:12:59",2034,"Z1200-Gardnersnesville",2034142,,"1-Male",74,14,"2-Completed ABC","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",0,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",0,5,1,7,1,2,0,,"Y","Y","2-Child present"
,"12/22/2014 10:08:51",2034,"Z1200-Gardnersnesville",2034101,,"1-Male",29,3,"6-Completed high school","1-Christian","0-No","","0-No","",,"6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",7,"0-No","N","Y","Y","N",,"0-Never",1,"Y","N","Y","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",4,6,,"2-Several times",600,"1-LD",6000,"1-LD","3-Sales and services","Y","Y","N","Y","2-Several times","Y",2,3,0,3,2,3,0,,"Y","N","0-None"
,"12/22/2014 13:16:17",2034,"Z1200-Gardnersnesville",2034185,,"1-Male",20,9,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"",,"","","","","","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",3000,"1-LD",6000,"1-LD","6-Domestic services","N","N","N","Y","2-Several times","Y",0,0,0,0,2,2,99,,"Y","N","0-None"
,"12/22/2014 12:43:27",2034,"Z1200-Gardnersnesville",2034184,,"2-Female",45,5,"0-None","1-Christian","","","","",,"97-Dont know","1-Vomiting;9-Rash;10-Red eyes",3,"0-No","Y","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",2500,"1-LD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",2,2,3,1,2,2,99,,"Y","Y","2-Child present"
,"12/22/2014 14:21:16",2034,"Z1200-Gardnersnesville",2034105,,"1-Male",35,13,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;4-Headache;6-Sore throat",3,"0-No","N","Y","N","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;6-Community group","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","1-Yes","0-No",0,0,,"2-Several times",3000,"1-LD",6000,"1-LD","3-Sales and services","N","Y","N","N","0-Never","N",0,0,0,0,2,3,0,,"","",""
,"12/22/2014 14:01:48",2034,"Z1200-Gardnersnesville",2034144,,"1-Male",38,6,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",6000,"1-LD",50,"2-USD","1-Professional","N","N","N","Y","2-Several times","N",0,0,2,0,3,3,0,,"Y","N","2-Child present"
,"12/22/2014 13:34:57",2034,"Z1200-Gardnersnesville",2034174,,"2-Female",22,10,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea",4,"1-Yes","N","Y","Y","Y",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;88-Other","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",3000,"1-LD",7000,"1-LD","88-Other","N","N","N","N","3-Many times","Y",2,4,0,4,1,3,1,,"Y","N","0-None"
,"12/22/2014 11:31:58",2034,"Z1200-Gardnersnesville",2034172,,"1-Male",22,12,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes",4,"1-Yes","Y","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"3-Many times",3000,"1-LD",23000,"1-LD","88-Other","Y","Y","Y","Y","3-Many times","Y",3,4,0,5,1,3,1,,"Y","N","0-None"
,"12/22/2014 12:18:26",2034,"Z1200-Gardnersnesville",2034103,,"2-Female",42,7,"0-None","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",29,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",5000,"1-LD","3-Sales and services","N","Y","Y","Y","0-Never","Y",0,2,0,2,2,3,0,,"Y","N","0-None"
,"12/22/2014 13:17:12",2034,"Z1200-Gardnersnesville",2034223,,"1-Male",26,8,"6-Completed high school","2-Muslim","0-No","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;4-Headache",21,"0-No","N","Y","N","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,3,,"1-Just once or twice",7000,"1-LD",8000,"1-LD","3-Sales and services","N","Y","N","Y","1-Just once or twice","Y",2,6,1,3,2,3,2,,"Y","N","0-None"
,"12/22/2014 11:08:01",2034,"Z1200-Gardnersnesville",2034182,,"1-Male",23,1,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;2-Fever;4-Headache;10-Red eyes",2,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"4-Always",500,"1-LD",12000,"1-LD","88-Other","N","N","N","N","3-Many times","Y",4,2,4,4,99,99,99,,"Y","N","0-None"
,"12/22/2014 11:11:37",2034,"Z1200-Gardnersnesville",2034102,,"1-Male",35,18,"4-Completed junior high","1-Christian","0-No","","0-No","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;12-Bleeding",1,"0-No","Y","Y","Y","Y",,"0-Never",4,"N","","","","N","","","",,"0-No","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",0,2,0,3,1,2,0,,"Y","N","0-None"
,"12/22/2014 14:11:48",2034,"Z1200-Gardnersnesville",2034175,,"1-Male",35,6,"7-Some university","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",6,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"2-Religious leaders;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"Y","N","0-None"
,"12/22/2014 10:44:58",2034,"Z1200-Gardnersnesville",2034171,,"1-Male",21,10,"5-Some high school","2-Muslim","","","","",,"","",,"","","","","",,"0-Never",1,"N","","","","Y","Y","","2-Hospital",,"0-No","0-No",0,"88-Other","0-Disagree","0-Disagree","1-Yes","0-No","1-Yes","97-Do not know","0-No",0,3,,"3-Many times",1000,"1-LD",8000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",3,2,1,5,1,3,1,,"Y","N","0-None"
,"12/22/2014 12:04:19",2034,"Z1200-Gardnersnesville",2034222,,"1-Male",30,5,"88-Other","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies","1-Vomiting;2-Fever;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",500,"1-LD",2000,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",2,4,1,3,1,2,1,,"Y","N","0-None"
,"12/22/2014 12:24:03",2034,"Z1200-Gardnersnesville",2034173,,"1-Male",42,10,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;7-Weakness",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",6,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",3000,"1-LD",6000,"1-LD","1-Professional","N","N","N","N","3-Many times","Y",2,4,1,5,1,3,2,,"Y","N","0-None"
,"12/22/2014 10:44:27",2034,"Z1200-Gardnersnesville",2034221,,"1-Male",31,6,"88-Other","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;9-Rash",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1000,"1-LD",2000,"1-LD","5-Unskilled manual","N","Y","N","Y","1-Just once or twice","N",1,2,0,2,2,3,1,,"Y","N","88-Other"
,"12/22/2014 11:53:30",2034,"Z1200-Gardnersnesville",2034183,,"2-Female",24,5,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;3-Diarrhea",21,"1-Yes","N","Y","Y","N",,"2-Several times",2,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",1000,"1-LD","0-None","N","N","N","N","2-Several times","Y",1,2,0,3,2,2,99,,"Y","Y","2-Child present"
,"12/22/2014 14:28:40",2034,"Z1200-Gardnersnesville",2034186,,"1-Male",29,14,"88-Other","1-Christian","","","","",,"1-Preparing or eating bush mea;88-Other","4-Headache;10-Red eyes;12-Bleeding",2,"1-Yes","N","Y","N","N",,"0-Never",6,"N","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",4,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",3200,"1-LD","3-Sales and services","N","N","Y","Y","2-Several times","Y",2,1,0,2,1,3,2,,"Y","Y","2-Child present"
,"12/22/2014 10:21:30",2034,"Z1200-Gardnersnesville",2034181,,"2-Female",18,6,"3-Some junior high","1-Christian","","","","",,"4-Man woman business;88-Other","1-Vomiting;10-Red eyes",21,"1-Yes","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",0,"88-N/A","3-Sales and services","N","N","N","N","2-Several times","Y",0,2,1,5,3,3,99,,"Y","Y","88-Other"
,"12/22/2014 13:19:09",2034,"Z1200-Gardnersnesville",2034104,,"2-Female",40,6,"0-None","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",4000,"1-LD","0-None","N","Y","N","N","3-Many times","Y",0,3,0,3,99,99,99,,"N","Y","0-None"
,"1/7/2015 15:25:22",2035,"Z1200-Gardnersnesville",2035141,,"1-Male",57,12,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness",21,"1-Yes","N","Y","N","N",,"0-Never",3,"Y","N","N","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",5,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",4,0,,"2-Several times",6000,"1-LD",15000,"1-LD","1-Professional","N","Y","Y","Y","0-Never","N",0,7,0,7,2,3,3,,"Y","N","0-None"
,"1/7/2015 16:55:15",2035,"Z1200-Gardnersnesville",2035172,,"2-Female",35,7,"2-Completed ABC","2-Muslim","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",21,"1-Yes","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",3000,"1-LD",3500,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",5,2,0,7,1,2,0,,"Y","N","0-None;88-Other"
,"1/8/2015 11:12:54",2035,"Z1200-Gardnersnesville",2035143,,"1-Male",51,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","1-Clinic",,"0-No","0-No",0,"1-Community leaders;3-Community members","0-Disagree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"1-Just once or twice",2000,"1-LD",3500,"1-LD","6-Domestic services","Y","Y","Y","Y","2-Several times","Y",2,3,0,2,1,3,0,,"Y","N","2-Child present"
,"1/8/2015 11:19:56",2035,"Z1200-Gardnersnesville",2035201,,"2-Female",33,8,"3-Some junior high","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;8-Stomach pain;10-Red eyes",8,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",3000,"1-LD",5000,"1-LD","0-None","N","N","N","N","1-Just once or twice","N",0,0,0,2,2,2,0,,"Y","N","2-Child present;4-Friend present"
,"1/7/2015 10:08:25",2035,"Z1200-Gardnersnesville",2035101,,"1-Male",33,6,"3-Some junior high","1-Christian","","","","",,"88-Other","1-Vomiting;3-Diarrhea",24,"0-No","Y","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;6-Community group","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",600,"1-LD",7000,"1-LD","3-Sales and services","Y","Y","N","N","0-Never","N",0,0,0,0,2,3,0,,"Y","N","4-Friend present"
,"1/7/2015 15:23:09",2035,"Z1200-Gardnersnesville",2035121,,"1-Male",37,7,"7-Some university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes;88-Other",6,"1-Yes","N","Y","N","N",,"2-Several times",1,"Y","Y","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"4-Always",0,"88-N/A",5000,"1-LD","3-Sales and services","Y","Y","N","N","3-Many times","Y",3,7,0,7,1,2,3,,"Y","N","0-None"
,"1/8/2015 14:02:23",2035,"Z1200-Gardnersnesville",2035223,,"1-Male",34,23,"0-None","2-Muslim","","","","",,"2-Eating fruit bitten by bats;4-Man woman business","1-Vomiting;2-Fever;7-Weakness",2,"0-No","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,3,,"1-Just once or twice",5000,"1-LD",6000,"1-LD","3-Sales and services","N","Y","N","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/7/2015 16:42:13",2035,"Z1200-Gardnersnesville",2035142,,"2-Female",40,3,"88-Other","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;9-Rash;10-Red eyes",4,"1-Yes","N","Y","N","N",,"0-Never",1,"Y","N","N","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",4250,"1-LD",4250,"1-LD","1-Professional","N","Y","N","Y","0-Never","Y",0,0,0,2,2,3,0,,"Y","N","2-Child present"
,"1/8/2015 11:51:08",2035,"Z1200-Gardnersnesville",2035124,,"2-Female",39,13,"6-Completed high school","1-Christian","0-No","","1-Yes","1-Bomi",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;10-Red eyes;88-Other",21,"1-Yes","N","Y","N","N",,"3-Many times",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",20,"2-USD",50,"2-USD","3-Sales and services","N","N","Y","Y","3-Many times","Y",3,2,0,1,2,2,0,,"Y","N","0-None"
,"1/8/2015 11:18:30",2035,"Z1200-Gardnersnesville",2035123,,"2-Female",49,9,"1-Some ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",20000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","0-Never","N",0,3,0,0,2,2,0,,"Y","N","0-None"
,"1/8/2015 13:01:17",2035,"Z1200-Gardnersnesville",2035222,,"1-Male",22,3,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;15-Chills",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",1500,"1-LD","3-Sales and services","N","Y","N","Y","2-Several times","Y",3,3,0,3,2,3,0,,"Y","N","0-None"
,"1/8/2015 11:20:40",2035,"Z1200-Gardnersnesville",2035173,,"2-Female",39,6,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;4-NGOs","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",1500,"1-LD",4000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",5,2,0,7,2,3,0,,"Y","N","0-None"
,"1/8/2015 12:04:12",2035,"Z1200-Gardnersnesville",2035174,,"2-Female",32,4,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;9-Rash",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,0,,"0-Never",3000,"1-LD",10000,"1-LD","3-Sales and services","N","N","Y","Y","0-Never","N",2,0,0,3,3,3,0,,"Y","N","0-None;88-Other"
,"1/7/2015 16:36:51",2035,"Z1200-Gardnersnesville",2035122,,"2-Female",47,7,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","Y","Y","4-Always","Y",0,3,0,3,1,3,0,,"Y","N","0-None"
,"1/7/2015 15:30:48",2035,"Z1200-Gardnersnesville",2035171,,"1-Male",54,5,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;7-Weakness;10-Red eyes",7,"0-No","Y","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"1-Community leaders;4-NGOs","0-Disagree","0-Disagree","0-No","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",800,"1-LD",1600,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",4,2,2,6,1,3,1,,"Y","N","0-None"
,"1/7/2015 11:48:56",2036,"Z1200-Gardnersnesville",2036183,,"2-Female",44,7,"2-Completed ABC","1-Christian","","","","",,"5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;7-Weakness",7,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",250,"1-LD",1500,"1-LD","0-None","N","Y","N","N","3-Many times","Y",0,2,2,1,2,2,99,,"Y","Y","2-Child present"
,"1/7/2015 10:15:46",2036,"Z1200-Gardnersnesville",2036181,,"1-Male",26,13,"7-Some university","1-Christian","1-Yes","13-Rivercess","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;4-Headache;6-Sore throat",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",800,"1-LD",1300,"1-LD","1-Professional","Y","Y","N","N","2-Several times","Y",0,3,2,2,2,3,99,,"Y","N","0-None"
,"1/7/2015 11:05:47",2036,"Z1200-Gardnersnesville",2036182,,"2-Female",52,7,"2-Completed ABC","1-Christian","0-No","","0-No","",,"97-Dont know","1-Vomiting;2-Fever;4-Headache",21,"0-No","N","Y","N","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",6000,"1-LD",30000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,0,0,0,2,2,99,,"Y","Y","2-Child present"
,"1/7/2015 11:46:42",2036,"Z1200-Gardnersnesville",2036142,,"2-Female",25,5,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness",21,"0-No","N","Y","N","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",1000,"1-LD","6-Domestic services","Y","Y","N","Y","0-Never","Y",2,7,0,2,1,2,2,,"Y","Y","3-Spouse present"
,"1/7/2015 10:08:14",2036,"Z1200-Gardnersnesville",2036121,,"2-Female",26,2,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes;88-Other",3,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",4000,"1-LD",8000,"1-LD","5-Unskilled manual","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"1/7/2015 13:08:05",2036,"Z1200-Gardnersnesville",2036175,,"2-Female",45,6,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;7-Weakness",7,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders;88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,0,,"0-Never",500,"1-LD",1500,"1-LD","6-Domestic services","Y","Y","Y","Y","0-Never","N",0,0,0,5,2,2,0,,"Y","N","0-None"
,"1/7/2015 11:07:48",2036,"Z1200-Gardnersnesville",2036102,,"2-Female",47,5,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe","1-Vomiting;2-Fever;5-Joint and muscle pain;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"3-Many times",1000,"1-LD",3000,"1-LD","3-Sales and services","N","Y","Y","Y","3-Many times","Y",4,4,0,2,99,99,99,,"Y","N","0-None"
,"1/7/2015 11:39:45",2036,"Z1200-Gardnersnesville",2036123,,"2-Female",34,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac;88-Other","2-Fever;3-Diarrhea;4-Headache;11-Hiccups;88-Other",4,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","97-Do not know","1-Agree","0-No","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","5-Unskilled manual","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"1/7/2015 13:08:26",2036,"Z1200-Gardnersnesville",2036143,,"1-Male",34,6,"8-Completed university","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",10,3,,"1-Just once or twice",3000,"1-LD",50,"2-USD","1-Professional","N","Y","Y","Y","0-Never","N",0,2,0,3,2,3,0,,"Y","N","0-None"
,"1/7/2015 13:00:53",2036,"Z1200-Gardnersnesville",2036104,,"2-Female",53,5,"0-None","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea",7,"0-No","Y","Y","Y","N",,"1-Just once or twice",2,"N","","","","Y","Y","","2-Hospital",,"0-No","0-No",0,"88-Other","0-Disagree","97-Do not know","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"1-Just once or twice",0,"88-N/A",4900,"1-LD","0-None","N","N","Y","Y","2-Several times","Y",3,4,0,5,2,3,0,,"Y","N","0-None"
,"1/7/2015 12:53:21",2036,"Z1200-Gardnersnesville",2036184,,"",,,"","","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;9-Rash;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",400,"1-LD",1500,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",0,2,3,2,2,2,99,,"Y","Y","2-Child present"
,"1/7/2015 12:22:06",2036,"Z1200-Gardnersnesville",2036174,,"1-Male",42,10,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","Y","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"","",,"","","","","","","","",,,,"3-Many times",25000,"1-LD",30000,"1-LD","3-Sales and services","N","N","Y","Y","2-Several times","Y",5,3,0,7,2,3,0,,"Y","N","0-None"
,"1/7/2015 10:18:55",2036,"Z1200-Gardnersnesville",2036171,,"2-Female",23,5,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","97-Does not know",4,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs;88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",500,"1-LD",1000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",5,2,0,6,1,2,0,,"Y","N","0-None"
,"1/7/2015 10:48:02",2036,"Z1200-Gardnersnesville",2036122,,"2-Female",19,10,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;12-Bleeding;88-Other",3,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","5-Unskilled manual","N","N","Y","Y","1-Just once or twice","Y",0,7,0,2,1,1,0,,"Y","N","0-None"
,"1/7/2015 12:28:27",2036,"Z1200-Gardnersnesville",2036124,,"2-Female",20,5,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;4-Headache;9-Rash;10-Red eyes;88-Other",2,"0-No","N","Y","Y","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"1/7/2015 10:59:25",2036,"Z1200-Gardnersnesville",2036172,,"1-Male",19,14,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",4,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",40,"2-USD","0-None","Y","Y","Y","Y","2-Several times","Y",2,1,0,6,1,3,0,,"Y","N","0-None"
,"1/7/2015 10:22:54",2036,"Z1200-Gardnersnesville",2036141,,"1-Male",52,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",2000,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",3,3,4,2,2,3,2,,"Y","N","0-None"
,"1/7/2015 12:11:47",2036,"Z1200-Gardnersnesville",2036103,,"1-Male",61,7,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;9-Rash;10-Red eyes;12-Bleeding",3,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"88-N/A","0-None","N","N","N","N","1-Just once or twice","Y",0,0,0,0,1,3,0,,"Y","N","0-None"
,"1/7/2015 11:39:41",2036,"Z1200-Gardnersnesville",2036173,,"1-Male",20,16,"4-Completed junior high","1-Christian","","","","",,"","",,"","","","","",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"2-Several times",550,"1-LD",1100,"1-LD","0-None","Y","Y","Y","Y","2-Several times","Y",4,2,0,6,2,3,0,,"Y","N","0-None;88-Other"
,"12/29/2014 9:46:00",2037,"Z1200-Gardnersnesville",2037191,,"1-Male",38,6,"7-Some university","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;4-Headache;6-Sore throat",21,"0-No","N","Y","Y","N",,"4-Always",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",4000,"1-LD",5000,"1-LD","1-Professional","N","N","N","N","4-Always","Y",5,7,0,5,2,3,0,,"Y","Y","2-Child present;4-Friend present"
,"12/29/2014 9:40:03",2037,"Z1200-Gardnersnesville",2037161,,"2-Female",43,11,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;9-Rash;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",1,"6-Community group","1-Agree","97-Do not know","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1300,"1-LD",4800,"1-LD","3-Sales and services","N","N","Y","N","2-Several times","Y",2,4,0,3,2,3,0,,"Y","N","0-None"
,"12/29/2014 13:05:12",2037,"Z1200-Gardnersnesville",2037115,,"2-Female",23,6,"2-Completed ABC","2-Muslim","","","","",,"2-Eating fruit bitten by bats;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes;18-Cough",7,"0-No","Y","Y","Y","N",,"3-Many times",3,"Y","N","Y","","N","","","",,"1-Yes","0-No",1,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,2,,"3-Many times",200,"1-LD",800,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,6,3,1,2,3,,"Y","N","2-Child present;4-Friend present"
,"12/29/2014 10:20:29",2037,"Z1200-Gardnersnesville",2037112,,"2-Female",30,5,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding;18-Cough",21,"1-Yes","Y","Y","N","N",,"3-Many times",1,"Y","N","Y","","Y","Y","","6-Family or self",,"1-Yes","0-No",2,"1-Community leaders;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","97-Do not know","97-Do not know",0,0,,"3-Many times",5,"2-USD",45,"2-USD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,7,3,1,3,3,,"Y","N","2-Child present;4-Friend present"
,"12/29/2014 11:59:00",2037,"Z1200-Gardnersnesville",2037114,,"1-Male",45,10,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;12-Bleeding",7,"1-Yes","N","Y","Y","N",,"3-Many times",4,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",6,"1-Community leaders;2-Religious leaders","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"3-Many times",500,"1-LD",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,6,5,4,1,2,3,,"Y","N","2-Child present;3-Spouse present"
,"12/29/2014 9:44:55",2037,"Z1200-Gardnersnesville",2037131,,"2-Female",23,2,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache",4,"1-Yes","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","0-None","N","N","N","N","0-Never","Y",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/29/2014 13:05:40",2037,"Z1200-Gardnersnesville",2037135,,"1-Male",53,9,"6-Completed high school","2-Muslim","1-Yes","9-Margibi","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"3-Many times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",500,"1-LD",1200,"1-LD","7-Agriculture","N","N","N","N","1-Just once or twice","Y",2,2,0,2,1,1,0,,"Y","N","88-Other"
,"12/29/2014 10:30:32",2037,"Z1200-Gardnersnesville",2037132,,"1-Male",40,5,"7-Some university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",3,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,,,"1-Just once or twice",400,"1-LD",5000,"1-LD","5-Unskilled manual","N","N","N","N","0-Never","Y",3,3,0,2,2,2,0,,"Y","N","0-None"
,"12/29/2014 11:24:51",2037,"Z1200-Gardnersnesville",2037193,,"2-Female",38,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","2-Fever;6-Sore throat;10-Red eyes",21,"0-No","N","N","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"1-LD",500,"1-LD","0-None","N","N","N","N","0-Never","Y",0,7,3,0,2,3,0,,"Y","N","0-None"
,"12/29/2014 9:44:01",2037,"Z1200-Gardnersnesville",2037111,,"1-Male",33,4,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding;18-Cough",3,"1-Yes","Y","Y","Y","N",,"2-Several times",1,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,8,,"3-Many times",1400,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",3,5,6,4,1,1,2,,"Y","N","2-Child present;3-Spouse present"
,"12/29/2014 10:38:54",2037,"Z1200-Gardnersnesville",2037192,,"2-Female",29,5,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;7-Weakness;8-Stomach pain;9-Rash",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",60,"2-USD","2-Clerical","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/29/2014 12:02:19",2037,"Z1200-Gardnersnesville",2037134,,"1-Male",20,0,"5-Some high school","1-Christian","","","","",,"97-Dont know","97-Does not know",21,"0-No","Y","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",600,"1-LD",1000,"1-LD","5-Unskilled manual","N","Y","N","N","0-Never","N",0,0,0,0,99,99,0,,"Y","N","0-None"
,"12/29/2014 12:06:58",2037,"Z1200-Gardnersnesville",2037164,,"2-Female",34,10,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",1,"Y","N","N","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,2,,"2-Several times",0,"1-LD",2000,"1-LD","0-None","Y","N","N","N","0-Never","Y",0,2,0,3,2,3,0,,"Y","N","0-None"
,"12/29/2014 10:29:48",2037,"Z1200-Gardnersnesville",2037162,,"1-Male",38,9,"7-Some university","2-Muslim","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","98-Refuse to answer","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",2500,"1-LD",5000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,2,0,1,2,2,0,,"Y","N","0-None"
,"12/29/2014 11:14:02",2037,"Z1200-Gardnersnesville",2037133,,"2-Female",28,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",150,"1-LD",300,"1-LD","88-Other","N","N","N","N","2-Several times","Y",3,3,0,2,2,3,0,,"Y","N","0-None"
,"12/29/2014 12:58:05",2037,"Z1200-Gardnersnesville",2037195,,"2-Female",27,10,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;5-Joint and muscle pain;9-Rash;10-Red eyes",3,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",500,"1-LD","0-None","N","N","N","N","2-Several times","Y",7,7,0,7,1,2,0,,"Y","N","0-None"
,"12/29/2014 11:13:16",2037,"Z1200-Gardnersnesville",2037113,,"2-Female",53,12,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;10-Red eyes;12-Bleeding;18-Cough",21,"1-Yes","N","Y","Y","N",,"3-Many times",3,"Y","Y","","","Y","N","Y","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"3-Many times",500,"1-LD",4000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,5,7,5,1,3,2,,"Y","N","2-Child present"
,"12/29/2014 11:17:32",2037,"Z1200-Gardnersnesville",2037163,,"2-Female",40,7,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;7-Weakness;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"1-Just once or twice",7000,"1-LD",9500,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,2,0,0,2,2,0,,"Y","N","0-None"
,"12/29/2014 14:44:13",2037,"Z1200-Gardnersnesville",2037165,,"2-Female",22,2,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,3,,"0-Never",1600,"1-LD",2500,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"12/29/2014 12:23:10",2037,"Z1200-Gardnersnesville",2037194,,"2-Female",30,6,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes",0,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",500,"1-LD",0,"1-LD","0-None","N","N","N","N","0-Never","Y",5,30,0,0,1,2,0,,"Y","Y","88-Other"
,"12/22/2014 15:58:34",2038,"Z1200-Gardnersnesville",2038101,,"2-Female",48,25,"0-None","2-Muslim","0-No","","0-No","",,"97-Dont know","1-Vomiting;3-Diarrhea",0,"0-No","N","Y","N","N",,"0-Never",5,"N","","","","N","","","",,"0-No","0-No",2,"1-Community leaders","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",700,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/22/2014 14:37:26",2038,"Z1200-Gardnersnesville",2038124,,"1-Male",45,7,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;88-Other",7,"1-Yes","N","Y","N","N",,"2-Several times",2,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","1-Professional","Y","Y","N","N","3-Many times","Y",0,4,0,4,1,2,0,,"Y","N","0-None"
,"12/22/2014 13:53:33",2038,"Z1200-Gardnersnesville",2038123,,"1-Male",24,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;88-Other",3,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","6-Domestic services","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/22/2014 16:03:22",2038,"Z1200-Gardnersnesville",2038171,,"2-Female",43,7,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",9,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",3000,"1-LD",5000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",3,3,1,5,1,3,0,,"Y","N","0-None"
,"12/22/2014 17:10:41",2038,"Z1200-Gardnersnesville",2038127,,"2-Female",20,8,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;5-Joint and muscle pain;6-Sore throat;11-Hiccups;88-Other",8,"1-Yes","N","Y","N","N",,"0-Never",3,"Y","N","Y","","Y","Y","","2-Hospital",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","5-Unskilled manual","N","N","Y","N","0-Never","Y",0,7,0,0,2,2,0,,"Y","N","0-None"
,"12/22/2014 15:30:46",2038,"Z1200-Gardnersnesville",2038125,,"1-Male",26,18,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;88-Other",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",500,"1-LD","6-Domestic services","Y","Y","Y","Y","0-Never","N",2,3,0,2,2,3,0,,"Y","N","0-None"
,"12/22/2014 13:10:46",2038,"Z1200-Gardnersnesville",2038202,,"1-Male",39,1,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness;9-Rash",1,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",300,"1-LD",1200,"1-LD","4-Skilled manual","N","N","N","N","2-Several times","Y",2,7,0,2,2,3,0,,"Y","N","0-None"
,"12/22/2014 16:07:18",2038,"Z1200-Gardnersnesville",2038204,,"2-Female",34,5,"6-Completed high school","2-Muslim","0-No","","0-No","",,"88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",3,"0-No","N","Y","N","N",,"1-Just once or twice",0,"","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",1500,"1-LD",4000,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","N",3,7,2,2,2,3,0,,"Y","N","0-None"
,"12/22/2014 17:00:02",2038,"Z1200-Gardnersnesville",2038182,,"2-Female",36,4,"88-Other","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business","1-Vomiting;3-Diarrhea;10-Red eyes",2,"0-No","Y","Y","Y","",,"2-Several times",1,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0",0,0,,"3-Many times",500,"1-LD",950,"1-LD","0-None","N","Y","N","N","3-Many times","Y",4,3,2,4,1,3,99,,"Y","Y","2-Child present"
,"12/22/2014 16:24:09",2038,"Z1200-Gardnersnesville",2038126,,"1-Male",44,4,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;9-Rash;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"1-Just once or twice",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","1-Professional","Y","N","N","N","1-Just once or twice","N",3,3,0,2,2,2,0,,"Y","N","0-None"
,"12/22/2014 16:59:32",2038,"Z1200-Gardnersnesville",2038102,,"2-Female",32,12,"0-None","1-Christian","","","","",,"88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",3,"0-No","N","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"0-No","0-No",2,"1-Community leaders;3-Community members","0-Disagree","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",3000,"1-LD","3-Sales and services","N","Y","N","Y","2-Several times","Y",0,2,0,3,1,2,0,,"Y","N","0-None"
,"12/22/2014 16:58:27",2038,"Z1200-Gardnersnesville",2038172,,"2-Female",53,15,"2-Completed ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;3-Diarrhea;7-Weakness",3,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",7000,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","Y",2,5,3,5,2,3,2,,"Y","N","0-None"
,"12/22/2014 12:58:17",2038,"Z1200-Gardnersnesville",2038122,,"2-Female",52,8,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","5-Unskilled manual","Y","Y","Y","Y","0-Never","N",0,0,0,0,1,1,0,,"Y","N","0-None"
,"12/22/2014 16:11:05",2038,"Z1200-Gardnersnesville",2038181,,"1-Male",51,8,"7-Some university","1-Christian","","","","",,"88-Other","3-Diarrhea;7-Weakness;9-Rash;10-Red eyes",2,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",7000,"1-LD","4-Skilled manual","Y","Y","N","Y","2-Several times","Y",2,7,0,0,1,3,99,,"Y","N","0-None"
,"12/22/2014 14:02:18",2038,"Z1200-Gardnersnesville",2038203,,"2-Female",44,5,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea",21,"1-Yes","N","Y","N","N",,"1-Just once or twice",0,"","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",2000,"1-LD",5000,"1-LD","4-Skilled manual","N","N","N","N","2-Several times","Y",0,7,0,0,2,3,0,,"Y","N","0-None"
,"12/22/2014 17:47:27",2038,"Z1200-Gardnersnesville",2038142,,"2-Female",35,10,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes;12-Bleeding",7,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",14,0,,"0-Never",50,"2-USD",0,"1-LD","1-Professional","N","Y","N","Y","0-Never","N",0,0,0,0,3,3,0,,"Y","N","2-Child present;4-Friend present"
,"12/22/2014 16:07:43",2038,"Z1200-Gardnersnesville",2038141,,"2-Female",45,5,"2-Completed ABC","1-Christian","1-Yes","10-Maryland","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",750,"1-LD",2500,"1-LD","6-Domestic services","Y","Y","N","Y","2-Several times","Y",0,4,0,5,1,2,0,,"N","N","2-Child present"
,"12/22/2014 11:26:45",2038,"Z1200-Gardnersnesville",2038201,,"1-Male",28,11,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;6-Sore throat;7-Weakness;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"1-Just once or twice",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",350,"1-LD",1400,"1-LD","1-Professional","N","N","N","N","2-Several times","Y",4,7,3,3,1,2,0,,"Y","N","88-Other"
,"12/11/2014 17:58:24",2039,"Z1300-New George",2039128,,"1-Male",44,8,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;9-Rash;11-Hiccups;88-Other",21,"1-Yes","N","Y","Y","N",,"3-Many times",2,"N","","","","N","","","",,"1-Yes","1-Yes",10,"1-Community leaders;6-Community group","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","4-Skilled manual","N","N","N","N","3-Many times","Y",7,7,7,7,1,3,0,,"Y","N","0-None"
,"12/11/2014 17:15:28",2039,"Z1300-New George",2039127,,"1-Male",30,10,"0-None","2-Muslim","","","","",,"4-Man woman business;5-Touching dead bodies;88-Other","2-Fever;10-Red eyes;88-Other",2,"1-Yes","Y","N","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",20,"2-USD",50,"2-USD","4-Skilled manual","N","Y","N","Y","3-Many times","Y",7,7,0,0,1,3,0,,"Y","N","0-None"
,"12/11/2014 13:24:06",2039,"Z1300-New George",2039123,,"2-Female",26,16,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash;17-Chest pain",21,"1-Yes","N","Y","Y","N",,"0-Never",4,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",7000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",3,3,0,2,2,3,0,,"Y","N","0-None"
,"12/11/2014 14:13:53",2039,"Z1300-New George",2039124,,"1-Male",66,21,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;12-Bleeding",3,"0-No","N","Y","N","N",,"3-Many times",0,"","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",6000,"1-LD","1-Professional","Y","Y","N","N","3-Many times","Y",7,7,0,7,1,2,0,,"Y","N","0-None"
,"12/11/2014 11:32:01",2039,"Z1300-New George",2039121,,"1-Male",47,5,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;88-Other",7,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","97-Do not know","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"3-Many times",0,"88-N/A",500,"1-LD","1-Professional","Y","Y","Y","Y","0-Never","Y",0,2,0,0,2,3,0,,"Y","N","0-None"
,"12/22/2014 11:16:21",2039,"Z1300-New George",2038121,,"2-Female",30,4,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;4-Headache",97,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",2000,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",3,3,0,3,1,3,3,,"Y","N","0-None"
,"12/11/2014 11:13:55",2039,"Z1300-New George",2039141,,"2-Female",26,12,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",3,"0-No","Y","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",850,"1-LD","1-Professional","Y","Y","Y","Y","0-Never","Y",3,3,3,4,1,2,0,,"Y","Y","0-None"
,"12/11/2014 14:02:17",2039,"Z1300-New George",2039174,,"1-Male",28,4,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",3000,"1-LD",5800,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,5,1,1,0,,"Y","N","0-None"
,"12/11/2014 16:08:40",2039,"Z1300-New George",2039144,,"2-Female",37,6,"6-Completed high school","1-Christian","","","","",,"97-Dont know","2-Fever;3-Diarrhea;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"Y","N","Y","","N","","","",,"0-No","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",0,"1-LD","1-Professional","N","Y","N","Y","0-Never","Y",0,0,0,0,2,3,0,,"Y","N","0-None"
,"12/11/2014 11:13:33",2039,"Z1300-New George",2039171,,"2-Female",35,7,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness",21,"0-No","N","Y","Y","Y",,"0-Never",1,"N","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",2000,"1-LD",70,"2-USD","2-Clerical","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/11/2014 12:35:28",2039,"Z1300-New George",2039172,,"1-Male",28,3,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;3-Diarrhea;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",95,"2-USD","1-Professional","Y","Y","N","N","4-Always","Y",2,4,0,7,2,3,0,,"Y","N","0-None"
,"12/11/2014 13:16:40",2039,"Z1300-New George",2039173,,"2-Female",40,6,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness",1,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,0,,"3-Many times",2000,"1-LD",6000,"1-LD","0-None","N","Y","Y","Y","0-Never","N",,1,0,2,2,3,0,,"Y","N","0-None"
,"12/11/2014 16:25:48",2039,"Z1300-New George",2039126,,"2-Female",41,22,"0-None","1-Christian","0-No","","0-No","",,"4-Man woman business;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",3000,"1-LD",5000,"1-LD","4-Skilled manual","N","Y","Y","Y","3-Many times","Y",3,7,4,0,1,2,0,,"Y","N","0-None"
,"12/11/2014 14:41:04",2039,"Z1300-New George",2039143,,"1-Male",47,8,"6-Completed high school","1-Christian","","","","",,"97-Dont know","2-Fever;3-Diarrhea;7-Weakness;11-Hiccups",21,"1-Yes","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",500,"1-LD",6500,"1-LD","1-Professional","Y","Y","N","N","2-Several times","Y",0,0,0,0,2,2,0,,"Y","Y","0-None"
,"12/11/2014 13:31:34",2039,"Z1300-New George",2039142,,"1-Male",45,5,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats","2-Fever;10-Red eyes",0,"0-No","Y","N","Y","Y",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"1-Just once or twice",0,"1-LD",6000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",4,3,0,3,1,3,0,,"Y","Y","2-Child present"
,"12/11/2014 15:23:14",2039,"Z1300-New George",2039175,,"1-Male",28,8,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",4,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",3400,"1-LD","0-None","Y","Y","Y","Y","3-Many times","Y",2,3,2,6,1,3,1,,"Y","N","0-None"
,"12/11/2014 15:00:51",2039,"Z1300-New George",2039125,,"1-Male",27,7,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;4-Headache",7,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",12000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",4,7,1,1,1,3,1,,"Y","N","0-None"
,"12/11/2014 16:25:22",2039,"Z1300-New George",2039176,,"1-Male",20,6,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding",3,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",30,"2-USD","0-None","N","N","Y","Y","3-Many times","Y",2,1,0,4,2,3,0,,"Y","N","0-None"
,"12/11/2014 12:34:15",2039,"Z1300-New George",2039122,,"1-Male",31,25,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;6-Sore throat;7-Weakness",5,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","1-Yes","0-No",0,0,,"3-Many times",0,"88-N/A",3500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",2,7,0,3,2,3,0,,"Y","N","0-None"
,"12/11/2014 17:17:01",2039,"Z1300-New George",2039145,,"2-Female",34,5,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",21,"0-No","N","Y","Y","N",,"2-Several times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"1-Community leaders","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",1000,"1-LD",7000,"1-LD","1-Professional","Y","Y","N","Y","2-Several times","Y",4,2,0,3,1,2,0,,"Y","Y","2-Child present"
,"12/10/2014 14:06:10",2040,"Z1300-New George",2040201,,"1-Male",22,10,"5-Some high school","2-Muslim","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash;10-Red eyes",7,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",3,"3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",300,"1-LD",400,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",1,2,0,2,2,2,0,,"Y","N","88-Other"
,"12/10/2014 14:20:35",2040,"Z1300-New George",2040101,,"2-Female",31,5,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","2-Fever;4-Headache;5-Joint and muscle pain;6-Sore throat",0,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"2-Several times",0,"1-LD",8000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",1,7,0,2,1,3,0,,"Y","N","0-None"
,"12/10/2014 16:05:57",2040,"Z1300-New George",20401427,,"1-Male",60,8,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"1-LD",0,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",3,5,0,7,1,2,0,,"Y","N","3-Spouse present"
,"12/10/2014 17:08:43",2040,"Z1300-New George",2040103,,"2-Female",48,4,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","2-Fever;6-Sore throat;18-Cough",7,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","Y","Y","","88-Other",,"1-Yes","1-Yes",3,"6-Community group","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","0-None","N","N","N","N","2-Several times","Y",2,3,2,1,1,1,0,,"Y","Y","0-None"
,"12/10/2014 17:10:07",2040,"Z1300-New George",2044203,,"1-Male",43,9,"8-Completed university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",3,"3-Community members;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",100,"1-LD",8000,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",1,4,4,7,1,2,0,,"Y","Y","0-None"
,"12/10/2014 15:39:45",2040,"Z1300-New George",2040122,,"2-Female",44,5,"1-Some ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac;97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",1000,"1-LD","6-Domestic services","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/10/2014 17:17:28",2040,"Z1300-New George",20401428,,"1-Male",22,15,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,1,,"2-Several times",200,"1-LD",400,"1-LD","88-Other","N","N","Y","Y","0-Never","N",2,0,0,3,2,2,0,,"Y","N","0-None"
,"12/10/2014 17:08:56",2040,"Z1300-New George",2040183,,"1-Male",45,5,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","1-Vomiting;7-Weakness",2,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"","0-Disagree","0-Disagree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",100,"1-LD",100,"1-LD","1-Professional","Y","Y","N","Y","3-Many times","Y",2,2,1,2,2,3,99,,"Y","Y","88-Other"
,"12/10/2014 15:39:04",2040,"Z1300-New George",2040102,,"2-Female",31,10,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe","3-Diarrhea;4-Headache;7-Weakness;8-Stomach pain;10-Red eyes;15-Chills",0,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0",0,0,,"1-Just once or twice",1000,"1-LD",2500,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",2,4,0,3,99,99,99,,"Y","N","0-None"
,"12/10/2014 15:04:12",2040,"Z1300-New George",2040172,,"2-Female",48,8,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;3-Diarrhea;9-Rash;12-Bleeding",7,"1-Yes","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",2,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","97-Do not know",0,1,,"3-Many times",500,"1-LD",15000,"1-LD","2-Clerical","Y","Y","Y","Y","3-Many times","Y",3,2,2,4,1,2,0,,"Y","N","0-None"
,"12/10/2014 16:44:58",2040,"Z1300-New George",2040174,,"1-Male",27,6,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",2,1,,"3-Many times",4000,"1-LD",20000,"1-LD","1-Professional","N","N","N","N","3-Many times","Y",1,2,0,0,3,3,0,,"Y","N","0-None"
,"12/10/2014 16:00:35",2040,"Z1300-New George",2040182,,"2-Female",41,4,"6-Completed high school","1-Christian","","","","",,"5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"1-Yes","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"6-Community group","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",200,"1-LD","6-Domestic services","Y","Y","Y","Y","3-Many times","N",3,1,2,1,2,2,99,,"Y","Y","2-Child present"
,"12/10/2014 14:44:37",2040,"Z1300-New George",2040181,,"2-Female",22,9,"6-Completed high school","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;97-Does not know",21,"0-No","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",300,"1-LD",300,"1-LD","0-None","N","N","N","N","0-Never","N",0,4,0,0,1,3,99,,"Y","N","0-None"
,"12/10/2014 17:21:58",2040,"Z1300-New George",2040204,,"2-Female",47,6,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;9-Rash;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",2000,"1-LD",3000,"1-LD","1-Professional","N","N","N","N","1-Just once or twice","N",0,0,0,3,99,99,99,,"Y","N","88-Other"
,"12/10/2014 14:05:05",2040,"Z1300-New George",2040121,,"2-Female",24,4,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes;18-Cough;97-Does not know",14,"0-No","N","Y","Y","N",,"2-Several times",2,"Y","Y","","","Y","Y","","1-Clinic",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",3000,"1-LD",5000,"1-LD","5-Unskilled manual","Y","Y","N","N","2-Several times","Y",1,4,3,4,3,4,0,,"Y","N","0-None"
,"12/10/2014 17:08:58",2040,"Z1300-New George",2040124,,"1-Male",73,13,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","0-Disagree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",0,"88-N/A","0-None","N","N","N","N","3-Many times","Y",7,7,1,7,1,2,7,,"Y","N","0-None"
,"12/10/2014 16:04:40",2040,"Z1300-New George",2040173,,"2-Female",31,11,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;5-Joint and muscle pain;7-Weakness;11-Hiccups",5,"0-No","N","Y","Y","Y",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","97-Do not know",0,2,,"0-Never",25000,"1-LD",3000,"1-LD","6-Domestic services","N","N","N","N","3-Many times","Y",2,1,0,3,2,2,0,,"Y","N","0-None"
,"12/10/2014 16:05:46",2040,"Z1300-New George",2040203,,"2-Female",45,4,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;4-Headache;6-Sore throat;9-Rash;10-Red eyes",2,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",2,"88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"0-Never",0,"1-LD",2000,"1-LD","2-Clerical","N","N","N","N","0-Never","N",1,0,0,0,2,2,0,,"N","Y","88-Other"
,"12/10/2014 14:19:54",2040,"Z1300-New George",2040171,,"2-Female",30,8,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;9-Rash",7,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","97-Do not know",0,0,,"0-Never",350,"1-LD",5000,"1-LD","6-Domestic services","N","N","N","N","0-Never","N",0,0,0,2,2,2,0,,"Y","N","0-None"
,"12/10/2014 17:32:24",2040,"Z1300-New George",2040175,,"1-Male",51,5,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;8-Stomach pain;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",5,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",6700,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",2,1,0,4,1,3,0,,"Y","N","0-None"
,"12/10/2014 16:21:26",2040,"Z1300-New George",2040123,,"2-Female",23,5,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"2-Several times",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",10000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",7,2,5,7,1,3,5,,"Y","N","0-None"
,"12/10/2014 9:58:34",2041,"Z1300-New George",20411424,,"1-Male",52,14,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash;10-Red eyes;12-Bleeding",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",500,"1-LD","4-Skilled manual","N","Y","Y","Y","0-Never","N",0,0,0,2,2,3,0,,"Y","N","2-Child present"
,"12/10/2014 12:37:17",2041,"Z1300-New George",2041174,,"2-Female",49,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;7-Weakness;8-Stomach pain",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","97-Do not know",0,0,,"3-Many times",2000,"1-LD",8000,"1-LD","0-None","Y","Y","Y","Y","3-Many times","Y",1,2,0,1,2,2,0,,"Y","N","0-None"
,"12/10/2014 13:37:14",2041,"Z1300-New George",2041185,,"1-Male",41,7,"5-Some high school","1-Christian","","","","",,"88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",5,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",200,"1-LD",200,"1-LD","6-Domestic services","Y","Y","N","Y","3-Many times","Y",1,1,3,3,2,3,99,,"Y","N","0-None"
,"12/10/2014 11:20:34",2041,"Z1300-New George",2041123,,"2-Female",39,10,"4-Completed junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","3-Diarrhea;4-Headache;6-Sore throat;8-Stomach pain;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;3-Community members","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",10,"2-USD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",5,7,3,4,1,3,0,,"Y","N","0-None"
,"12/10/2014 11:25:19",2041,"Z1300-New George",20411425,,"2-Female",42,17,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,1,,"2-Several times",2000,"1-LD",5000,"1-LD","6-Domestic services","N","Y","Y","Y","1-Just once or twice","Y",4,3,2,6,2,3,0,,"Y","N","4-Friend present"
,"12/10/2014 12:27:06",2041,"Z1300-New George",2041103,,"2-Female",22,2,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache",21,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"1-LD",0,"1-LD","0-None","N","N","Y","Y","2-Several times","Y",0,5,0,2,99,99,99,,"Y","N","0-None"
,"12/10/2014 9:52:09",2041,"Z1300-New George",2041181,,"2-Female",20,9,"6-Completed high school","2-Muslim","","","","",,"5-Touching dead bodies","1-Vomiting;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",150,"1-LD",150,"1-LD","0-None","Y","N","Y","N","0-Never","N",0,0,0,0,99,99,99,,"Y","Y","2-Child present"
,"12/10/2014 14:33:03",2041,"Z1300-New George",20411427,,"2-Female",19,8,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness",21,"0-No","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",1,"1-Community leaders","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"","",""
,"12/10/2014 11:35:37",2041,"Z1300-New George",2041183,,"2-Female",52,5,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","2-Fever;4-Headache",0,"1-Yes","Y","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",5000,"1-LD",5000,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",1,1,2,1,2,3,99,,"Y","N","2-Child present"
,"12/10/2014 12:44:05",2041,"Z1300-New George",2041184,,"1-Male",28,8,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;4-Headache;7-Weakness",7,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",2,"4-NGOs","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1600,"1-LD",1600,"1-LD","4-Skilled manual","Y","Y","N","Y","1-Just once or twice","N",0,0,0,0,2,2,99,,"Y","N","0-None"
,"12/10/2014 10:50:01",2041,"Z1300-New George",2041182,,"2-Female",20,7,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;88-Other","1-Vomiting;3-Diarrhea;4-Headache",2,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",2,"4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,3,,"0-Never",400,"1-LD",400,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,2,3,99,,"Y","N","0-None"
,"12/10/2014 10:50:50",2041,"Z1300-New George",2041172,,"1-Male",31,1,"0-None","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,3,,"0-Never",2000,"1-LD",4000,"1-LD","2-Clerical","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/10/2014 10:39:46",2041,"Z1300-New George",2041122,,"1-Male",19,9,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;88-Other",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",700,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","N",7,7,0,0,1,2,0,,"Y","N","0-None"
,"12/10/2014 9:52:57",2041,"Z1300-New George",2041101,,"2-Female",37,13,"6-Completed high school","1-Christian","","","","",,"","",,"","","","","",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",1250,"1-LD","3-Sales and services","Y","Y","Y","Y","4-Always","Y",3,4,3,7,1,3,1,,"Y","N","0-None"
,"12/10/2014 11:17:12",2041,"Z1300-New George",2041102,,"2-Female",33,9,"6-Completed high school","1-Christian","","","","",,"97-Dont know","2-Fever;4-Headache;10-Red eyes",3,"0-No","N","Y","N","N",,"1-Just once or twice",2,"Y","Y","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","0-No","1-Yes","0-No","0-No","0",0,0,,"2-Several times",1000,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",3,4,3,3,1,2,0,,"Y","N","0-None"
,"12/10/2014 12:41:20",2041,"Z1300-New George",2041201,,"1-Male",19,10,"3-Some junior high","2-Muslim","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache",21,"0-No","N","Y","N","N",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","1-Yes",2,"3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",400,"1-LD",400,"1-LD","0-None","N","N","N","","1-Just once or twice","N",1,0,0,2,2,2,0,,"Y","N","0-None"
,"12/10/2014 12:48:32",2041,"Z1300-New George",20411426,,"1-Male",54,8,"7-Some university","1-Christian","0-No","","1-Yes","15-Sinoe",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",9,"1-Yes","N","Y","N","N",,"2-Several times",4,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"3-Community members;5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",0,"1-LD","1-Professional","Y","Y","Y","Y","2-Several times","Y",3,3,0,3,2,3,0,,"Y","N","0-None"
,"12/10/2014 9:53:55",2041,"Z1300-New George",2041121,,"2-Female",38,8,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",5000,"1-LD","1-Professional","N","Y","Y","Y","1-Just once or twice","Y",3,7,1,0,2,3,0,,"Y","N","0-None"
,"12/10/2014 9:56:13",2041,"Z1300-New George",2041171,,"2-Female",28,3,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",21,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",15000,"1-LD","0-None","N","N","N","N","3-Many times","Y",3,3,2,5,1,3,2,,"Y","N","0-None"
,"12/10/2014 12:43:42",2041,"Z1300-New George",2041124,,"2-Female",45,16,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea;9-Rash;10-Red eyes;12-Bleeding",97,"0-No","Y","Y","N","N",,"1-Just once or twice",1,"Y","Y","","","Y","Y","","1-Clinic",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","1-Professional","N","N","Y","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/10/2014 11:36:21",2041,"Z1300-New George",2041173,,"2-Female",52,6,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;5-Joint and muscle pain;8-Stomach pain;18-Cough",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,2,,"3-Many times",2500,"1-LD",7500,"1-LD","0-None","N","Y","N","Y","3-Many times","Y",5,3,1,3,1,3,1,,"Y","Y","2-Child present"
,"12/12/2014 15:06:36",2042,"Z1300-New George",2042105,,"1-Male",34,5,"1-Some ABC","2-Muslim","0-No","","0-No","",,"3-Bodily fluids of infected pe;88-Other","2-Fever;4-Headache",21,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",3000,"1-LD",7000,"1-LD","3-Sales and services","Y","Y","Y","Y","1-Just once or twice","Y",3,5,6,3,1,3,3,,"Y","N","0-None"
,"12/12/2014 13:18:25",2042,"Z1300-New George",2042183,,"1-Male",44,7,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea",7,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",100,"1-LD",4000,"1-LD","2-Clerical","N","Y","N","Y","0-Never","N",0,0,0,0,3,3,99,,"Y","Y","2-Child present"
,"12/12/2014 15:42:54",2042,"Z1300-New George",2042185,,"2-Female",63,5,"0-None","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe","97-Does not know",2,"0-No","N","N","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",200,"1-LD",400,"1-LD","6-Domestic services","N","Y","N","Y","0-Never","N",1,3,2,0,2,3,99,,"Y","Y","2-Child present"
,"12/12/2014 12:26:51",2042,"Z1300-New George",2042102,,"2-Female",29,15,"5-Some high school","1-Christian","","","","",,"97-Dont know","1-Vomiting;3-Diarrhea;10-Red eyes",21,"0-No","Y","Y","N","Y",,"0-Never",3,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","97-Do not know","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",200,"1-LD",500,"1-LD","0-None","N","Y","N","N","0-Never","Y",0,0,0,0,2,2,0,,"N","Y","0-None"
,"12/12/2014 11:25:51",2042,"Z1300-New George",2042101,,"2-Female",39,5,"0-None","2-Muslim","","","","",,"5-Touching dead bodies","1-Vomiting;10-Red eyes;12-Bleeding",0,"0-No","Y","Y","N","Y",,"1-Just once or twice",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",14,"1-LD",2800,"1-LD","0-None","N","Y","N","Y","0-Never","Y",0,1,1,0,2,2,0,,"N","N","0-None"
,"12/12/2014 11:27:26",2042,"Z1300-New George",2042181,,"1-Male",38,5,"5-Some high school","1-Christian","","","","",,"97-Dont know","88-Other",1,"0-No","Y","Y","Y","N",,"2-Several times",1,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","0-No",0,0,,"3-Many times",200,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","N","Y","1-Just once or twice","N",1,2,0,0,1,3,99,,"Y","Y","2-Child present"
,"12/12/2014 11:26:02",2042,"Z1300-New George",2042201,,"1-Male",70,7,"3-Some junior high","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;4-Headache;9-Rash;10-Red eyes",2,"0-No","N","Y","Y","N",,"2-Several times",3,"N","","","","N","","","",,"1-Yes","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","0-No","97-Do not know",0,0,,"2-Several times",0,"1-LD",13,"2-USD","4-Skilled manual","N","N","N","N","2-Several times","N",1,0,0,3,1,1,0,,"Y","N","0-None"
,"12/12/2014 14:31:25",2042,"Z1300-New George",2042184,,"1-Male",23,9,"6-Completed high school","1-Christian","1-Yes","","0-No","4-Grand Bassa",,"4-Man woman business;88-Other","1-Vomiting;2-Fever;9-Rash;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",4,"4-NGOs","0-Disagree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",100,"1-LD",100,"1-LD","3-Sales and services","Y","Y","Y","Y","3-Many times","N",2,1,0,0,1,3,99,,"Y","N","0-None"
,"12/12/2014 12:34:41",2042,"Z1300-New George",2042202,,"1-Male",24,14,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",21,"0-No","N","Y","Y","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",6,0,,"0-Never",1000,"1-LD",1000,"1-LD","5-Unskilled manual","N","N","N","N","2-Several times","Y",2,3,2,6,1,1,0,,"Y","N",""
,"12/12/2014 14:20:20",2042,"Z1300-New George",2042104,,"1-Male",19,2,"3-Some junior high","2-Muslim","","","","",,"5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;15-Chills",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","1-Yes","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","0-None","N","N","N","N","0-Never","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"12/12/2014 12:20:56",2042,"Z1300-New George",2042182,,"2-Female",45,10,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","3-Diarrhea;4-Headache;6-Sore throat;7-Weakness",0,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",250,"1-LD",3000,"1-LD","3-Sales and services","N","Y","N","","0-Never","N",0,0,2,0,2,2,99,,"Y","Y","2-Child present"
,"12/12/2014 16:03:33",2042,"Z1300-New George",2042106,,"1-Male",29,11,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;9-Rash;10-Red eyes",10,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",3,0,,"2-Several times",0,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",0,0,0,0,99,99,99,,"Y","N","0-None"
,"12/12/2014 16:20:01",2042,"Z1300-New George",2042205,,"1-Male",23,23,"6-Completed high school","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;10-Red eyes",1,"0-No","N","Y","N","N",,"1-Just once or twice",3,"Y","Y","","","Y","Y","","2-Hospital",,"1-Yes","0-No",0,"","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",200,"1-LD",1000,"1-LD","3-Sales and services","N","N","N","N","1-Just once or twice","Y",0,3,0,3,1,1,0,,"N","Y","0-None"
,"12/12/2014 17:19:17",2042,"Z1300-New George",2042187,,"1-Male",35,4,"4-Completed junior high","2-Muslim","","","","",,"1-Preparing or eating bush mea;4-Man woman business","1-Vomiting;9-Rash",2,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"","97-Do not know","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",5000,"1-LD",10000,"1-LD","4-Skilled manual","N","N","N","N","0-Never","N",0,0,2,2,2,2,99,,"Y","Y","88-Other"
,"12/12/2014 17:01:41",2042,"Z1300-New George",2042107,,"2-Female",34,6,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes",1,"1-Yes","Y","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",500,"1-LD",1500,"1-LD","0-None","N","Y","Y","Y","0-Never","Y",3,2,0,3,99,99,99,,"Y","N","0-None"
,"12/12/2014 14:54:15",2042,"Z1300-New George",2042204,,"1-Male",26,18,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;8-Stomach pain;9-Rash;10-Red eyes",7,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"","0-Disagree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",10,"2-USD",75,"2-USD","4-Skilled manual","Y","Y","N","N","0-Never","N",0,5,0,0,2,2,0,,"Y","Y",""
,"12/12/2014 13:23:54",2042,"Z1300-New George",2042103,,"2-Female",21,10,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe","2-Fever;3-Diarrhea;9-Rash",4,"1-Yes","Y","Y","Y","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",0,"1-LD","88-Other","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/12/2014 17:40:27",2042,"Z1300-New George",2042206,,"1-Male",29,15,"7-Some university","2-Muslim","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;9-Rash;10-Red eyes",1,"0-No","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","0-No",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",2000,"1-LD",5000,"1-LD","2-Clerical","N","N","N","N","1-Just once or twice","Y",2,2,0,2,99,99,99,,"Y","Y",""
,"12/12/2014 13:37:07",2042,"Z1300-New George",2042203,,"1-Male",37,6,"3-Some junior high","1-Christian","0-No","","0-No","",,"4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","97-Does not know",21,"0-No","N","Y","Y","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1000,"1-LD",3000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",1,0,3,2,2,2,0,,"Y","N","0-None"
,"12/12/2014 16:31:38",2042,"Z1300-New George",2042186,,"1-Male",54,6,"0-None","1-Christian","0-No","1-Bomi","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;88-Other","9-Rash;88-Other",21,"0-No","Y","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",700,"1-LD",3500,"1-LD","1-Professional","N","Y","N","Y","0-Never","N",0,0,0,0,2,2,99,,"Y","Y","88-Other"
,"12/11/2014 16:45:16",2043,"Z1300-New George",2043106,,"1-Male",54,8,"6-Completed high school","1-Christian","0-No","","1-Yes","12-Nimba",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash",7,"0-No","N","Y","Y","N",,"",,"","","","","","","","",,"","",,"","","","","","","","",,,,"2-Several times",0,"1-LD",4000,"1-LD","88-Other","N","N","N","Y","2-Several times","Y",0,3,0,0,2,2,0,,"Y","N","0-None"
,"12/11/2014 14:29:31",2043,"Z1300-New George",2043104,,"2-Female",47,4,"0-None","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea",21,"0-No","Y","Y","Y","Y",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",7000,"1-LD","3-Sales and services","Y","Y","N","N","0-Never","Y",0,0,0,1,2,2,0,,"Y","N","0-None"
,"1/6/2015 13:37:02",2043,"Z1300-New George",2043186,,"1-Male",37,6,"6-Completed high school","2-Muslim","1-Yes","8-Lofa","0-No","",,"1-Preparing or eating bush mea;4-Man woman business;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea",2,"1-Yes","Y","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"0-Never",2000,"1-LD",5000,"1-LD","4-Skilled manual","N","N","N","N","0-Never","Y",0,0,0,0,2,3,99,,"Y","Y","2-Child present"
,"12/11/2014 13:13:55",2043,"Z1300-New George",2043183,,"1-Male",37,6,"7-Some university","1-Christian","1-Yes","4-Grand Bassa","1-Yes","4-Grand Bassa",,"3-Bodily fluids of infected pe","4-Headache;7-Weakness;10-Red eyes",7,"1-Yes","N","Y","N","N",,"2-Several times",0,"","","","","Y","Y","","88-Other",,"1-Yes","1-Yes",2,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",145,"88-N/A",145,"1-LD","1-Professional","Y","Y","N","Y","2-Several times","Y",2,2,3,2,2,3,99,,"Y","N","0-None"
,"12/11/2014 10:49:44",2043,"Z1300-New George",2043201,,"1-Male",39,6,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","8-Stomach pain;9-Rash;10-Red eyes",1,"0-No","N","Y","N","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",2,"3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",300,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","N",1,2,2,3,1,1,0,,"Y","N","0-None"
,"12/11/2014 10:47:45",2043,"Z1300-New George",2043101,,"1-Male",47,9,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;4-Headache;10-Red eyes",0,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","1-Yes",0,0,,"2-Several times",1000,"1-LD",1800,"1-LD","3-Sales and services","Y","Y","N","N","3-Many times","Y",3,4,0,4,99,99,99,,"Y","N","0-None"
,"12/11/2014 15:42:11",2043,"Z1300-New George",2043185,,"2-Female",30,7,"0-None","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;10-Red eyes",21,"0-No","Y","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",3000,"1-LD","3-Sales and services","N","Y","N","Y","2-Several times","Y",1,2,2,3,1,2,99,,"Y","Y","2-Child present"
,"12/11/2014 11:53:48",2043,"Z1300-New George",2043102,,"2-Female",30,6,"0-None","2-Muslim","0-No","","0-No","",,"6-Contact with infected surfac","1-Vomiting;2-Fever;10-Red eyes",3,"0-No","Y","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",500,"1-LD",2700,"1-LD","0-None","N","Y","N","Y","1-Just once or twice","Y",0,2,0,0,2,2,0,,"N","Y","4-Friend present;88-Other"
,"12/11/2014 11:48:21",2043,"Z1300-New George",2043182,,"2-Female",26,7,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting",3,"0-No","N","Y","Y","N",,"1-Just once or twice",2,"N","","","","N","","","",,"0-No","0-No",0,"","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",3000,"1-LD",6000,"1-LD","3-Sales and services","N","Y","N","Y","0-Never","N",0,0,0,0,2,2,99,,"Y","N","0-None"
,"12/11/2014 17:26:48",2043,"Z1300-New George",2043206,,"2-Female",36,5,"7-Some university","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash;12-Bleeding",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",800,"1-LD",1300,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",1,3,0,3,99,99,99,,"Y","N","4-Friend present"
,"12/11/2014 10:51:00",2043,"Z1300-New George",2043181,,"1-Male",52,7,"3-Some junior high","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea",1,"0-No","Y","Y","Y","N",,"",,"","","","","","","","",,"1-Yes","1-Yes",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",150,"1-LD",1500,"1-LD","4-Skilled manual","N","Y","N","N","0-Never","Y",1,1,1,3,2,2,99,,"Y","Y","4-Friend present"
,"12/11/2014 14:27:34",2043,"Z1300-New George",2043184,,"",,,"","","","","","",,"97-Dont know","1-Vomiting;3-Diarrhea;4-Headache",2,"0-No","Y","Y","Y","N",,"2-Several times",3,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",300,"1-LD",300,"1-LD","3-Sales and services","N","Y","N","Y","1-Just once or twice","N",1,1,2,1,2,2,99,,"Y","Y","2-Child present"
,"12/11/2014 15:42:59",2043,"Z1300-New George",2043105,,"2-Female",21,8,"5-Some high school","1-Christian","","","","",,"6-Contact with infected surfac;88-Other","1-Vomiting;9-Rash;10-Red eyes;18-Cough",21,"0-No","Y","Y","N","N",,"0-Never",5,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",140,"2-USD",280,"2-USD","5-Unskilled manual","Y","Y","Y","Y","0-Never","N",0,0,0,0,2,3,0,,"Y","N","0-None"
,"12/11/2014 17:40:04",2043,"Z1300-New George",2043107,,"2-Female",57,14,"0-None","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;10-Red eyes;12-Bleeding",0,"0-No","Y","Y","Y","N",,"2-Several times",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",50,"2-USD",70,"2-USD","88-Other","N","Y","Y","Y","2-Several times","Y",3,3,0,2,2,2,3,,"Y","N","0-None"
,"12/11/2014 16:16:18",2043,"Z1300-New George",2043205,,"1-Male",22,6,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;11-Hiccups",1,"1-Yes","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",400,"1-LD",700,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,7,0,3,1,1,0,,"Y","N","4-Friend present"
,"12/11/2014 13:11:42",2043,"Z1300-New George",2043103,,"1-Male",37,5,"4-Completed junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",14,0,,"2-Several times",600,"1-LD",35,"1-LD","0-None","N","N","Y","Y","1-Just once or twice","Y",5,4,0,2,1,2,4,,"Y","N","0-None"
,"12/11/2014 13:44:58",2043,"Z1300-New George",2043203,,"2-Female",30,6,"0-None","1-Christian","0-No","","0-No","",,"97-Dont know","97-Does not know",2,"0-No","N","Y","N","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",1000,"1-LD","3-Sales and services","N","Y","N","N","1-Just once or twice","Y",1,0,0,3,1,1,0,,"Y","N","88-Other"
,"12/11/2014 12:44:55",2043,"Z1300-New George",2043202,,"2-Female",50,7,"0-None","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",2,"0-No","Y","Y","Y","N",,"1-Just once or twice",2,"Y","N","Y","","N","","","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",500,"1-LD","0-None","N","N","Y","Y","2-Several times","Y",3,3,1,2,1,1,0,,"Y","N","88-Other"
,"1/6/2015 13:38:35",2043,"Z1300-New George",2043141,,"2-Female",27,7,"3-Some junior high","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",3,"1-Community leaders;3-Community members","1-Agree","0-Disagree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"1-LD",5000,"1-LD","6-Domestic services","Y","Y","Y","Y","2-Several times","Y",2,4,2,5,2,2,2,,"N","Y","2-Child present"
,"12/11/2014 15:13:33",2043,"Z1300-New George",2043204,,"1-Male",26,1,"5-Some high school","2-Muslim","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea",2,"0-No","N","Y","Y","N",,"0-Never",5,"Y","Y","","","N","","","",,"0-No","0-No",0,"","0-Disagree","97-Do not know","1-Yes","0-No","1-Yes","97-Do not know","97-Do not know",0,0,,"1-Just once or twice",300,"1-LD",300,"1-LD","4-Skilled manual","N","Y","N","N","2-Several times","Y",4,3,2,1,99,99,99,,"Y","N",""
,"12/9/2014 17:07:12",2044,"Z1400-Bardnesville",2044185,,"1-Male",38,3,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","2-Fever;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","0-Disagree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",500,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",0,3,4,0,99,99,99,,"Y","N","0-None"
,"12/9/2014 17:51:37",2044,"Z1400-Bardnesville",2044172,,"1-Male",22,14,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;6-Sore throat;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",7,"N","","","","N","","","",,"0-No","0-No",1,"4-NGOs","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",200,"1-LD",7000,"1-LD","0-None","N","N","Y","Y","3-Many times","Y",2,3,1,3,1,2,2,,"Y","N","0-None"
,"12/9/2014 16:15:11",2044,"Z1400-Bardnesville",2044184,,"1-Male",50,6,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",1,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",500,"1-LD",500,"1-LD","7-Agriculture","N","N","N","N","2-Several times","N",0,0,0,0,99,99,99,,"Y","N","0-None"
,"12/9/2014 10:43:19",2044,"Z1400-Bardnesville",2044181,,"1-Male",22,5,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","8-Stomach pain;10-Red eyes",21,"1-Yes","N","Y","","Y",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",1000,"1-LD","4-Skilled manual","N","N","N","N","0-Never","Y",3,4,0,2,1,2,99,,"Y","Y","2-Child present"
,"1/6/2015 11:43:05",2044,"Z1400-Bardnesville",2044122,,"2-Female",37,6,"2-Completed ABC","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","3-Diarrhea;4-Headache;88-Other",1,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",3000,"1-LD","4-Skilled manual","Y","Y","Y","Y","4-Always","Y",3,7,0,7,1,2,3,,"Y","N","0-None"
,"12/9/2014 11:51:09",2044,"Z1400-Bardnesville",2044182,,"2-Female",38,8,"0-None","1-Christian","","","","",,"88-Other","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness",3,"0-No","Y","Y","Y","N",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",250,"1-LD",250,"1-LD","6-Domestic services","Y","N","N","Y","3-Many times","Y",2,2,1,1,99,99,99,,"Y","N","0-None"
,"12/9/2014 16:19:06",2044,"Z1400-Bardnesville",2044204,,"1-Male",37,9,"0-None","1-Christian","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;7-Weakness;8-Stomach pain;10-Red eyes",21,"0-No","N","Y","N","N",,"2-Several times",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",500,"1-LD","4-Skilled manual","N","Y","Y","Y","2-Several times","Y",2,2,0,0,1,1,0,,"Y","N","4-Friend present"
,"12/9/2014 17:39:17",2044,"Z1400-Bardnesville",2044205,,"1-Male",30,9,"6-Completed high school","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",8,"1-Yes","N","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",2000,"1-LD",3000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,0,0,0,,"Y","N","4-Friend present"
,"12/9/2014 16:08:16",2044,"Z1400-Bardnesville",2044105,,"2-Female",36,4,"0-None","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;3-Diarrhea;4-Headache;88-Other",3,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,0,,"2-Several times",300,"1-LD",2000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",1,3,2,3,99,99,99,,"Y","N","0-None"
,"12/9/2014 10:40:16",2044,"Z1400-Bardnesville",2044201,,"1-Male",26,4,"5-Some high school","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes;12-Bleeding",7,"1-Yes","N","Y","N","N",,"2-Several times",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",1600,"1-LD",1000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","2-Several times","Y",2,3,0,3,99,99,99,,"Y","N","0-None"
,"12/9/2014 12:57:00",2044,"Z1400-Bardnesville",2044202,,"2-Female",42,5,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;3-Diarrhea;4-Headache;5-Joint and muscle pain;12-Bleeding",1,"0-No","N","Y","Y","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"1-LD",2000,"1-LD","0-None","N","N","N","N","1-Just once or twice","Y",1,2,0,2,1,1,0,,"Y","N","4-Friend present;5-Bossman present"
,"12/9/2014 16:48:48",2044,"Z1400-Bardnesville",2044171,,"2-Female",40,6,"0-None","2-Muslim","","","","",,"97-Dont know","97-Does not know",4,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"1-Community leaders","97-Do not know","97-Do not know","0-No","0-No","1-Yes","97-Do not know","97-Do not know",3,4,,"3-Many times",400,"1-LD",1000,"1-LD","0-None","Y","Y","Y","Y","3-Many times","Y",4,5,1,5,1,2,2,,"Y","Y","0-None"
,"12/9/2014 14:47:56",2044,"Z1400-Bardnesville",2044104,,"1-Male",23,4,"4-Completed junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;6-Sore throat;10-Red eyes",2,"0-No","Y","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",2,"6-Community group","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",2800,"1-LD",0,"1-LD","5-Unskilled manual","N","N","N","N","2-Several times","Y",3,7,0,2,99,99,99,,"N","N","0-None"
,"12/9/2014 17:04:59",2044,"Z1400-Bardnesville",2044106,,"2-Female",27,10,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;7-Weakness;10-Red eyes",3,"0-No","N","Y","Y","N",,"0-Never",3,"Y","N","","6-Family or self","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",300,"1-LD",850,"1-LD","3-Sales and services","N","N","Y","Y","3-Many times","Y",1,2,0,2,1,3,2,,"Y","N","0-None"
,"12/9/2014 17:39:21",2044,"Z1400-Bardnesville",2044121,,"1-Male",45,15,"4-Completed junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache;8-Stomach pain;10-Red eyes",4,"1-Yes","N","Y","Y","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",1500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",7,4,0,4,2,4,0,,"Y","N","0-None"
,"12/9/2014 10:41:02",2044,"Z1400-Bardnesville",2044101,,"2-Female",27,6,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache",0,"0-No","N","Y","Y","Y",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",8000,"1-LD","1-Professional","Y","Y","Y","Y","0-Never","N",3,0,0,3,99,99,99,,"Y","N","0-None"
,"12/9/2014 13:52:01",2044,"Z1400-Bardnesville",2044183,,"1-Male",30,2,"4-Completed junior high","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies","1-Vomiting;2-Fever;7-Weakness",3,"1-Yes","N","Y","Y","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","0-No",4,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",200,"1-LD",200,"1-LD","4-Skilled manual","Y","N","N","Y","3-Many times","Y",3,1,0,2,99,99,99,,"Y","Y","4-Friend present"
,"12/9/2014 11:37:02",2044,"Z1400-Bardnesville",2044102,,"1-Male",46,8,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;10-Red eyes",1,"0-No","N","Y","Y","N",,"2-Several times",1,"Y","Y","","","Y","N","","",,"0-No","0-No",1,"1-Community leaders","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",500,"2-USD","5-Unskilled manual","Y","Y","Y","Y","2-Several times","Y",3,4,1,4,1,2,2,,"Y","N","0-None"
,"12/9/2014 13:41:35",2044,"Z1400-Bardnesville",2044103,,"2-Female",37,6,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",700,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"1/6/2015 12:19:43",2044,"Z1400-Bardnesville",2044123,,"2-Female",58,6,"0-None","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;6-Sore throat;10-Red eyes;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",4,"N","","","","Y","N","N","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"Y","N","0-None"
,"12/9/2014 11:20:28",2045,"Z1400-Bardnesville",2045172,,"2-Female",21,6,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",100,"1-LD",3000,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",3,4,1,3,2,3,0,,"Y","N","0-None"
,"12/9/2014 15:30:42",2045,"Z1400-Bardnesville",2045127,,"1-Male",20,6,"4-Completed junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;12-Bleeding;18-Cough;88-Other",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","1-Yes",0,"88-Other","0-Disagree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",1500,"1-LD","5-Unskilled manual","Y","Y","N","N","0-Never","Y",2,3,1,0,2,3,0,,"Y","N","0-None"
,"12/9/2014 11:21:38",2045,"Z1400-Bardnesville",2045122,,"2-Female",52,4,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;7-Weakness",3,"1-Yes","N","Y","N","N",,"2-Several times",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",500,"1-LD","5-Unskilled manual","N","N","N","N","4-Always","Y",7,7,0,1,2,3,2,,"Y","N","0-None"
,"12/9/2014 15:21:02",2045,"Z1400-Bardnesville",2045177,,"1-Male",52,6,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",8,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",3000,"1-LD",10000,"1-LD","7-Agriculture","Y","Y","Y","Y","3-Many times","Y",3,2,1,2,1,1,0,,"Y","Y","0-None"
,"12/9/2014 14:01:26",2045,"Z1400-Bardnesville",2045175,,"1-Male",48,4,"6-Completed high school","1-Christian","","","","",,"97-Dont know","97-Does not know",5,"0-No","Y","Y","Y","Y",,"0-Never",3,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",5000,"1-LD",30000,"1-LD","7-Agriculture","N","Y","N","N","0-Never","N",0,0,0,3,2,2,1,,"Y","Y","0-None"
,"12/9/2014 10:18:35",2045,"Z1400-Bardnesville",20451418,,"2-Female",44,10,"5-Some high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;12-Bleeding",21,"0-No","Y","Y","Y","N",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",4000,"1-LD",6000,"1-LD","6-Domestic services","N","Y","N","N","0-Never","N",1,2,3,7,2,3,3,,"Y","Y","5-Bossman present"
,"12/9/2014 14:38:52",2045,"Z1400-Bardnesville",20451421,,"1-Male",62,10,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",4,"1-Yes","N","Y","N","N",,"2-Several times",4,"N","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",1500,"1-LD","6-Domestic services","Y","Y","N","Y","2-Several times","Y",1,2,0,2,1,4,0,,"Y","N","4-Friend present"
,"12/9/2014 13:15:28",2045,"Z1400-Bardnesville",2045174,,"1-Male",52,5,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","97-Do not know",0,0,,"3-Many times",1000,"1-LD",4000,"1-LD","1-Professional","N","Y","N","Y","3-Many times","Y",4,2,0,4,1,2,4,,"Y","Y","0-None"
,"12/9/2014 14:28:16",2045,"Z1400-Bardnesville",2045126,,"1-Male",23,9,"0-None","2-Muslim","","","","",,"5-Touching dead bodies;88-Other","1-Vomiting;3-Diarrhea",97,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","97-Do not know",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","4-Skilled manual","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/9/2014 16:04:50",2045,"Z1400-Bardnesville",20451422,,"1-Male",57,20,"8-Completed university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",3,"Y","Y","","","N","","","",,"0-No","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,2,,"3-Many times",0,"1-LD",0,"1-LD","7-Agriculture","Y","Y","Y","Y","0-Never","Y",0,3,0,2,1,1,0,,"Y","N","0-None"
,"12/9/2014 12:10:51",2045,"Z1400-Bardnesville",2045173,,"2-Female",27,13,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;7-Weakness",21,"0-No","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",1000,"1-LD",2000,"1-LD","0-None","N","N","N","Y","1-Just once or twice","Y",5,4,0,3,2,2,0,,"Y","N","0-None"
,"12/9/2014 12:05:00",2045,"Z1400-Bardnesville",2045123,,"1-Male",38,8,"7-Some university","2-Muslim","","","","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes;88-Other",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","97-Do not know","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",1500,"1-LD","5-Unskilled manual","Y","Y","N","N","3-Many times","N",2,4,0,2,2,3,0,,"Y","N","0-None"
,"12/9/2014 11:57:14",2045,"Z1400-Bardnesville",20451419,,"2-Female",45,11,"6-Completed high school","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",200,"1-LD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",0,7,0,4,1,2,2,,"Y","Y","2-Child present"
,"12/9/2014 16:41:01",2045,"Z1400-Bardnesville",2045128,,"2-Female",35,7,"3-Some junior high","1-Christian","","","","",,"5-Touching dead bodies;88-Other","1-Vomiting;4-Headache",97,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",0,"88-N/A","5-Unskilled manual","Y","Y","N","N","3-Many times","Y",3,3,0,2,2,3,0,,"Y","N","0-None"
,"12/9/2014 13:38:59",2045,"Z1400-Bardnesville",2045125,,"2-Female",69,14,"3-Some junior high","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;88-Other",97,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",500,"1-LD",0,"88-N/A","5-Unskilled manual","N","N","Y","Y","2-Several times","Y",7,7,5,0,2,3,0,,"Y","N","0-None"
,"12/9/2014 13:25:13",2045,"Z1400-Bardnesville",20451420,,"1-Male",56,11,"6-Completed high school","1-Christian","","","","",,"6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",40000,"1-LD","1-Professional","N","Y","N","N","2-Several times","Y",3,1,0,0,1,3,2,,"Y","N","0-None"
,"12/9/2014 10:28:42",2045,"Z1400-Bardnesville",2045171,,"2-Female",25,3,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",3,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","97-Do not know",0,0,,"0-Never",500,"1-LD",2000,"1-LD","0-None","N","N","N","N","0-Never","Y",2,2,0,3,2,2,0,,"Y","N","0-None"
,"12/9/2014 17:24:02",2045,"Z1400-Bardnesville",20451423,,"1-Male",25,6,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",3,"0-No","Y","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",4,"1-Community leaders","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",7000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",4,4,3,3,2,3,3,,"Y","N","0-None"
,"12/9/2014 14:37:08",2045,"Z1400-Bardnesville",2045176,,"1-Male",46,20,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","97-Do not know","0-No",0,0,,"3-Many times",3000,"1-LD",9000,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",3,5,0,3,1,2,0,,"Y","N","0-None"
,"12/9/2014 10:40:02",2045,"Z1400-Bardnesville",2045121,,"2-Female",50,13,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",3000,"1-LD",0,"88-N/A","5-Unskilled manual","N","N","N","N","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/9/2014 12:50:45",2045,"Z1400-Bardnesville",2045124,,"1-Male",29,7,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;5-Joint and muscle pain;7-Weakness;10-Red eyes;17-Chest pain;88-Other",3,"1-Yes","N","Y","Y","N",,"1-Just once or twice",2,"N","","","","Y","N","","",,"0-No","0-No",2,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","N","N","3-Many times","Y",4,6,2,4,2,3,4,,"Y","N","0-None"
,"1/8/2015 10:57:42",2046,"Z1600-Caldwell",2046132,,"2-Female",30,6,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;88-Other","1-Vomiting;6-Sore throat;10-Red eyes;97-Does not know",3,"1-Yes","Y","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",200,"1-LD",350,"1-LD","88-Other","N","N","N","N","2-Several times","Y",3,3,0,2,1,2,0,,"Y","N","0-None"
,"12/11/2014 10:18:38",2046,"Z1600-Caldwell",2046151,,"2-Female",28,3,"6-Completed high school","2-Muslim","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash",21,"0-No","N","Y","Y","N",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",200,"1-LD",3000,"1-LD","1-Professional","Y","Y","N","Y","0-Never","Y",3,3,2,1,2,3,0,,"Y","Y","2-Child present"
,"12/11/2014 16:34:12",2046,"Z1600-Caldwell",2046196,,"2-Female",39,5,"7-Some university","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness",0,"1-Yes","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",0,"88-N/A",10000,"1-LD","1-Professional","Y","N","Y","N","3-Many times","Y",0,0,4,3,2,3,0,,"Y","N","0-None"
,"12/11/2014 14:55:47",2046,"Z1600-Caldwell",2046153,,"1-Male",59,8,"0-None","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",3,"0-No","Y","N","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","0-Disagree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"1-LD",1000,"1-LD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",7,7,0,0,1,1,2,,"Y","Y","0-None"
,"12/12/2014 13:07:39",2046,"Z1600-Caldwell",2046494,,"2-Female",33,10,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",0,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",0,"88-N/A",1000,"1-LD","3-Sales and services","Y","Y","Y","N","4-Always","Y",0,0,7,7,1,3,7,,"Y","Y","2-Child present;4-Friend present"
,"12/11/2014 16:44:45",2046,"Z1600-Caldwell",2046165,,"2-Female",31,8,"1-Some ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1400,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,1,0,2,2,2,0,,"Y","N","0-None"
,"12/11/2014 16:46:16",2046,"Z1600-Caldwell",2046131,,"2-Female",56,9,"0-None","1-Christian","","","","",,"97-Dont know","97-Does not know",2,"0-No","Y","Y","N","Y",,"2-Several times",3,"Y","N","Y","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",500,"1-LD","88-Other","N","Y","N","Y","2-Several times","Y",3,2,2,3,1,2,2,,"Y","N","0-None"
,"1/8/2015 10:50:13",2046,"Z1600-Caldwell",2046111,,"2-Female",33,6,"7-Some university","1-Christian","1-Yes","5-Grand Cape Mount","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;12-Bleeding;18-Cough",21,"1-Yes","N","Y","Y","N",,"3-Many times",3,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,8,,"0-Never",400,"1-LD",10,"2-USD","1-Professional","N","N","Y","Y","3-Many times","Y",4,4,3,1,99,99,2,,"Y","N","0-None"
,"12/11/2014 13:45:08",2046,"Z1600-Caldwell",2046213,,"2-Female",40,18,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes;12-Bleeding",21,"0-No","N","Y","Y","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","1-Yes",3,"5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",5000,"1-LD","0-None","Y","Y","Y","Y","2-Several times","Y",3,3,4,4,1,3,2,,"Y","N","2-Child present;88-Other"
,"12/11/2014 10:13:10",2046,"Z1600-Caldwell",2046161,,"1-Male",42,2,"2-Completed ABC","2-Muslim","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes",3,"0-No","Y","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",300,"1-LD",1100,"1-LD","4-Skilled manual","N","N","N","N","3-Many times","Y",2,2,1,2,99,99,99,,"Y","Y","0-None"
,"12/11/2014 13:07:48",2046,"Z1600-Caldwell",2046152,,"2-Female",54,15,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash",21,"0-No","N","Y","Y","N",,"0-Never",4,"Y","Y","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","1-Yes","0-No",0,0,,"2-Several times",500,"1-LD",4000,"1-LD","3-Sales and services","Y","Y","Y","Y","4-Always","Y",2,1,0,1,1,2,0,,"Y","N","0-None"
,"12/11/2014 10:42:55",2046,"Z1600-Caldwell",2046211,,"1-Male",32,5,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","0-No",0,"4-NGOs","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",1000,"1-LD",1500,"1-LD","6-Domestic services","N","Y","N","N","2-Several times","Y",1,3,0,0,2,3,0,,"Y","Y","2-Child present;88-Other"
,"12/11/2014 13:25:24",2046,"Z1600-Caldwell",2046194,,"2-Female",52,13,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","3-Diarrhea;4-Headache;5-Joint and muscle pain;8-Stomach pain;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"88-N/A",800,"1-LD","1-Professional","Y","Y","Y","Y","3-Many times","Y",0,7,0,7,2,3,0,,"Y","N","2-Child present"
,"1/8/2015 11:48:08",2046,"Z1600-Caldwell",2046133,,"1-Male",43,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;6-Sore throat;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"0-No","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",400,"1-LD",1000,"1-LD","88-Other","N","N","N","N","0-Never","N",0,0,0,2,1,2,0,,"Y","N","0-None"
,"12/11/2014 15:17:39",2046,"Z1600-Caldwell",2046164,,"1-Male",47,5,"6-Completed high school","2-Muslim","","","","",,"4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","1-Yes","0-No",0,0,,"3-Many times",10,"2-USD",25,"2-USD","1-Professional","N","N","N","N","2-Several times","N",0,0,0,4,99,99,99,,"Y","N","0-None"
,"12/11/2014 12:34:06",2046,"Z1600-Caldwell",2046212,,"1-Male",32,10,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","N","N",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"4-NGOs;5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,4,,"2-Several times",1000,"1-LD",3000,"1-LD","0-None","Y","Y","N","Y","2-Several times","Y",0,4,0,2,3,3,0,,"Y","N","2-Child present;88-Other"
,"12/11/2014 10:15:22",2046,"Z1600-Caldwell",2046191,,"1-Male",47,22,"4-Completed junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;6-Sore throat;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"",,"","","","","","","","",,"1-Yes","1-Yes",0,"","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",0,"88-N/A",300,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",8,8,7,7,1,2,7,,"Y","N","0-None"
,"12/11/2014 13:47:16",2046,"Z1600-Caldwell",2046163,,"1-Male",56,8,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;88-Other","1-Vomiting;3-Diarrhea;9-Rash;12-Bleeding;18-Cough",2,"0-No","Y","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",750,"1-LD",100,"2-USD","1-Professional","N","N","N","N","0-Never","Y",0,2,0,1,2,2,0,,"Y","N","0-None"
,"12/11/2014 11:42:25",2046,"Z1600-Caldwell",2046192,,"1-Male",52,8,"7-Some university","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",3,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",400,"1-LD",400,"1-LD","1-Professional","Y","Y","N","N","0-Never","Y",3,4,0,3,1,2,0,,"Y","N","0-None"
,"12/11/2014 12:24:33",2046,"Z1600-Caldwell",2046162,,"2-Female",40,3,"4-Completed junior high","1-Christian","","","","",,"5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;11-Hiccups",0,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","4-At home doctor or nurse",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",800,"1-LD","4-Skilled manual","N","Y","Y","N","1-Just once or twice","Y",0,4,0,4,99,99,99,,"Y","Y","0-None"
,"12/11/2014 15:07:27",2046,"Z1600-Caldwell",2046214,,"2-Female",42,15,"6-Completed high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;9-Rash;10-Red eyes",2,"0-No","N","Y","Y","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders;5-Government agency","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",2000,"1-LD",20000,"1-LD","3-Sales and services","Y","Y","Y","","2-Several times","Y",0,3,0,3,1,3,0,,"Y","N","2-Child present;88-Other"
,"12/11/2014 16:25:48",2046,"Z1600-Caldwell",2046154,,"1-Male",56,16,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;8-Stomach pain;9-Rash",2,"0-No","N","Y","Y","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",1,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",5000,"1-LD","4-Skilled manual","N","Y","N","Y","3-Many times","N",7,3,0,2,2,3,0,,"Y","N","0-None"
,"12/10/2014 15:57:38",2047,"Z1600-Caldwell",2047112,,"2-Female",44,11,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;12-Bleeding",3,"0-No","N","Y","Y","N",,"0-Never",3,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","0-No",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",700,"1-LD",4000,"1-LD","88-Other","Y","Y","Y","Y","4-Always","Y",0,7,0,7,1,2,3,,"Y","N","1-Rain;2-Child present;3-Spouse present;4-Friend present;88-Other"
,"12/11/2014 13:41:13",2047,"Z1600-Caldwell",2047116,,"2-Female",42,11,"0-None","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",2,"0-No","N","Y","N","N",,"3-Many times",1,"Y","N","Y","","Y","N","Y","",,"1-Yes","0-No",2,"1-Community leaders;4-NGOs","97-Do not know","97-Do not know","0-No","0-No","0-No","97-Do not know","97-Do not know",0,6,,"3-Many times",500,"1-LD",10500,"1-LD","88-Other","Y","Y","Y","Y","0-Never","Y",0,0,0,3,1,2,0,,"N","Y","2-Child present;3-Spouse present;4-Friend present;88-Other"
,"12/11/2014 10:25:20",2047,"Z1600-Caldwell",2047134,,"2-Female",25,7,"2-Completed ABC","1-Christian","1-Yes","9-Margibi","0-No","",,"97-Dont know","1-Vomiting;2-Fever;8-Stomach pain;10-Red eyes",90,"1-Yes","Y","Y","Y","N",,"0-Never",1,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","0-Disagree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",2500,"1-LD",8000,"1-LD","88-Other","N","Y","Y","Y","0-Never","Y",3,3,0,3,1,2,0,,"Y","N","0-None"
,"12/11/2014 13:04:53",2047,"Z1600-Caldwell",2047135,,"2-Female",43,7,"2-Completed ABC","2-Muslim","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;12-Bleeding",3,"0-No","N","Y","N","Y",,"0-Never",3,"N","","","","N","","","",,"1-Yes","1-Yes",1,"3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","1-Yes","0-No",0,0,,"3-Many times",300,"1-LD",600,"1-LD","88-Other","N","Y","Y","Y","0-Never","Y",3,2,0,0,1,3,0,,"Y","N","88-Other"
,"1/8/2015 11:34:49",2047,"Z1600-Caldwell",2047118,,"2-Female",54,9,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","97-Does not know",3,"0-No","Y","Y","Y","N",,"3-Many times",4,"Y","Y","","","N","","","",,"1-Yes","0-No",2,"1-Community leaders;3-Community members","1-Agree","97-Do not know","0-No","1-Yes","1-Yes","97-Do not know","97-Do not know",0,4,,"3-Many times",200,"1-LD",500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",4,3,7,3,1,1,4,,"Y","N","2-Child present;4-Friend present"
,"12/10/2014 14:38:19",2047,"Z1600-Caldwell",2047161,,"2-Female",31,8,"0-None","2-Muslim","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;3-Diarrhea;4-Headache;6-Sore throat;9-Rash;10-Red eyes;16-Weight loss",21,"0-No","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",2000,"1-LD",4500,"1-LD","3-Sales and services","N","N","N","Y","2-Several times","Y",0,2,0,2,2,2,0,,"Y","N","0-None"
,"12/10/2014 16:09:44",2047,"Z1600-Caldwell",2047152,,"1-Male",41,8,"6-Completed high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"2-Several times",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","0-Disagree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"4-Always",200,"1-LD",2000,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",3,3,2,7,2,3,0,,"Y","N","0-None"
,"12/10/2014 15:45:31",2047,"Z1600-Caldwell",2047132,,"2-Female",24,11,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;4-Headache;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",500,"1-LD","88-Other","N","Y","Y","Y","0-Never","Y",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/11/2014 14:41:46",2047,"Z1600-Caldwell",2047117,,"2-Female",23,11,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;12-Bleeding",2,"1-Yes","N","Y","N","N",,"2-Several times",2,"Y","N","Y","","Y","N","Y","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","97-Do not know","97-Do not know",0,4,,"2-Several times",30,"2-USD",100,"2-USD","2-Clerical","Y","Y","N","N","2-Several times","Y",2,4,2,5,1,3,2,,"Y","Y","2-Child present;88-Other"
,"12/11/2014 8:44:26",2047,"Z1600-Caldwell",2047133,,"1-Male",45,7,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",21,"1-Yes","N","Y","N","N",,"",,"","","","","","","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"",,"",,"","","","","","","","",,,,,,,,,"Y","N","88-Other"
,"12/10/2014 14:37:37",2047,"Z1600-Caldwell",2047151,,"2-Female",23,8,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups",5,"0-No","N","Y","Y","N",,"2-Several times",2,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","97-Do not know","0-No",0,2,,"2-Several times",800,"1-LD",2500,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",7,7,2,0,1,3,1,,"Y","N","0-None"
,"12/11/2014 10:35:39",2047,"Z1600-Caldwell",2047114,,"2-Female",44,8,"3-Some junior high","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",2,"1-Yes","Y","Y","Y","N",,"2-Several times",0,"","","","","Y","N","Y","",,"0-No","0-No",0,"","97-Do not know","97-Do not know","0-No","0-No","0-No","97-Do not know","0-No",0,4,,"3-Many times",700,"1-LD",4000,"1-LD","88-Other","Y","Y","N","Y","0-Never","N",0,0,0,2,2,3,0,,"N","Y","1-Rain;2-Child present;3-Spouse present;4-Friend present;88-Other"
,"12/10/2014 16:05:20",2047,"Z1600-Caldwell",2047192,,"2-Female",41,6,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;9-Rash;10-Red eyes",3,"0-No","N","Y","Y","N",,"0-Never",10,"N","","","","N","","","",,"1-Yes","1-Yes",7,"1-Community leaders;6-Community group","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",7,7,,"1-Just once or twice",200,"1-LD",500,"1-LD","3-Sales and services","Y","Y","Y","Y","4-Always","Y",7,7,8,7,1,2,7,,"Y","N","4-Friend present"
,"12/10/2014 16:00:32",2047,"Z1600-Caldwell",2047162,,"1-Male",30,5,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;9-Rash;12-Bleeding",21,"0-No","Y","Y","N","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",10,"2-USD",30,"2-USD","4-Skilled manual","N","Y","N","N","1-Just once or twice","Y",1,2,0,2,2,2,0,,"Y","N","0-None"
,"12/10/2014 14:32:40",2047,"Z1600-Caldwell",2047191,,"1-Male",61,20,"0-None","2-Muslim","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;6-Sore throat;9-Rash;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",8,"N","","","","N","","","",,"1-Yes","1-Yes",1,"4-NGOs","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"4-Always",0,"1-LD",100,"2-USD","1-Professional","Y","Y","Y","Y","2-Several times","Y",7,7,0,7,1,3,7,,"Y","N","2-Child present"
,"12/10/2014 14:32:34",2047,"Z1600-Caldwell",2047111,,"2-Female",20,3,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",3,"1-Yes","N","Y","Y","N",,"3-Many times",1,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","0-No",2,"1-Community leaders","1-Agree","1-Agree","0-No","0-No","1-Yes","97-Do not know","97-Do not know",0,6,,"3-Many times",500,"1-LD",3000,"1-LD","88-Other","Y","Y","Y","Y","3-Many times","Y",3,5,3,4,1,3,3,,"Y","Y","2-Child present;3-Spouse present;4-Friend present;88-Other"
,"12/10/2014 14:36:53",2047,"Z1600-Caldwell",2047131,,"1-Male",37,2,"6-Completed high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;9-Rash;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"1-Just once or twice",1500,"1-LD",2400,"1-LD","4-Skilled manual","N","Y","N","Y","0-Never","N",0,0,0,0,2,2,0,,"Y","N","0-None"
,"12/11/2014 15:29:17",2047,"Z1600-Caldwell",2047137,,"1-Male",63,9,"5-Some high school","1-Christian","","","","",,"97-Dont know","97-Does not know",21,"0-No","Y","Y","N","Y",,"1-Just once or twice",2,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","0-Disagree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","88-Other","N","Y","N","Y","0-Never","N",0,0,0,0,1,2,0,,"Y","N","0-None"
,"12/11/2014 14:42:39",2047,"Z1600-Caldwell",2047136,,"1-Male",34,3,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;10-Red eyes",10,"1-Yes","N","Y","N","N",,"2-Several times",1,"Y","N","Y","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",0,"88-N/A","4-Skilled manual","Y","Y","N","Y","2-Several times","Y",2,2,0,4,1,2,0,,"Y","N","0-None"
,"12/11/2014 9:33:58",2047,"Z1600-Caldwell",2047113,,"1-Male",65,4,"0-None","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",3,"0-No","N","N","N","N",,"3-Many times",0,"","","","","Y","N","Y","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","1-Yes",0,10,,"3-Many times",500,"1-LD",4500,"1-LD","4-Skilled manual","Y","Y","N","N","2-Several times","Y",0,7,0,5,1,3,0,,"Y","Y","1-Rain;2-Child present;3-Spouse present;88-Other"
,"12/10/2014 11:21:28",2048,"Z1600-Caldwell",2048163,,"1-Male",52,6,"5-Some high school","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",7,"1-Yes","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",1500,"1-LD",2800,"1-LD","5-Unskilled manual","N","N","N","N","1-Just once or twice","Y",0,3,0,2,2,2,0,,"Y","N","0-None"
,"12/9/2014 15:54:57",2048,"Z1600-Caldwell",2048151,,"2-Female",29,3,"6-Completed high school","2-Muslim","","","","",,"","",,"","","","","",,"1-Just once or twice",1,"Y","N","","6-Family or self","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"2-Several times",50,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","Y","Y","2-Several times","Y",7,7,1,3,1,2,0,,"Y","N","0-None"
,"12/10/2014 11:25:42",2048,"Z1600-Caldwell",2048193,,"2-Female",35,6,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;8-Stomach pain;10-Red eyes",21,"1-Yes","Y","Y","","",,"2-Several times",3,"N","","","","N","","","",,"1-Yes","0-No",5,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",300,"1-LD",1500,"1-LD","3-Sales and services","Y","Y","N","Y","3-Many times","Y",7,7,2,7,3,4,3,,"Y","Y","2-Child present;4-Friend present"
,"12/9/2014 15:49:14",2048,"Z1600-Caldwell",2048111,,"2-Female",36,7,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea",1,"0-No","Y","Y","Y","N",,"2-Several times",2,"Y","N","","3-Traditional healer","Y","N","","",,"1-Yes","1-Yes",0,"","1-Agree","97-Do not know","0-No","0-No","0-No","0-No","0-No",0,5,,"2-Several times",1500,"1-LD",3000,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",0,3,2,5,1,2,4,,"Y","Y","1-Rain;4-Friend present"
,"12/10/2014 11:26:40",2048,"Z1600-Caldwell",2048153,,"1-Male",25,3,"6-Completed high school","1-Christian","0-No","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue",9,"1-Yes","N","Y","Y","",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",2,0,,"2-Several times",500,"1-LD",50,"2-USD","4-Skilled manual","Y","Y","Y","Y","2-Several times","N",7,7,7,0,1,2,1,,"Y","N","0-None"
,"12/10/2014 11:23:12",2048,"Z1600-Caldwell",2048133,,"1-Male",51,4,"3-Some junior high","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","2-Fever;4-Headache;10-Red eyes",2,"0-No","Y","Y","Y","Y",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","1-Yes",2,"1-Community leaders","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",8,0,,"3-Many times",0,"88-N/A",4000,"1-LD","88-Other","N","Y","N","Y","3-Many times","Y",3,4,0,4,2,3,3,,"Y","N","0-None"
,"12/10/2014 9:49:18",2048,"Z1600-Caldwell",2048132,,"2-Female",39,6,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;4-Headache;8-Stomach pain;10-Red eyes;18-Cough",3,"0-No","N","Y","Y","N",,"1-Just once or twice",1,"Y","N","","88-Other","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",0,"1-LD",800,"1-LD","0-None","N","Y","Y","Y","2-Several times","Y",2,2,3,3,2,3,0,,"Y","N","88-Other"
,"12/10/2014 9:42:02",2048,"Z1600-Caldwell",2048162,,"1-Male",61,12,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",3,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",550,"1-LD",2000,"1-LD","3-Sales and services","N","N","N","N","0-Never","Y",0,0,0,2,2,2,0,,"Y","N","0-None"
,"12/10/2014 12:37:06",2048,"Z1600-Caldwell",2048134,,"2-Female",24,6,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;8-Stomach pain;9-Rash;10-Red eyes",21,"1-Yes","N","Y","Y","N",,"0-Never",2,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",0,"88-N/A",300,"1-LD","4-Skilled manual","N","Y","Y","Y","2-Several times","Y",3,3,2,4,2,3,0,,"Y","N","0-None"
,"12/9/2014 15:53:53",2048,"Z1600-Caldwell",2048131,,"1-Male",37,6,"2-Completed ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",3,"1-Yes","N","Y","Y","N",,"0-Never",1,"Y","Y","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","0-Disagree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",70,"1-LD",65,"2-USD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",4,4,0,4,1,2,2,,"Y","N","0-None"
,"12/10/2014 12:54:24",2048,"Z1600-Caldwell",2048114,,"2-Female",47,13,"5-Some high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;4-Headache;8-Stomach pain",7,"0-No","N","Y","N","N",,"2-Several times",3,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","0-No","0-No","0-No",0,4,,"3-Many times",500,"1-LD",5000,"1-LD","88-Other","Y","Y","Y","Y","3-Many times","Y",3,4,2,4,1,2,3,,"Y","Y","2-Child present;88-Other"
,"12/10/2014 12:49:22",2048,"Z1600-Caldwell",2048154,,"1-Male",51,5,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;9-Rash;10-Red eyes;11-Hiccups;12-Bleeding;13-Fatigue;14-Bruising;15-Chills;16-Weight loss;17-Chest pain;18-Cough",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","0-No","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",200,"2-USD",500,"2-USD","1-Professional","N","N","N","N","0-Never","N",0,0,0,0,0,3,3,,"Y","N","0-None"
,"12/10/2014 10:16:10",2048,"Z1600-Caldwell",2048192,,"1-Male",50,6,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","7-Weakness;10-Red eyes",21,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","Y","Y","","2-Hospital",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"1-Just once or twice",100,"1-LD",150,"1-LD","1-Professional","Y","Y","N","Y","1-Just once or twice","Y",2,2,0,0,1,2,0,,"Y","N","0-None"
,"12/9/2014 15:53:23",2048,"Z1600-Caldwell",2048161,,"2-Female",41,6,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",2,"0-No","N","Y","Y","N",,"0-Never",2,"Y","Y","","","Y","Y","","1-Clinic",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,2,,"1-Just once or twice",1200,"1-LD",6000,"1-LD","3-Sales and services","N","N","Y","N","0-Never","Y",0,2,0,1,2,2,0,,"Y","N","0-None"
,"12/10/2014 9:46:49",2048,"Z1600-Caldwell",2048152,,"2-Female",46,4,"0-None","1-Christian","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business","1-Vomiting;2-Fever;4-Headache;5-Joint and muscle pain;7-Weakness",0,"0-No","N","Y","Y","N",,"2-Several times",2,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",100,"1-LD",1500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","2-Several times","Y",7,7,3,3,1,2,6,,"Y","Y","0-None"
,"12/9/2014 15:52:09",2048,"Z1600-Caldwell",2048191,,"1-Male",27,6,"7-Some university","2-Muslim","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",5,"1-Yes","N","Y","N","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","1-Yes",3,"3-Community members;88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",1500,"1-LD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,3,7,1,3,3,,"Y","N","3-Spouse present;4-Friend present"
,"12/10/2014 12:52:50",2048,"Z1600-Caldwell",2048164,,"1-Male",49,8,"2-Completed ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness;10-Red eyes;18-Cough",21,"0-No","N","Y","Y","N",,"0-Never",1,"Y","N","","88-Other","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",2500,"1-LD","4-Skilled manual","N","N","N","N","0-Never","Y",0,2,0,2,2,2,0,,"Y","N","0-None"
,"12/10/2014 11:20:13",2048,"Z1600-Caldwell",2048113,,"2-Female",40,12,"1-Some ABC","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea",0,"0-No","Y","N","N","N",,"4-Always",3,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","0-No","0-No","1-Yes","1-Yes","1-Yes",4,2,,"2-Several times",1000,"1-LD",3500,"1-LD","88-Other","Y","Y","N","N","2-Several times","Y",0,0,1,2,1,2,0,,"Y","Y","2-Child present;4-Friend present;88-Other"
,"12/10/2014 12:34:51",2048,"Z1600-Caldwell",2048194,,"2-Female",38,10,"3-Some junior high","1-Christian","0-No","","0-No","",,"97-Dont know","1-Vomiting;3-Diarrhea",0,"0-No","N","N","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",7,0,,"0-Never",0,"1-LD",300,"1-LD","3-Sales and services","Y","Y","Y","Y","0-Never","Y",0,7,0,2,1,2,0,,"N","N","2-Child present"
,"12/10/2014 9:40:56",2048,"Z1600-Caldwell",2048112,,"1-Male",33,3,"3-Some junior high","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;9-Rash;10-Red eyes;88-Other",21,"0-No","Y","Y","Y","Y",,"2-Several times",1,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","0-No",0,"","0-Disagree","1-Agree","0-No","0-No","1-Yes","0-No","0-No",0,0,,"2-Several times",1500,"1-LD",75,"2-USD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",0,2,0,4,1,2,1,,"Y","N","0-None"
,"12/7/2014 14:04:05",2049,"Z200-Logan Town",2049125,,"2-Female",25,10,"7-Some university","1-Christian","","","","",,"4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;10-Red eyes;11-Hiccups",21,"0-No","N","Y","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",1000,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","Y","Y","0-Never","Y",0,3,0,0,2,2,1,,"Y","N","0-None"
,"12/7/2014 12:26:43",2049,"Z200-Logan Town",2049123,,"1-Male",25,1,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;3-Bodily fluids of infected pe;5-Touching dead bodies","1-Vomiting;3-Diarrhea;4-Headache;12-Bleeding;88-Other",21,"0-No","N","Y","Y","N",,"1-Just once or twice",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",80,"2-USD",250,"2-USD","4-Skilled manual","N","Y","N","N","2-Several times","N",2,2,2,1,99,99,99,,"Y","N","0-None"
,"12/7/2014 11:38:54",2049,"Z200-Logan Town",2049122,,"1-Male",54,10,"7-Some university","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;12-Bleeding;88-Other",4,"0-No","N","Y","Y","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","0-No",2,"4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","1-Yes","0-No",0,0,,"2-Several times",0,"88-N/A",0,"88-N/A","1-Professional","N","Y","N","Y","0-Never","N",7,7,0,0,1,2,0,,"Y","N","0-None"
,"12/7/2014 16:03:51",2049,"Z200-Logan Town",2049127,,"2-Female",50,20,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;7-Weakness;9-Rash;10-Red eyes;18-Cough;88-Other",21,"0-No","N","Y","Y","N",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","97-Do not know","0-No","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",500,"1-LD","5-Unskilled manual","Y","Y","Y","Y","2-Several times","Y",2,2,2,3,2,4,2,,"Y","N","0-None"
,"12/7/2014 15:20:13",2049,"Z200-Logan Town",2049126,,"2-Female",49,12,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",5,"0-No","N","Y","N","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",2,"4-NGOs;5-Government agency","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",45,"2-USD","4-Skilled manual","Y","Y","N","Y","3-Many times","Y",1,7,0,7,2,3,1,,"Y","N","0-None"
,"12/7/2014 15:18:46",2049,"Z200-Logan Town",2049106,,"2-Female",28,4,"6-Completed high school","1-Christian","","","","",,"3-Bodily fluids of infected pe;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","Y","Y","N","N",,"1-Just once or twice",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",2,0,,"1-Just once or twice",500,"1-LD",1000,"1-LD","3-Sales and services","N","N","N","N","0-Never","N",0,0,0,0,3,3,0,,"Y","N","0-None"
,"12/7/2014 13:16:09",2049,"Z200-Logan Town",2049124,,"1-Male",39,3,"6-Completed high school","1-Christian","1-Yes","1-Bomi","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;8-Stomach pain;88-Other",3,"0-No","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",80,"2-USD","4-Skilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,7,7,99,99,99,,"Y","N","0-None"
,"12/7/2014 13:58:58",2049,"Z200-Logan Town",2049105,,"2-Female",52,15,"7-Some university","2-Muslim","","","","",,"88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache",0,"0-No","N","Y","Y","N",,"0-Never",6,"Y","N","","88-Other","Y","Y","","1-Clinic",,"0-No","0-No",0,"88-Other","1-Agree","97-Do not know","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"2-Several times",500,"1-LD",3000,"1-LD","1-Professional","N","Y","Y","Y","1-Just once or twice","N",0,2,0,3,2,4,0,,"Y","N","0-None"
,"12/7/2014 13:55:16",2049,"Z200-Logan Town",20491412,,"1-Male",39,5,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;10-Red eyes",21,"0-No","N","N","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","0-No",0,"3-Community members","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"2-Several times",600,"1-LD",15,"2-USD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",5,3,0,2,2,3,0,,"Y","N","1-Rain"
,"12/7/2014 16:46:34",2049,"Z200-Logan Town",2049128,,"2-Female",33,4,"3-Some junior high","2-Muslim","0-No","","0-No","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;10-Red eyes",3,"0-No","N","Y","Y","N",,"0-Never",1,"N","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"3-Many times",800,"1-LD",8000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","3-Many times","Y",7,7,2,2,2,4,3,,"Y","N","0-None"
,"12/7/2014 15:14:46",2049,"Z200-Logan Town",20491413,,"2-Female",19,6,"5-Some high school","1-Christian","","","","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;4-Headache;7-Weakness;12-Bleeding",14,"0-No","N","N","Y","Y",,"0-Never",2,"N","","","","N","","","",,"1-Yes","1-Yes",0,"3-Community members","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"1-Just once or twice",0,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",2,0,0,2,1,3,0,,"Y","Y","3-Spouse present"
,"12/7/2014 16:21:24",2049,"Z200-Logan Town",2049107,,"1-Male",56,12,"8-Completed university","1-Christian","","","","",,"1-Preparing or eating bush mea;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,2,,"4-Always",50,"2-USD",100,"2-USD","4-Skilled manual","N","Y","Y","Y","2-Several times","Y",7,3,0,7,2,3,0,,"Y","N","0-None"
,"12/7/2014 16:40:14",2049,"Z200-Logan Town",20491414,,"1-Male",72,10,"3-Some junior high","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","Y",,"2-Several times",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"1-Community leaders","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","0-No","0-No",0,0,,"2-Several times",0,"1-LD",0,"1-LD","5-Unskilled manual","N","N","Y","Y","2-Several times","Y",3,3,0,2,1,1,0,,"Y","N","3-Spouse present"
,"12/7/2014 10:41:08",2049,"Z200-Logan Town",2049101,,"1-Male",34,6,"7-Some university","2-Muslim","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;6-Sore throat;7-Weakness;10-Red eyes",21,"1-Yes","N","Y","N","N",,"0-Never",0,"","","","","Y","Y","","1-Clinic",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"2-Several times",300,"1-LD",2000,"1-LD","0-None","N","Y","Y","Y","3-Many times","Y",4,3,0,3,99,99,99,,"Y","Y","0-None"
,"12/7/2014 12:25:24",2049,"Z200-Logan Town",2049103,,"2-Female",48,8,"0-None","2-Muslim","","","","",,"97-Dont know","97-Does not know",0,"0-No","N","N","N","N",,"0-Never",0,"","","","","N","","","",,"0-No","0-No",0,"88-Other","97-Do not know","1-Agree","0-No","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"1-LD",140,"2-USD","3-Sales and services","Y","Y","N","N","0-Never","N",0,2,0,1,99,99,99,,"N","Y","0-None"
,"12/7/2014 10:44:08",2049,"Z200-Logan Town",20491410,,"1-Male",45,8,"7-Some university","1-Christian","","","","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;3-Diarrhea;6-Sore throat;10-Red eyes",21,"1-Yes","N","Y","N","N",,"2-Several times",1,"N","","","","N","","","",,"1-Yes","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,1,,"1-Just once or twice",0,"1-LD",0,"1-LD","1-Professional","N","Y","N","N","1-Just once or twice","Y",2,2,0,1,2,2,0,,"Y","N","0-None"
,"12/7/2014 11:36:00",2049,"Z200-Logan Town",2049102,,"1-Male",33,7,"6-Completed high school","2-Muslim","0-No","","0-No","",,"5-Touching dead bodies;6-Contact with infected surfac;88-Other","1-Vomiting;3-Diarrhea;7-Weakness",7,"0-No","N","Y","Y","Y",,"0-Never",4,"Y","N","","88-Other","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","1-Yes","1-Yes","0-No",0,0,,"2-Several times",2000,"1-LD",5000,"1-LD","4-Skilled manual","Y","Y","Y","Y","2-Several times","Y",3,2,0,2,2,3,0,,"Y","Y","0-None"
,"12/7/2014 10:52:23",2049,"Z200-Logan Town",2049121,,"2-Female",51,8,"2-Completed ABC","1-Christian","0-No","","0-No","",,"3-Bodily fluids of infected pe;5-Touching dead bodies;88-Other","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;7-Weakness",30,"0-No","Y","Y","Y","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","97-Do not know","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",0,"88-N/A",4000,"1-LD","5-Unskilled manual","Y","Y","Y","Y","0-Never","N",0,0,0,0,0,0,0,,"Y","N","0-None"
,"12/7/2014 13:14:56",2049,"Z200-Logan Town",2049104,,"2-Female",24,10,"6-Completed high school","1-Christian","","","","",,"97-Dont know","1-Vomiting;7-Weakness",0,"0-No","N","Y","N","N",,"1-Just once or twice",2,"N","","","","N","","","",,"0-No","0-No",0,"88-Other","0-Disagree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"0-Never",400,"1-LD",0,"1-LD","3-Sales and services","N","N","N","N","2-Several times","Y",2,1,0,3,2,3,0,,"Y","N","0-None"
,"12/7/2014 12:36:47",2049,"Z200-Logan Town",20491411,,"2-Female",22,13,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;6-Contact with infected surfac","1-Vomiting;3-Diarrhea;10-Red eyes",21,"1-Yes","Y","Y","N","N",,"0-Never",3,"N","","","","N","","","",,"","",,"","","","","","","","",,,,"",,"",,"","","","","","","","",,,,,,,,,"Y","N","2-Child present"
,"12/8/2014 13:03:13",2050,"Z200-Logan Town",2050195,,"1-Male",56,10,"5-Some high school","1-Christian","0-No","","0-No","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;9-Rash;10-Red eyes",0,"0-No","N","Y","N","N",,"0-Never",6,"N","","","","N","","","",,"1-Yes","0-No",0,"","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"0-Never",0,"88-N/A",0,"88-N/A","1-Professional","Y","Y","N","Y","0-Never","Y",0,0,0,0,2,3,0,,"Y","N","88-Other"
,"12/8/2014 9:14:01",2050,"Z200-Logan Town",2050152,,"2-Female",34,10,"5-Some high school","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain;6-Sore throat;7-Weakness;8-Stomach pain;10-Red eyes;11-Hiccups",21,"1-Yes","N","Y","Y","N",,"0-Never",3,"Y","Y","","","N","","","",,"1-Yes","0-No",0,"88-Other","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,0,,"4-Always",100,"1-LD",3000,"1-LD","4-Skilled manual","Y","Y","Y","Y","1-Just once or twice","Y",5,4,8,6,1,3,5,,"Y","N","0-None"
,"12/7/2014 17:00:45",2050,"Z200-Logan Town",2050112,,"2-Female",37,8,"1-Some ABC","1-Christian","","","","",,"1-Preparing or eating bush mea;4-Man woman business;5-Touching dead bodies","1-Vomiting;2-Fever;3-Diarrhea;10-Red eyes",7,"0-No","Y","Y","Y","N",,"2-Several times",3,"Y","N","","6-Family or self","Y","N","","",,"1-Yes","1-Yes",0,"","97-Do not know","97-Do not know","1-Yes","0-No","0-No","0-No","97-Do not know",0,7,,"2-Several times",0,"1-LD",1400,"1-LD","88-Other","Y","Y","Y","Y","3-Many times","Y",2,5,3,5,1,3,2,,"Y","N","2-Child present;88-Other"
,"12/8/2014 11:22:10",2050,"Z200-Logan Town",2050115,,"2-Female",33,5,"2-Completed ABC","1-Christian","","","","",,"97-Dont know","1-Vomiting;2-Fever;3-Diarrhea;12-Bleeding;18-Cough",3,"0-No","N","Y","Y","N",,"2-Several times",0,"","","","","Y","N","","",,"1-Yes","1-Yes",3,"1-Community leaders;4-NGOs","1-Agree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,6,,"3-Many times",1500,"1-LD",3000,"1-LD","88-Other","Y","Y","Y","Y","2-Several times","Y",6,1,4,6,1,3,6,,"Y","Y","0-None"
,"12/8/2014 9:37:49",2050,"Z200-Logan Town",2050114,,"2-Female",51,16,"1-Some ABC","1-Christian","","","","",,"97-Dont know","97-Does not know",0,"0-No","Y","N","Y","N",,"3-Many times",4,"Y","Y","","","Y","Y","","2-Hospital",,"1-Yes","0-No",0,"","97-Do not know","1-Agree","1-Yes","0-No","0-No","0-No","1-Yes",0,2,,"3-Many times",500,"1-LD",1600,"1-LD","88-Other","Y","Y","N","N","1-Just once or twice","Y",0,7,1,4,1,3,0,,"Y","Y","2-Child present;88-Other"
,"12/7/2014 17:04:54",2050,"Z200-Logan Town",2050192,,"1-Male",49,10,"0-None","1-Christian","0-No","","0-No","",,"2-Eating fruit bitten by bats;5-Touching dead bodies;7-Mother breastfeeding her chi","1-Vomiting;2-Fever;3-Diarrhea;4-Headache;5-Joint and muscle pain",5,"1-Yes","N","Y","N","N",,"2-Several times",0,"","","","","N","","","",,"1-Yes","0-No",0,"","0-Disagree","1-Agree","1-Yes","0-No","0-No","0-No","0-No",0,2,,"0-Never",0,"88-N/A",300,"1-LD","4-Skilled manual","N","","N","Y","2-Several times","Y",0,2,0,7,0,3,0,,"Y","N","2-Child present"
,"12/7/2014 16:27:28",2050,"Z200-Logan Town",2050151,,"2-Female",30,2,"7-Some university","1-Christian","","","","",,"1-Preparing or eating bush mea;2-Eating fruit bitten by bats;3-Bodily fluids of infected pe;4-Man woman business;5-Touching dead bodies;6-Contact with infected surfac","1-Vomiting;2-Fever;4-Headache;5-Joint and muscle pain;8-Stomach pain;10-Red eyes;12-Bleeding",21,"1-Yes","N","Y","Y","N",,"0-Never",0,"","","","","N","","","",,"1-Yes","1-Yes",0,"88-Other","1-Agree","1-Agree","1-Yes","1-Yes","0-No","0-No","0-No",0,0,,"3-Many times",1000,"1-LD",50,"2-USD","4-Skilled manual","Y","Y","Y","Y","0-Never","N",3,4,1,0,4,4,0,,"Y","N","0-None"