-
Notifications
You must be signed in to change notification settings - Fork 0
/
children_HIV.fmf
1837 lines (1427 loc) · 33.3 KB
/
children_HIV.fmf
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
[FormFile]
Version=CSPro 7.0
Name=CHILDREN_HIV_DICTIONARY_FF
Label=children_HIV
DefaultTextFont=-013 0000 0000 0000 0700 0000 0000 0000 0000 0000 0000 0000 0000 Arial
FieldEntryFont=0018 0000 0000 0000 0600 0000 0000 0000 0000 0000 0000 0000 0000 Courier New
Type=OperatorControlled
[Dictionaries]
File=.\children_HIV_dictionary.dcf
[Form]
Name=FORM000
Label=children_HIV_dictionary questionnaire
Level=1
Size=1428,4618
Item=PROVINCE_CODE
Item=NASCOP_REGION_CODE
Item=COUNTY_CODE
Item=DISTRICT_CODE
Item=NASSEP_V_CLUSTER_NUMBER
Item=HOUSEHOLD_NUMBER
Item=LINE_NUMBER
Item=INT_CODE
Item=RESULT
Item=TOTAL_NUMBER_OF_VISITS
Item=PROVINCE_NAME
Item=NASCOP_REGION_NAME
Item=COUNTY_NAME
Item=DISTRICT_NAME
Item=NAME_OF_HOUSEHOLD_HEAD
Item=NAME_OF_RESPONDENT
Item=NEXT_VISITS000
Item=INTERVIEWER_PEN000
Item=NEXT_VISIT_LAB_TECHNICIAN000
Item=LAB_RESULT
Item=TOTAL_NUMBER_OF_VSITS
Item=LANGUAGE_OF_INTERVIEW
Item=HOME_LANGUAGE_OF_RESPONDENT
Item=SUPERVISORS_NAME
Item=DATE_SUPERVISOR
Item=SUPERVISORS_CODE
Item=EDITOR
Item=KEYED
Item=START_HOURS
Item=START_MINUTES
Item=MINOR_HAS_DISABILTY
Item=ACCEPT_INTERVIEW
Item=CHILDS_ASSENT
Item=HOW_OLD_WERE_YOU_AT_YOUR_LAST_BI
Item=BOY_OR_GIRL
Item=GOES_TO_SCHOOL
Item=LEVEL_OF_STUDY
Item=HIGHEST_LVL_COMPLETED
Item=REASON_FOR_NOT_SCHOOL
Item=EVER_HEARD_OF_HIV
Item=WHERE_LEARNT_ABOUT_HIV
Item=EVER_DISCUSSED_HIV_WITH_PARENTS
Item=DOES_ABSTAINING_REDUCE_RISK
Item=DOES_CONDOM_USE_RED_RISK
Item=HEALHY_LOOKING_AIDS
Item=MOTHER_TO_UNBORN_CHILD
Item=AVAILABLE_ARVS
Item=FAMILY_MATTERS_PROGRAM
Item=HEALTHY_CHOICES
Item=SHUGA
Item=G_PANGE
Item=CHILL_CLUB
Item=LIFE_SKILLS_PROGRAM
Item=ARE_YOU_CIRCUMCISED
Item=PLAN_FOR_CIRCUMCISION
Item=EVER_HAD_SEX
Item=TYPES_OF_SEX_HAD
Item=REASON_SEX_FIRST_TIME
Item=AGE_AT_FIRST_SEX_EXPERIENCE
Item=DIFFERNCE_IN_AGE_SEX_PARTNER
Item=HOW_OLDER_FIRST_PARTNER
Item=CONDOM_USE_FIRST_INTERCOUSE
Item=CONDOM_USE_LAST_TIME
Item=OFTEN_USE_CONDOM
Item=ACCESS_TO_CONDOMS
Item=WHERE_WOULD_YOU_GET_A_CONDOM
Item=NO_OFSEX_PARTNERS
Item=MADE_PREGNANT
Item=EVER_PREGNANT
Item=IS_VULNERABLE
Item=REASON_FOR_VULNERABILITY
Item=WILL_FORNICATE
Item=PERCEPTION_FRIENDS_HAVING_SEX
Item=WILL_ABSTAIN_TILL_NEXT_YEAR
Item=WILL_REFUSE_SEX_REQUEST
Item=EVER_TESTED_FOR_HIV
Item=WHEN_LAST_TESTED
Item=RECEIVED_RES_OF_LAST_TEST
Item=WILL_REVEAL_RESULT
Item=RESULT_OF_LAST_TEST
Item=EVER_TAKEN_ALCOHOL
Item=NO_OF_DAYS_DRANK
Item=DRINKS_PER_DAY
Item=EVER_TRIED_DRUGS
Item=KHAT_MIRAA
Item=GLUE_PETROL_GUNDI
Item=BHANGI_BANGI
Item=MANDRAX
Item=COCAINE
Item=HEROIN
Item=KUBER_TOBACCO
Item=USED_UNLISTED_DRUGS
Item=WILL_SHARE_FOOD_WITH_INFECTED
Item=WILL_PLAY_WITH_INFECTED
Item=END_HOURS
Item=END_MINUTES
Item=DATE_OF_BIRTH
Item=FINAL_VISIT_DATE
Box=872,765,1055,892,Thin
Box=258,119,1390,362,Thin
Box=258,382,1390,698,Thin
Box=258,969,1389,1056,Thin
Box=1104,615,1351,652,Thin
Box=761,545,1092,654,Thin
Box=259,732,1392,925,Thin
Box=248,8,1403,1170,Thick
Box=258,1082,1387,1165,Thin
Box=262,1323,1384,1396,Thin
Box=261,1198,1382,1301,Thin
Box=261,1429,1383,1719,Thin
Box=260,1761,1384,2066,Thin
Box=260,2111,1383,2346,Thin
Box=265,2398,1383,2510,Thin
Box=267,2555,1382,3037,Thin
Box=269,3093,1382,3216,Thin
Box=269,3270,1384,3450,Thin
Box=271,3489,1385,3714,Thin
Box=249,1187,1400,1401,Thin
Box=250,1414,1400,4418,Thin
Box=272,3782,1383,4269,Thin
Box=275,4309,1381,4411,Thin
Box=251,4452,1403,4593,Thin
[Text]
Name=TEXT7
Position=271,111,374,127
Text=IDENTIFICATION
Form=1
Color=4194368
[Text]
Name=TEXT14
Position=267,373,403,389
Text=INTERVIEWER VISITS
Form=1
Color=4194368
[Text]
Name=TEXT1
Position=771,535,847,551
Text=FINAL VISIT
Form=1
Color=4194304
[Text]
Name=TEXT2
Position=266,727,421,743
Text=LAB TECHNICIAN VISITS
Form=1
Color=4194368
[Text]
Name=TEXT3
Position=862,805,1065,821
Text=ATTACH BARCODE LABEL HERE
Form=1
[Text]
Name=TEXT4
Position=266,964,338,980
Text=LANGUAGE
Form=1
Color=4194368
[Text]
Name=TEXT5
Position=267,1075,352,1091
Text=SUPERVISOR
Form=1
Color=4194368
[Text]
Name=TEXT6
Position=274,1316,352,1332
Text=START TIME
Form=1
Color=4194368
[Text]
Name=TEXT8
Position=430,1341,566,1357
Text=Record the start time.
Form=1
[Text]
Name=TEXT9
Position=423,1366,811,1382
Text=(Use 24 hours format eg 13hrs 00min instead when time is 1.00pm)
Form=1
Font=-013 0000 0000 0000 0400 0255 0000 0000 0000 0003 0002 0001 0034 Arial
[Text]
Name=TEXT10
Position=271,1192,543,1208
Text=PARENT'S CONSENT AND CHILD'S ASSENT
Form=1
Color=4194368
[Text]
Name=TEXT11
Position=271,1423,537,1439
Text=MODULE1: RESPONDENT'S BACKGROUND
Form=1
Color=128
[Text]
Name=TEXT12
Position=270,1753,775,1769
Text=MODULE 2: KNOWLEDGE, ATTITIDES, AND SOURCES OF HIV RISK PERCEPTION
Form=1
Color=128
[Text]
Name=TEXT13
Position=271,2104,553,2120
Text=MODULE 3: HIV PREVENTION INTERVETIONS
Form=1
Color=128
[Text]
Name=TEXT15
Position=626,2133,1070,2149
Text=Have you taken part in any of the following HIV prevention Programs?
Form=1
Color=4194304
[Text]
Name=TEXT16
Position=275,2392,445,2408
Text=MODULE 4: CIRCUMCISION
Form=1
Color=128
[Text]
Name=TEXT17
Position=280,2548,469,2564
Text=MODULE 5: SEXUAL ACTIVITY
Form=1
Color=128
[Text]
Name=TEXT18
Position=280,3087,498,3103
Text=MODULE 6: HIV RISK PERCEPTION
Form=1
Color=128
[Text]
Name=TEXT19
Position=280,3265,866,3281
Text=MODULE 7: SOCIAL NORMS, INTENTION TO ABSTAIN, SELF-EFFICACY AND ASSERTIVENESS
Form=1
Color=128
[Text]
Name=TEXT20
Position=284,3483,440,3499
Text=MODULE 8: HIV TESTING
Form=1
Color=128
[Text]
Name=TEXT21
Position=687,3956,988,3972
Text=Have you ever tried any of the following drugs?
Form=1
Color=4194304
[Text]
Name=TEXT22
Position=287,3774,505,3790
Text=MODULE 9: ALCOHOL AND DRUGS
Form=1
Color=128
[Text]
Name=TEXT23
Position=285,4303,443,4319
Text=MODULE 10: HIV STIGMA
Form=1
Color=128
[Text]
Name=TEXT24
Position=452,4470,585,4486
Text=Record the end time.
Form=1
[Text]
Name=TEXT25
Position=452,4501,833,4517
Text=(Use 24 hours system eg Enter 17hrs 45min while time is 5:45pm)
Form=1
Font=-013 0000 0000 0000 0400 0255 0000 0000 0000 0003 0002 0001 0034 Arial
[Text]
Name=TEXT26
Position=279,4444,439,4460
Text=END TIME AND REMARKS
Form=1
Color=4194368
[EndForm]
[Level]
Name=CHILDREN_HIV_DICTIONARY_QUEST
Label=children_HIV_dictionary questionnaire
[Group]
Required=Yes
Name=CHILDREN_HIV_DICTIONARY_QUEST_FORM
Label=children_HIV_dictionary questionnaire
Form=1
LogicControl=No
Max=1
[Field]
Name=PROVINCE_NAME
Position=759,130,881,150
Item=PROVINCE_NAME,CHILDREN_HIV_DICTIONARY_DICT
UseUnicodeTextBox=Yes
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=286,128,394,144
Text=PROVINCE NAME
[Field]
Name=PROVINCE_CODE
Position=1353,131,1368,151
Item=PROVINCE_CODE,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=1185,135,1292,151
Text=PROVINCE CODE
[Field]
Name=NASCOP_REGION_NAME
Position=727,161,881,181
Item=NASCOP_REGION_NAME,CHILDREN_HIV_DICTIONARY_DICT
UseUnicodeTextBox=Yes
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=286,163,436,179
Text=NASCOP REGION NAME
[Field]
Name=NASCOP_REGION_CODE
Position=1356,167,1371,187
Item=NASCOP_REGION_CODE,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=1150,169,1299,185
Text=NASCOP REGION CODE
[Field]
Name=COUNTY_NAME
Position=730,199,884,219
Item=COUNTY_NAME,CHILDREN_HIV_DICTIONARY_DICT
UseUnicodeTextBox=Yes
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=286,203,380,219
Text=COUNTY NAME
[Field]
Name=COUNTY_CODE
Position=1338,200,1367,220
Item=COUNTY_CODE,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=1202,200,1295,216
Text=COUNTY CODE
[Field]
Name=DISTRICT_NAME
Position=730,242,884,262
Item=DISTRICT_NAME,CHILDREN_HIV_DICTIONARY_DICT
UseUnicodeTextBox=Yes
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=286,244,387,260
Text=DISTRICT NAME
[Field]
Name=DISTRICT_CODE
Position=1342,229,1371,249
Item=DISTRICT_CODE,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=1193,232,1293,248
Text=DISTRICT CODE
[Field]
Name=NASSEP_V_CLUSTER_NUMBER
Position=1316,260,1373,280
Item=NASSEP_V_CLUSTER_NUMBER,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=1104,262,1293,278
Text=NASSEP V CLUSTER NUMBER
[Field]
Name=NAME_OF_HOUSEHOLD_HEAD
Position=672,284,882,304
Item=NAME_OF_HOUSEHOLD_HEAD,CHILDREN_HIV_DICTIONARY_DICT
UseUnicodeTextBox=Yes
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=286,284,469,300
Text=NAME OF HOUSEHOLD HEAD
[Field]
Name=HOUSEHOLD_NUMBER
Position=1330,296,1373,316
Item=HOUSEHOLD_NUMBER,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=1154,299,1294,315
Text=HOUSEHOLD NUMBER
[Field]
Name=NAME_OF_RESPONDENT
Position=674,322,884,342
Item=NAME_OF_RESPONDENT,CHILDREN_HIV_DICTIONARY_DICT
UseUnicodeTextBox=Yes
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=286,325,437,341
Text=NAME OF RESPONDENT
[Field]
Name=LINE_NUMBER
Position=1343,326,1372,346
Item=LINE_NUMBER,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
Form=1
[Text]
Position=1206,329,1294,345
Text=LINE NUMBER
[Field]
Name=MINOR_HAS_DISABILTY
Position=1352,1216,1367,1236
Item=MINOR_HAS_DISABILTY,CHILDREN_HIV_DICTIONARY_DICT
DataCaptureType=RadioButton
Form=1
[Text]
Position=414,1216,1297,1232
Text=Does the (Name of minor) have any hearing or mental disabilities that would hinder him or her from answering question about themselves?
[Field]
Name=ACCEPT_INTERVIEW
Position=1352,1246,1367,1266
Item=ACCEPT_INTERVIEW,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=RadioButton
Form=1
[Text]
Position=415,1245,626,1261
Text=May I interview (Name of minor)?
[Field]
Name=CHILDS_ASSENT
Position=1352,1276,1367,1296
Item=CHILDS_ASSENT,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=RadioButton
Form=1
[Text]
Position=415,1275,584,1291
Text=May I begin the interview?
[Field]
Name=START_HOURS
Position=1342,1339,1371,1359
Item=START_HOURS,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=NumberPad
Form=1
[Text]
Position=1270,1343,1316,1359
Text=HOURS
[Field]
Name=START_MINUTES
Position=1342,1369,1371,1389
Item=START_MINUTES,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=NumberPad
Form=1
[Text]
Position=1270,1373,1328,1389
Text=MINUTES
[Field]
Name=DATE_OF_BIRTH
Position=1251,1462,1364,1482
Item=DATE_OF_BIRTH,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=Date,DDMMYYYY
Form=1
[Text]
Position=426,1463,598,1479
Text=When is your date of birth?
[Field]
Name=HOW_OLD_WERE_YOU_AT_YOUR_LAST_BI
Position=1335,1496,1364,1516
Item=HOW_OLD_WERE_YOU_AT_YOUR_LAST_BI,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=NumberPad
Form=1
[Text]
Position=426,1493,679,1509
Text=How old were you at your last birthday?
[Field]
Name=BOY_OR_GIRL
Position=1349,1526,1364,1546
Item=BOY_OR_GIRL,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=RadioButton
Form=1
[Text]
Position=426,1523,576,1539
Text=Are you a boy or a girl?
[Field]
Name=GOES_TO_SCHOOL
Position=1349,1556,1364,1576
Item=GOES_TO_SCHOOL,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=426,1553,559,1569
Text=Do you go to school?
[Field]
Name=LEVEL_OF_STUDY
Position=1349,1586,1364,1606
Item=LEVEL_OF_STUDY,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=RadioButton
Form=1
[Text]
Position=426,1583,570,1599
Text=What class are you in?
[Field]
Name=HIGHEST_LVL_COMPLETED
Position=1349,1616,1364,1636
Item=HIGHEST_LVL_COMPLETED,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=RadioButton
Form=1
[Text]
Position=426,1613,807,1629
Text=What is the highest level of education you ever completed?
[Field]
Name=REASON_FOR_NOT_SCHOOL
Position=1335,1646,1364,1666
Item=REASON_FOR_NOT_SCHOOL,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=RadioButton
Form=1
[Text]
Position=426,1643,781,1659
Text=What is the main reason you are not attendingn school?
[Field]
Name=EVER_HEARD_OF_HIV
Position=1352,1811,1367,1831
Item=EVER_HEARD_OF_HIV,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,1816,914,1832
Text=Have you ever heard of an infection called HIV, the virus that causes AIDS?
[Field]
Name=WHERE_LEARNT_ABOUT_HIV
Position=1254,1841,1367,1861
Item=WHERE_LEARNT_ABOUT_HIV,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=CheckBox
Form=1
[Text]
Position=438,1846,744,1862
Text=From where have you learnt about HIV or AIDS?
[Field]
Name=EVER_DISCUSSED_HIV_WITH_PARENTS
Position=1352,1871,1367,1891
Item=EVER_DISCUSSED_HIV_WITH_PARENTS,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,1876,878,1892
Text=Have you ever discussed HIV or AIDS with your parents or guardians?
[Field]
Name=DOES_ABSTAINING_REDUCE_RISK
Position=1352,1901,1367,1921
Item=DOES_ABSTAINING_REDUCE_RISK,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,1906,872,1922
Text=Can one reduce their chance of getting HIV by not having sex at all?
[Field]
Name=DOES_CONDOM_USE_RED_RISK
Position=1352,1931,1367,1951
Item=DOES_CONDOM_USE_RED_RISK,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,1936,950,1952
Text=Can one reduce their chance of getting HIV by using condoms when having sex?
[Field]
Name=HEALHY_LOOKING_AIDS
Position=1352,1961,1367,1981
Item=HEALHY_LOOKING_AIDS,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,1966,745,1982
Text=Can a healthy looking person have HIV or AIDS?
[Field]
Name=MOTHER_TO_UNBORN_CHILD
Position=1352,1991,1367,2011
Item=MOTHER_TO_UNBORN_CHILD,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,1996,824,2012
Text=Can a mother with HIV or AIDS pass HIV to her unborn child?
[Field]
Name=AVAILABLE_ARVS
Position=1352,2021,1367,2041
Item=AVAILABLE_ARVS,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2026,955,2042
Text=Are there medicine that people with HIV or AIDS can take to help the live longer?
[Field]
Name=FAMILY_MATTERS_PROGRAM
Position=1357,2160,1372,2180
Item=FAMILY_MATTERS_PROGRAM,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2164,598,2180
Text=Family Matters Program?
[Field]
Name=HEALTHY_CHOICES
Position=1357,2190,1372,2210
Item=HEALTHY_CHOICES,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2194,548,2210
Text=Healthy Choices?
[Field]
Name=SHUGA
Position=1357,2220,1372,2240
Item=SHUGA,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2224,680,2240
Text=Watched the TV drama called Shuga?
[Field]
Name=G_PANGE
Position=1357,2250,1372,2270
Item=G_PANGE,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2254,501,2270
Text=G-Pange?
[Field]
Name=CHILL_CLUB
Position=1357,2280,1372,2300
Item=CHILL_CLUB,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2284,508,2300
Text=Chill Club?
[Field]
Name=LIFE_SKILLS_PROGRAM
Position=1357,2310,1372,2330
Item=LIFE_SKILLS_PROGRAM,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2314,567,2330
Text=Life Skills Program?
[Field]
Name=ARE_YOU_CIRCUMCISED
Position=1355,2440,1370,2460
Item=ARE_YOU_CIRCUMCISED,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2442,575,2458
Text=Are you circumcised?
[Field]
Name=PLAN_FOR_CIRCUMCISION
Position=1355,2470,1370,2490
Item=PLAN_FOR_CIRCUMCISION,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2472,773,2488
Text=Are your parents planning to ha ve you circumcised?
[Field]
Name=EVER_HAD_SEX
Position=1338,2601,1367,2621
Item=EVER_HAD_SEX,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=438,2609,591,2625
Text=Have you ever had sex?
[Field]
Name=TYPES_OF_SEX_HAD
Position=1310,2631,1367,2651
Item=TYPES_OF_SEX_HAD,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=CheckBox
Form=1
[Text]
Position=438,2639,648,2655
Text=What types of sex have you had?
[Field]
Name=REASON_SEX_FIRST_TIME
Position=1338,2661,1367,2681
Item=REASON_SEX_FIRST_TIME,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=441,2667,788,2683
Text=What is the main reason you had sex for the first time?
[Field]
Name=AGE_AT_FIRST_SEX_EXPERIENCE
Position=1338,2691,1367,2711
Item=AGE_AT_FIRST_SEX_EXPERIENCE,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=NumberPad
Form=1
[Text]
Position=441,2697,909,2713
Text=How old were you when you had sexual intercouse for the very first time?
[Field]
Name=DIFFERNCE_IN_AGE_SEX_PARTNER
Position=1338,2721,1367,2741
Item=DIFFERNCE_IN_AGE_SEX_PARTNER,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=441,2727,912,2743
Text=Was the person you had sex with older, younger, or the same age as you?
[Field]
Name=HOW_OLDER_FIRST_PARTNER
Position=1338,2751,1367,2771
Item=HOW_OLDER_FIRST_PARTNER,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=441,2757,955,2773
Text=How much older than yourself was the person you had sex with for the first time?
[Field]
Name=CONDOM_USE_FIRST_INTERCOUSE
Position=1338,2781,1367,2801
Item=CONDOM_USE_FIRST_INTERCOUSE,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=441,2787,747,2803
Text=The first time you had sex, was a condom used?
[Field]
Name=CONDOM_USE_LAST_TIME
Position=1338,2811,1367,2831
Item=CONDOM_USE_LAST_TIME,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=441,2817,746,2833
Text=The last time you had sex, was a condom used?
[Field]
Name=OFTEN_USE_CONDOM
Position=1338,2862,1367,2882
Item=OFTEN_USE_CONDOM,CHILDREN_HIV_DICTIONARY_DICT
FieldLabelType=DictionaryLabel
DataCaptureType=DropDown
Form=1
[Text]
Position=441,2847,763,2863
Text=How often was a condom used when you had sex?