-
Notifications
You must be signed in to change notification settings - Fork 7
/
field.txt
1102 lines (1102 loc) · 168 KB
/
field.txt
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
1 SELF PAY Patient pays for their own evaluation and related treatment. Used as an answer for "pay category". 1 5269 \N 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c9711d-6437-11e4-badf-42010af0dc15
2 PATIENT Patient section of form 5 \N 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c973c4-6437-11e4-badf-42010af0dc15
3 ENCOUNTER Encounter 5 \N \N \N \N 0 1 2006-07-18 00:00:00 3 2014-11-19 14:29:34 0 \N \N \N 17c974b5-6437-11e4-badf-42010af0dc15
4 MEDICAL RECORD OBSERVATIONS General description for clinical observations entered into the system. 1 1238 \N 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c9757d-6437-11e4-badf-42010af0dc15
5 OBS Obs section of form 1 1238 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c9764b-6437-11e4-badf-42010af0dc15
6 PATIENT.BIRTHDATE Date of birth 2 \N patient birthdate $!{date.format($patient.getBirthdate())} 0 1 2006-07-18 00:00:00 3 2014-11-19 15:02:05 0 \N \N \N 17c97711-6437-11e4-badf-42010af0dc15
7 PATIENT.BIRTHDATE_ESTIMATED 2 \N patient birthdate_estimated $!{patient.getBirthDateEstimated()} 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c977e3-6437-11e4-badf-42010af0dc15
8 PATIENT.FAMILY_NAME Family name 2 \N patient_name family_name $!{patient.getFamilyName()} 0 1 2006-07-18 00:00:00 3 2014-11-19 15:01:18 0 \N \N \N 17c978c9-6437-11e4-badf-42010af0dc15
9 PATIENT.GIVEN_NAME Given name 2 \N patient_name given_name $!{patient.getGivenName()} 0 1 2006-07-18 00:00:00 3 2014-11-19 15:01:38 0 \N \N \N 17c9799f-6437-11e4-badf-42010af0dc15
10 PATIENT.MIDDLE_NAME 2 \N patient_name middle_name $!{patient.getMiddleName()} 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c97a63-6437-11e4-badf-42010af0dc15
11 PATIENT.MEDICAL_RECORD_NUMBER 2 \N patient_identifier identifier $!{patient.getPatientIdentifier(1).getIdentifier()} 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c97b79-6437-11e4-badf-42010af0dc15
12 PATIENT.PATIENT_ID 2 \N patient patient_id $!{patient.getPatientId()} 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c97c3a-6437-11e4-badf-42010af0dc15
13 PATIENT.SEX Gender 2 \N patient gender $!{patient.getGender()} 0 1 2006-07-18 00:00:00 3 2014-11-19 15:02:58 0 \N \N \N 17c97cf6-6437-11e4-badf-42010af0dc15
14 PATIENT.TRIBE 2 \N patient tribe $!{patient.attributeMap.Tribe.hydratedObject.tribeId}^$!{patient.attributeMap.Tribe.hydratedObject.name} 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c97daa-6437-11e4-badf-42010af0dc15
15 PATIENT_ADDRESS.ADDRESS1 2 \N patient_address address1 $!{patient.getPersonAddress().getAddress1()} 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c97e69-6437-11e4-badf-42010af0dc15
16 PATIENT_ADDRESS.ADDRESS2 2 \N patient_address address2 $!{patient.getPersonAddress().getAddress2()} 0 1 2006-07-18 00:00:00 \N \N 0 \N \N \N 17c97f25-6437-11e4-badf-42010af0dc15
17 encounter.encounter_datetime Date and time of encounter 2 \N encounter encounter_datetime \N 0 1 2006-07-18 00:00:00 3 2015-10-06 22:43:52 0 \N \N \N 17c97fec-6437-11e4-badf-42010af0dc15
18 encounter.location_id Location 2 \N encounter location_id \N 0 1 2006-07-18 00:00:00 3 2015-10-06 22:43:52 0 \N \N \N 17c980b0-6437-11e4-badf-42010af0dc15
19 encounter.provider_id Clinician 2 \N encounter provider_id 0 1 2006-07-18 00:00:00 3 2015-10-06 22:43:52 0 \N \N \N 17c98170-6437-11e4-badf-42010af0dc15
20 WEIGHT (KG) Patient's weight in kilograms. 1 5089 0 1 2006-07-18 00:00:00 3 2015-01-22 11:35:40 0 \N \N \N 17c98231-6437-11e4-badf-42010af0dc15
21 PROBLEM LIST List of problems for a given patient visit. 1 1284 0 1 2006-07-26 00:00:00 \N \N 0 \N \N \N 17c982ef-6437-11e4-badf-42010af0dc15
22 PROBLEM ADDED Diagnosis or problem noted on a patient encounter. 1 6042 0 1 2006-07-26 00:00:00 \N \N 0 \N \N \N 17c983b4-6437-11e4-badf-42010af0dc15
23 PROBLEM RESOLVED Diagnosis or problem noted on a patient encounter as being resolved. 1 6097 0 1 2006-07-26 00:00:00 \N \N 0 \N \N \N 17c98479-6437-11e4-badf-42010af0dc15
24 Identity details Identity details 5 \N 0 1 2014-11-18 10:04:53 1 2014-11-18 10:05:32 0 \N \N \N 239dddbf-ac02-4095-8c25-4d598e287bb3
25 First name 2 \N patient_name given_name $!{patient.getGivenName()} 0 1 2014-11-18 10:05:21 1 2014-11-18 10:12:30 0 \N \N \N c1b59273-282a-4641-b1b7-49152448dd53
26 Family name 2 \N patient_name family_name $!{patient.getFamilyName()} 0 1 2014-11-18 10:05:43 1 2014-11-18 10:12:26 0 \N \N \N 8d0802d2-64b9-4895-b2a3-f59fa1ba22c2
27 All other names 2 \N patient_name middle_name $!{patient.getMiddleName()} 0 1 2014-11-18 10:05:58 1 2014-11-18 10:12:22 0 \N \N \N b2d87e8c-03af-48f4-a205-4cd18d67f3d2
28 PATIENT.MIDDLE_NAME All other names 2 \N patient_name middle_name $!{patient.getMiddleName()} 0 1 2014-11-18 10:06:00 \N \N 0 \N \N \N a54df340-1c1b-4f4a-a5cd-c7c0519e480f
29 RESPONDENT GENDER Male or female 1 1533 0 1 2014-11-18 10:07:53 \N \N 0 \N \N \N 92616222-b73e-40d2-a1cc-a9bc2ef0fd2f
30 Sex 2 \N patient gender $!{patient.getGender()} 0 1 2014-11-18 10:08:52 1 2014-11-18 10:12:39 0 \N \N \N 4e726d75-c1c4-42b0-baf3-16a28d39e401
31 ENCOUNTER Encounter section of form 5 \N 0 1 2014-11-18 10:18:11 \N \N 0 \N \N \N 4204dfc3-988d-4d2e-8f8c-f157ec599f71
32 Age 5 \N 0 1 2014-11-18 10:18:34 \N \N 0 \N \N \N 46eb5528-79ca-4c7d-ba12-d7f53dbcb1ff
33 PATIENT AGE Generic answer to a question. For example, a patient stops a medication because of his or her age. 1 989 0 1 2014-11-18 10:18:49 \N \N 0 \N \N \N 5f47d188-76e0-4ba2-948b-f7e753fa93fe
34 PATIENT.BIRTHDATE 2 \N patient birthdate $!{date.format($patient.getBirthdate())} 0 1 2014-11-18 10:19:18 \N \N 0 \N \N \N 821eb879-f137-4143-adad-8de8300aa5da
35 PATIENT.BIRTHDATE_ESTIMATED 2 \N patient birthdate_estimated $!{patient.getBirthDateEstimated()} 0 1 2014-11-18 10:19:24 \N \N 0 \N \N \N 728362e9-8afb-43a1-8b98-8bde186f9856
36 Origin 5 \N 0 1 2014-11-18 10:20:51 \N \N 0 \N \N \N ac496c9d-31fa-4f6f-b43b-b30c0b47ab40
37 District A geographical division 1 162689 0 1 2014-11-18 10:21:13 \N \N 0 \N \N \N 70fad49a-0ede-4315-9766-c8701ef26031
38 Chiefdom A geographic division 1 162690 0 1 2014-11-18 10:21:23 \N \N 0 \N \N \N 769b3d1b-496a-4f62-ba78-8ffe19a66a19
39 VILLAGE Village is the name of the location of residence 1 1354 0 1 2014-11-18 10:21:34 \N \N 0 \N \N \N c4e9fd70-4b40-4393-a5c3-6ae82faf8ebb
40 Mobile 5 \N 0 1 2014-11-18 10:22:38 \N \N 0 \N \N \N 45bf338f-f16f-4a36-b552-98190b5899d8
41 CELL PHONE Answer to question about type of phone. A cell phone or mobile phone. The actual number is stored in a separate field. 1 1650 0 1 2014-11-18 10:22:54 \N \N 0 \N \N \N 0221a114-ec3b-4385-9f7b-369e53f15f94
42 CHW (Community Health Worker) 1 1555 0 1 2014-11-18 10:25:14 \N \N 0 \N \N \N 0e5d2d64-2f6f-42d2-ac93-e0f1d5046685
43 Occupation 5 \N 0 1 2014-11-18 10:25:41 \N \N 0 \N \N \N b8ecfa46-dbfc-4e8c-a296-65bfd90a2816
44 HEALTH FACILITY 1 1537 0 1 2014-11-18 10:26:21 \N \N 0 \N \N \N a23556a4-d5d4-4100-b4a5-6e4a643db99b
45 OCCUPATION Main activity of the patient 1 1542 0 1 2014-11-18 10:26:46 \N \N 0 \N \N \N 6a4ed76c-5029-4220-8ec0-5e3553cffbc8
46 Pulse Patient pulse rate, as measured with a peripheral oximeter. 1 5087 0 1 2014-11-18 11:15:56 \N \N 0 \N \N \N 5866e6a0-5a79-4254-ba5b-2736564699b5
47 Pulse Patient pulse rate, as measured with a peripheral oximeter. 1 5087 0 1 2014-11-18 11:16:58 \N \N 0 \N \N \N b36f6fb9-66dc-4bb2-bfbf-dc2eb017980e
48 Pregnancy Status Question on encounter form: "Is the patient pregnant?" 1 5272 0 1 2014-11-18 11:51:57 1 2014-11-18 14:51:25 0 \N \N \N 585888a3-37aa-4684-bac2-d9441b7f733d
49 Fever An abnormal elevation of body temperature, usually as a result of a pathologic process. 1 140238 0 1 2014-11-18 11:57:15 \N \N 0 \N \N \N 78ab5fc5-c0ac-42b5-8458-fdd946afdecf
50 Temperature (C) Patient's temperature in degrees centigrade. 1 5088 0 1 2014-11-18 11:57:58 \N \N 0 \N \N \N 81068f05-9b95-4d8b-9f5e-0cadf1f66b62
51 Respiratory rate Measured respiratory rate in breaths per minute 1 5242 0 1 2014-11-18 12:01:06 \N \N 0 \N \N \N bd0cacf5-ab08-4c07-88d9-fa1a494cb235
52 DIASTOLIC BLOOD PRESSURE A patient's diastolic blood pressure measurement (taken with a manual cuff in either a sitting or standing position) 1 5086 0 1 2014-11-18 12:01:31 \N \N 0 \N \N \N 459f337b-36f7-43a0-ab62-e3e2de7752bb
53 SYSTOLIC BLOOD PRESSURE A patient's systolic blood pressure measurement (taken with a manual cuff in either a sitting or standing position) 1 5085 0 1 2014-11-18 12:01:37 \N \N 0 \N \N \N 48f130fd-14ba-4792-b831-e01cb8fae86b
54 Blood oxygen saturation Oxygen saturation, as measured from a peripheral oximeter. 1 5092 0 1 2014-11-18 12:02:26 \N \N 0 \N \N \N 972209ae-5cf2-4a71-bbe2-e0acac5e381b
55 Glasgow coma score (GCS) 1 160347 0 1 2014-11-18 12:04:05 \N \N 0 \N \N \N 1acc472c-f79f-4a97-a4c5-52a920949079
56 Diarrhea Passage of excessively liquid or excessively frequent stools. 1 142412 0 1 2014-11-18 12:05:50 \N \N 0 \N \N \N 5589ed41-4ce8-44a4-a26b-496161dd6bd6
57 VOMITING The forcible expulsion of the contents of the stomach through the mouth. 1 122983 0 1 2014-11-18 12:07:15 \N \N 0 \N \N \N d3308c7b-58e6-43b7-86ae-a94c62b22d95
58 NAUSEA A feeling of sickness in the stomach characterized by an urge to vomit. 1 5978 0 1 2014-11-18 12:08:56 \N \N 0 \N \N \N 968d9158-baf3-4c41-bee5-7a30feb49238
59 Bleeding Gums The flowing of blood from the marginal gingival area, particularly the sulcus, seen in such conditions as GINGIVITIS, marginal PERIODONTITIS, injury, and ASCORBIC ACID DEFICIENCY. 1 147230 0 1 2014-11-18 12:10:13 \N \N 0 \N \N \N aae6f94a-5e06-4121-a30d-f5c875467bdd
60 Hemoptysis Bronchial hemorrhage manifested with spitting of blood. 1 138905 0 1 2014-11-18 12:12:20 \N \N 0 \N \N \N 6d8c8170-0f80-47bd-8081-0ffff937b8f0
61 HAEMORRHAGE NASAL Bleeding from the nose. 1 133499 0 1 2014-11-18 12:12:33 \N \N 0 \N \N \N 480269ba-40c5-4edd-a71d-fe0f0e780773
62 Hematuria The presence of blood or blood cells in the urine. 1 840 0 1 2014-11-18 12:16:29 \N \N 0 \N \N \N 17b95679-5d6a-4512-a302-f738165c9e18
63 HEMATOCHEZIA Bleeding in the gastrointestinal tract. 1 117671 0 1 2014-11-18 12:16:46 \N \N 0 \N \N \N ce3dffda-5cd6-4a5b-82c7-5c12d99ea232
64 ABNORMAL VAGINAL BLEEDING 1 150802 0 1 2014-11-18 12:16:59 \N \N 0 \N \N \N d5fb3bcc-ba60-40fa-9207-7d622820b676
65 Urine output, qualitative 1 162647 0 1 2014-11-18 12:17:52 \N \N 0 \N \N \N 6e47205d-e023-4de0-838c-27a6db09599e
66 LOCATION A section on a form for handling location information 5 \N 0 1 2014-11-18 12:31:06 1 2014-11-18 13:18:03 0 \N \N \N 4dd1fc8c-ccc4-4825-a9ac-5edcb6e8bff9
67 LOCATION.ASSIGNED_ZONE \N 2 \N person_attribute assigned_zone ${patient.attributeMap.assigned_zone} 0 1 2014-11-18 13:27:08 1 2014-11-18 13:31:40 0 \N \N \N 19026484-b280-4c3f-b827-69e5d50f6586
68 LOCATION.ASSIGNED_TENT \N 2 \N person_attribute assigned_tent ${patient.attributeMap.assigned_tent} 0 1 2014-11-18 13:27:30 1 2014-11-18 13:32:06 0 \N \N \N 6441c23b-ed6f-429f-a8d7-e7a236fdebc5
69 LOCATION.ASSIGNED_BED \N 2 \N person_attribute assigned_bed ${patient.attributeMap.assigned_bed} 0 1 2014-11-18 13:27:49 1 2014-11-18 13:31:54 0 \N \N \N 643cfa0a-9ab1-490c-a71b-af27fa8ccb3c
70 Mobility A category for how well the patient can walk 1 777000000 0 1 2014-11-18 14:00:20 1 2014-11-18 14:54:59 0 \N \N \N c34c4a4d-90fd-482f-acdc-6a6e804dad26
71 Level of consciousness 1 162643 0 1 2014-11-18 14:16:27 \N \N 0 \N \N \N c66269a9-d9a0-45c0-96da-9a59695d4a6b
73 MSF Patient ID 2 \N patient_identifier identifier $!{patient.getPatientIdentifier(1).getIdentifier()} 0 1 2014-11-18 15:07:14 \N \N 0 \N \N \N 32d60a45-ae85-45a1-bfa7-5ba5becd9c4a
74 ENCOUNTER Encounter 5 \N 0 3 2014-11-18 23:17:42 3 2014-12-06 14:54:55 0 \N \N \N d717845b-4831-4447-a8ec-cf038d244543
75 OBS Obs section of form 1 1238 0 3 2014-11-18 23:17:52 \N \N 0 \N \N \N e49127a4-4eb1-48a4-80b5-c76d9e6f19a7
76 Food / Drink What the patient is able to eat or drink 1 777000003 0 3 2014-11-18 23:40:25 \N \N 0 \N \N \N 74a3b7a6-c10d-4ed1-b82b-2d81b90b30dd
77 Occult Blood in Stools Black, tarry feces containing digested blood. 1 132494 0 3 2014-11-18 23:51:38 \N \N 0 \N \N \N df912180-c052-4d22-8a32-344aba41bf5b
78 Dehydration finding 1 1497 0 3 2014-11-18 23:54:47 \N \N 0 \N \N \N 7caf37c4-74a6-48d0-b2d4-978ae980f1ea
80 Vitals Vital signs 5 \N 0 3 2014-11-19 08:20:25 3 2014-11-19 08:30:09 0 \N \N \N 88a97196-e82c-4cd5-82c1-e4999bfef05d
81 General health General health status of the patient 5 \N 0 3 2014-11-19 08:20:41 3 2014-11-19 08:29:54 0 \N \N \N b04ca32e-67d5-4143-965f-9f8151573169
82 Symptoms Symptoms the patient reports 5 \N 0 3 2014-11-19 08:20:54 3 2014-11-19 08:30:24 0 \N \N \N 18b26e73-8575-4146-ba0d-8290c8766b70
83 PATIENT Patient details 5 \N 0 3 2014-11-19 14:29:57 \N \N 0 \N \N \N 455d3234-2cf6-4cc9-a35c-0f15dd75cb49
84 General Health General Health 5 \N 0 3 2014-11-19 14:31:20 \N \N 0 \N \N \N 25170c75-dde4-4f6e-b7a1-2a17d3f073f8
85 General health Overall Assessment 5 \N 0 3 2014-11-20 18:30:55 3 2015-01-22 15:49:52 0 \N \N \N 11247901-6508-48ee-81ba-15da06fe90be
86 Vitals Vital signs 5 \N 0 3 2014-11-20 18:32:05 3 2014-12-05 11:59:59 0 \N \N \N d0276592-d139-497f-84be-5859cc7bb517
87 Symptoms C[binary][invisible] Symptoms the patient reports (third set) 5 \N 0 3 2014-11-20 18:33:11 1 2014-12-03 12:27:59 0 \N \N \N e6975656-6078-402d-80d3-c2919d080954
89 Vitals Vital signs 1 777000005 0 3 2014-11-25 13:53:15 \N \N 0 \N \N \N a73ea634-7543-45be-8916-727b6801028b
90 Symptoms Symptoms the patient reports 1 777000006 0 3 2014-11-25 13:53:35 \N \N 0 \N \N \N a632b788-0664-4251-88c5-ac00a6f5ea85
91 WEAKNESS The condition or quality of being weak. 1 5226 0 1 2014-12-02 14:14:07 \N \N 0 \N \N \N 6900c3c7-84bf-4e40-9d1e-2c2a3a3a9b4c
92 Chest pain 1 120749 0 1 2014-12-02 14:30:16 \N \N 0 \N \N \N ab86efc9-3700-49b1-bf46-97bac595c79b
93 Abdominal pain Pain in the abdomen, unspecified cause. 1 151 0 1 2014-12-02 14:31:15 \N \N 0 \N \N \N b3722113-d035-4481-82cf-f222f7d272e0
94 Pain An unpleasant sensation induced by noxious stimuli and generally received by specialized nerve endings. 5 114403 0 1 2014-12-02 14:33:27 1 2014-12-02 14:38:01 0 \N \N \N a9c41975-1c4d-4d7b-9bbe-1eba193ae7ff
95 Cough 1 143264 0 1 2014-12-02 14:35:40 \N \N 0 \N \N \N d1670072-8286-463c-b6bf-d2abf881b736
96 Obsolete 5 \N 0 1 2014-12-02 14:40:11 \N \N 0 \N \N \N bbde02c4-589f-40a4-83c9-0964c49c43eb
97 Shortness of breath 1 141600 0 1 2014-12-02 14:56:03 \N \N 0 \N \N \N ebda5ec2-ea55-4a91-8bb5-4624579fbf83
98 Hiccups A spasm of the diaphragm that causes a sudden inhalation followed by rapid closure of the glottis which produces a sound. 1 138662 0 1 2014-12-02 15:00:14 \N \N 0 \N \N \N 6bdd1c08-a176-4f9e-87a1-b0fa23c6e964
99 Pain detail[binary] Pain (Detail) 5 \N 0 3 2014-12-02 19:25:22 1 2014-12-03 14:20:56 0 \N \N \N a9623fed-8c93-452a-956d-96d3f46d2a56
100 Cough 1 143264 0 3 2014-12-02 20:55:37 \N \N 0 \N \N \N a2d53920-af37-4978-b21a-86dc2852d2ca
101 Hiccoughs A spasm of the diaphragm that causes a sudden inhalation followed by rapid closure of the glottis which produces a sound. 1 138662 0 3 2014-12-02 21:05:35 \N \N 0 \N \N \N f0ef5899-a0f2-4981-8d35-e6a8cae5e673
102 Headache Pain in the cranial region that may occur as an isolated and benign symptom or as a manifestation of a wide variety of conditions including SUBARACHNOID HEMORRHAGE; CRANIOCEREBRAL TRAUMA; CENTRAL NERVOUS SYSTEM INFECTIONS; INTRACRANIAL HYPERTENSION; and other disorders. In general, recurrent headaches that are not associated with a primary disease process are referred to as HEADACHE DISORDERS (e.g., MIGRAINE). 1 139084 0 3 2014-12-02 21:07:12 \N \N 0 \N \N \N 53cc8114-8cc1-46f1-878a-3cf36a348b0a
103 Headache Pain in the cranial region that may occur as an isolated and benign symptom or as a manifestation of a wide variety of conditions including SUBARACHNOID HEMORRHAGE; CRANIOCEREBRAL TRAUMA; CENTRAL NERVOUS SYSTEM INFECTIONS; INTRACRANIAL HYPERTENSION; and other disorders. In general, recurrent headaches that are not associated with a primary disease process are referred to as HEADACHE DISORDERS (e.g., MIGRAINE). 1 139084 0 3 2014-12-02 21:07:24 \N \N 0 \N \N \N b13a4e90-c0d1-45f4-80ef-f526a79eb4db
104 Below fold Below fold 3 \N 0 3 2014-12-02 21:12:25 \N \N 0 \N \N \N 03d95b22-3682-42e9-a5e3-f402d3606bb7
105 BACK PAIN 1 148035 0 3 2014-12-02 21:14:25 \N \N 0 \N \N \N d7a364f3-bb4f-4438-9e6d-4822556c0300
106 Myalgia Muscular pain or tenderness, especially when diffuse and nonspecific. 1 121 0 3 2014-12-02 21:16:32 \N \N 0 \N \N \N 7a5d1a75-6433-4a73-8b2c-26a101af4b67
107 Bleeding from Mouth Bleeding from the blood vessels of the mouth, which may occur as a result of injuries to the mouth, accidents in oral surgery, or diseases of the gums. 1 147234 0 3 2014-12-02 21:19:46 \N \N 0 \N \N \N d08f1fde-7e0e-4019-8d4a-5326b2ce96d4
108 Bleeding Detail [binary] Bleeding (Detail) 5 \N 0 3 2014-12-02 21:20:20 1 2014-12-03 14:21:42 0 \N \N \N 4e23eff5-c5c2-4ee1-83e0-24c665503771
109 Haematemesis Vomiting of blood. 1 139006 0 3 2014-12-02 21:30:03 \N \N 0 \N \N \N 17c440ef-71da-4c03-a23a-bae5d8a1a683
111 Symptoms B[invisible] Symptoms the patient reports (second set) 5 \N 0 3 2014-12-03 09:40:36 1 2014-12-03 12:28:10 0 \N \N \N fbfbe7bc-c422-4354-a49b-0218d93a5a7e
112 Insert intravenous (IV) line 1 162623 0 3 2014-12-03 10:27:54 \N \N 0 \N \N \N 2a5df87e-3bd1-4e6e-b051-b0bac3c34159
113 Intravenous administration 1 160242 0 3 2014-12-03 10:28:39 \N \N 0 \N \N \N 55e3d7e7-9e46-4ea6-9b0a-098f1fafece5
114 Ebola virus RNA by polymerase chain reaction Ebola virus PCR in any sample 1 162599 0 3 2014-12-03 10:29:27 \N \N 0 \N \N \N ae030f2e-9207-466b-9f07-1fc6f7a88ec2
115 Obsolete obsolete section 5 \N 0 3 2014-12-03 10:54:35 \N \N 0 \N \N \N 7346bb95-cd03-4aad-b5bd-931631c88e01
116 Symptoms A[binary][invisible] Symptoms the patient reports (first set) 5 \N 0 1 2014-12-03 11:57:28 1 2014-12-03 12:28:20 0 \N \N \N e52e6827-7b3a-4925-b2f0-9b7f3ffaf758
117 Pain assessment[invisible] The pain assessment field 5 \N 0 1 2014-12-03 14:13:35 \N \N 0 \N \N \N 14fc7877-b95f-44c1-9639-a32b4a8631a1
118 Pain Assessment A general assessment of the patient's pain level 1 777000007 0 1 2014-12-03 14:20:27 \N \N 0 \N \N \N c08f08d3-d423-43ea-858f-86ff324a3454
119 Bleeding Overall Bleeding 5 \N 0 1 2014-12-03 14:22:35 3 2015-01-23 16:51:11 0 \N \N \N aa395417-5343-4c70-b951-19b72998ac2f
120 Bleeding Bleeding or escape of blood from a vessel. 1 147241 0 1 2014-12-03 14:31:06 \N \N 0 \N \N \N d316668f-7111-4d9e-a2cc-cfbc22d95479
121 General Condition Patient's general condition 1 777000010 0 1 2014-12-03 15:08:38 \N \N 0 \N \N \N 0ab02868-60b3-440d-9b35-fbe577f6048f
122 Additional details [binary] Additional Details 5 \N 0 1 2014-12-03 15:16:16 3 2015-01-22 15:51:32 0 \N \N \N 5bd3fdc6-f550-404e-8ce2-8f49d88b2eea
123 IV line present The patient as an IV line (e.g. cannula) fitted. 1 777000011 0 1 2014-12-03 15:59:51 \N \N 0 \N \N \N 5474b00c-54e8-4306-a4e7-47a167a9e984
124 Method of fluid management 1 162653 0 1 2014-12-03 16:39:28 \N \N 0 \N \N \N c6a57e4c-282c-4c9d-9478-e22730f6bccf
125 Dyspnea Difficult or labored breathing. 1 122496 0 1 2014-12-03 17:19:03 \N \N 0 \N \N \N 89d77f9f-535b-43bd-a25a-dae956f5f13a
126 Method of fluid management 1 162653 0 3 2014-12-04 18:55:00 \N \N 0 \N \N \N 3981edcd-fff0-4382-869f-fb3c3189b599
127 IV line present The patient as an IV line (e.g. cannula) fitted. 1 777000011 0 3 2014-12-04 18:55:18 \N \N 0 \N \N \N f3912f53-6bca-49c8-8d98-b6bfc4a6601e
128 General Condition Patient's general condition 1 777000010 0 3 2014-12-04 18:56:05 \N \N 0 \N \N \N 195b2dd3-4970-4ac7-92ef-88be29b56a0e
129 Text of encounter note Free text note field intended to capture unstructured description of the patient encounter 1 162169 0 3 2014-12-15 15:12:11 \N \N 0 \N \N \N 39693ee0-2b43-4218-8ae2-53f2df61ea4a
130 Notes[invisible] 5 \N 0 3 2014-12-15 15:32:32 \N \N 0 \N \N \N c949db6b-0f51-42f4-a1ea-c50b8e728f3a
131 Symptoms A[binary] Signs and Symptoms 5 \N 0 3 2014-12-15 17:24:46 3 2014-12-15 20:22:35 0 \N \N \N a0a1dd08-306f-414c-9f89-a9ec3803cb29
132 Symptoms C[binary] Other Symptoms 5 \N 0 3 2014-12-15 17:25:34 3 2015-01-22 15:43:41 0 \N \N \N b8d0222d-66ed-42b7-873a-4943a3f6c027
133 Special Group [binary] Special Group 5 \N 0 3 2015-01-13 12:36:02 \N \N 0 \N \N \N e2ca9d4e-2173-41bb-bec7-9ccd695c614d
134 L gene CT value Part of a test result for ebola, the CT value from a qPCR test using an L gene marker. 1 162827 0 3 2015-01-13 12:36:24 \N \N 0 \N \N \N d8911815-10d3-4ba1-9158-bda73c1d616a
135 Ebola Lab Test Results Ebola Lab Test Results 5 \N 0 3 2015-01-13 12:36:38 3 2015-01-24 00:48:09 0 \N \N \N 364c96e0-b4f2-4c64-848c-562264d6a3e6
136 Np gene PCR CT value Part of a test result for ebola, the CT value from a qPCR test using an Np (nucleoprotein) gene marker. 1 162826 0 3 2015-01-13 12:36:45 3 2015-01-24 00:48:39 0 \N \N \N 108a2205-3ccd-485d-813a-13e205ecad05
137 Ebola Np gene PCR CT value Part of a test result for ebola, the CT value from a qPCR test using an Np (nucleoprotein) gene marker. 1 162826 0 3 2015-01-13 12:41:07 \N \N 0 \N \N \N 4b3819a2-9db7-4367-8879-160d506c6db6
138 L gene CT value Part of a test result for ebola, the CT value from a qPCR test using an L gene marker. 1 162827 0 3 2015-01-13 12:41:16 \N \N 0 \N \N \N 9647ae5e-e96b-4bab-ba0a-6207ff8b10b0
139 Vomiting (daily count) The count of the number of times where the patient vomited in the last 24 hours. 1 777000014 0 3 2015-01-22 11:26:30 \N \N 0 \N \N \N 45848eb9-1b09-452d-af11-45eb2cc400c3
140 Diarrhea (daily count) The count of the number of times the patient has had diarrhea in the past 24 hours. 1 777000015 0 3 2015-01-22 11:27:01 \N \N 0 \N \N \N 645276c1-56d1-493a-b87a-73310a046f3f
141 Lower abdominal pain 1 157544 0 3 2015-01-22 11:42:14 \N \N 0 \N \N \N 00bb63c7-7370-4d79-8432-5514294dfda7
142 upper abdominal pain, unspecified 1 159249 0 3 2015-01-22 11:42:34 \N \N 0 \N \N \N c61bf9bb-fb8f-4c04-8a54-e6197fe3edfe
143 Sore throat 1 158843 0 3 2015-01-22 13:19:04 \N \N 0 \N \N \N 50fbcac4-eb73-444a-abf1-70df98672a70
144 Heartburn 1 139059 0 3 2015-01-22 13:22:53 \N \N 0 \N \N \N eab9dee2-893f-474f-893f-816e49628fe7
145 Red Eye 1 127777 0 3 2015-01-22 13:30:11 \N \N 0 \N \N \N feaa2625-3989-42e3-82e3-adb486c4feb4
146 VAGINAL BLEEDING Hemorrhage from vessels in the uterus, sometimes manifested as vaginal bleeding. 1 147232 0 3 2015-01-22 13:52:00 \N \N 0 \N \N \N 3f9ebfea-96d5-409e-9ea4-a980696f3d42
147 Melaena Black, tarry feces containing digested blood. 1 134394 0 3 2015-01-22 14:15:04 \N \N 0 \N \N \N cf0fbee1-085d-42aa-82ea-bc2c830e54e4
148 Bleeding from eyes This is not hyphema or subconjunctival haemorrhage, it is actually bleeding out of the eyes. This is a rare symptom that occurs occasionally in Haemorrhagic fevers like Ebola. 1 777000016 0 3 2015-01-22 15:06:19 \N \N 0 \N \N \N dea65760-0589-4690-8b6a-d8e429c52e3a
149 Weakness section [invisible] Weakness 5 \N 0 3 2015-01-22 15:45:35 3 2015-01-22 15:46:20 0 \N \N \N 0fe4067d-09e6-474e-90b3-16fc2c91ba1b
150 General Condition General condition of the patient 1 777000010 0 3 2015-01-23 01:03:19 \N \N 0 \N \N \N 391c5084-8d2b-4f30-8719-e59c7654de1a
151 Level of consciousness Best Conscious State (AVPU) 1 162643 0 3 2015-01-23 01:45:43 \N \N 0 \N \N \N d62c4fdc-4a3f-4e4f-8014-a059d772736f
152 Mobility A category for how well the patient can walk 1 777000000 0 3 2015-01-23 01:46:27 \N \N 0 \N \N \N 3c3eb627-58ae-42a8-9443-fd33b6266e43
153 Negative Confirmed negative Ebola virus test 1 162684 0 3 2015-01-24 00:50:19 \N \N 0 \N \N \N a0e64d14-02a3-4755-971d-3c02d0cabf8d
155 Check Patient ID and Name Check Patient ID and Name 5 \N 0 3 2015-01-26 20:13:07 \N \N 0 \N \N \N 9f4cc026-33e8-4cf8-9733-c703b7d8770c
156 Confirm Lab Test Results Confirm Lab Test Results 1 777000020 0 3 2015-01-26 20:13:39 \N \N 0 \N \N \N fb2d7ac3-4f8a-4bde-a66b-bbd18a796a66
157 I have checked the Patient ID and Name and confirm this lab test result. I have checked the Patient ID and Name and confirm this lab test result. 1 777000021 0 3 2015-01-26 21:11:31 \N \N 0 \N \N \N 6bd03579-9ca4-4636-903d-f3746e3e4b59
158 SIGN/SYMPTOM START DATE The date when the sign or symptom started. 1 1730 0 3 2015-01-27 14:24:19 \N \N 0 \N \N \N f45c74b6-c74c-4f55-9efb-a9248d657732
159 General condition section [invisible] General condition section 5 \N 0 3 2015-02-06 13:40:38 3 2015-02-06 13:42:25 0 \N \N \N dc785e33-baa3-4a53-bd11-bd44f4d52a91
160 Admission Date Admission Date 1 162622 0 3 2015-02-08 20:24:49 \N \N 0 \N \N \N 7a235819-bd27-4aa1-b464-56fb3861a025
161 3. Bleeding Sites Bleeding Sites 1 162668 0 3 2015-02-09 22:46:03 \N \N 0 \N \N \N 2f6778f8-8dd2-47cd-8fe8-746dd89f688c
162 4. Notes Free text note field intended to capture unstructured description of the patient encounter 1 162169 0 3 2015-02-09 22:47:07 \N \N 0 \N \N \N c9322836-3fe4-4709-b269-a1bed5d4d3c5
163 Edema An abnormal excess accumulation of serous fluid in connective tissue or in a serous cavity. 1 460 0 3 2015-08-25 00:18:02 \N \N 0 \N \N \N b1c4c599-c079-44ee-9f63-8dd982bccf4e
164 All All 5 1163 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N a33975c7-86d8-4c10-aef5-ff0de68c5b0c
165 Temperature (°C) Temperature (°C) 1 5088 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 95d36c41-002e-4d07-8201-f3cfa577b948
166 Weight (kg) Weight (kg) 1 5089 0 3 2015-08-25 12:15:07 3 2015-09-08 04:19:54 0 \N \N \N b33ba2cf-fabe-4031-a232-502fce08c311
167 Condition Condition 1 777000010 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N c881bf09-b50c-4f3a-8f65-77ad82ea52ed
168 Consciousness Consciousness 1 162643 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N c6155b6e-16d2-483b-86e1-6d711d203de5
169 Mobility Mobility 1 777000000 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 7ca5ac09-05a4-4fed-8aef-28960d0af96b
170 Nausea Nausea 1 5978 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N a941425f-90fb-4615-9e54-8469a69cc7f3
171 Vomiting (24h count) Vomiting (24h count) 1 777000014 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 8e583f71-cf73-4a0b-ae06-d07ae0190397
172 Diarrhoea (24h count) Diarrhoea (24h count) 1 777000015 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 01b199f0-3f85-4388-997c-77afeaf0af51
173 Pain level Pain level 1 777000007 0 3 2015-08-25 12:15:07 3 2015-09-08 04:20:28 0 \N \N \N 3125f4c9-ef6e-4539-819b-c98eb6bd85e1
174 Bleeding Bleeding 1 147241 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N d6475e34-a79f-466d-8d37-0a73a052f642
175 Weakness Weakness 1 5226 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 79b9cdae-e977-4a01-bc4c-8e797421b3be
176 Cough Cough 1 143264 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N ab6bb4f5-b47c-485d-9563-2163d5a35739
177 Difficulty breathing Difficulty breathing 1 122496 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N d493c286-d811-4f77-8fc9-dc3cc43e0c8d
178 Hiccups Hiccups 1 138862 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 85e0bd04-58fd-43cd-9392-d5e7bbffca61
179 Red eyes Red eyes 1 127777 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 14f9800d-e085-46d3-8062-1d7208c70ba5
180 Headache Headache 1 139084 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N d903d423-4f7c-4acb-9853-c734d7a5eb6e
181 Sore throat Sore throat 1 158843 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 63bbf2b1-0f81-4686-ba34-ebcce2999c35
182 Heartburn Heartburn 1 139059 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 8ae2ae4c-4ced-4654-955a-6cb433efc114
183 Chest pain Chest pain 1 120749 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N df13761e-1d10-4196-a0d3-3f3532c01c5a
184 Abdominal pain (upper) Abdominal pain (upper) 1 159249 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N c1dbc54b-d36f-4758-b303-37952be56765
185 Abdominal pain (lower) Abdominal pain (lower) 1 157544 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N c7382b94-44b3-4ff7-bc93-d9a843cc7c70
186 Back pain Back pain 1 148035 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N bc99e7f6-30d1-47e8-9fb4-9413b633d9e2
187 Muscle/joint pain Muscle/joint pain 1 121 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N af9f6ea9-1266-43bd-85fd-fd09ccc2e1d8
188 Oral bleeding Oral bleeding 1 147234 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 1c25b4ea-f0d0-40e3-8b81-333c11716149
189 Nosebleed Nosebleed 1 133499 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N dfac12b1-b9f2-4b41-b98e-32fef7d945eb
190 Coughing up blood Coughing up blood 1 138905 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 4e4956a5-bf2c-461f-9a04-443b7938e40c
191 Vomiting blood Vomiting blood 1 139006 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 97682902-628a-403f-9d0d-4b423c5c457b
192 Blood in urine Blood in urine 1 840 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N c9186afc-85a7-4bf7-ad62-9f10329ad738
193 Vaginal bleeding Vaginal bleeding 1 147232 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 5ac771e2-d00a-4f95-9a19-d0e417096861
194 Black blood in stool Black blood in stool 1 134394 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 98ae1402-7924-4164-bcba-e90c776b43dd
195 Red blood in stool Red blood in stool 1 117671 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 2d2b1eea-69f2-46f6-9ae2-325119aaa177
196 Bleeding from eyes Bleeding from eyes 1 777000016 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 05fe8653-56a6-419d-b231-5f21b48cdd95
197 Notes Notes 1 162169 \N \N \N 0 3 2015-08-25 12:15:07 \N \N 0 \N \N \N 8f3c6a15-b73c-4112-bdc2-d32dbaceabe8
198 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-25 16:28:40 \N \N 0 \N \N \N 86614219-e35d-4f01-94cd-0e8f184017c7
199 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-25 16:28:40 \N \N 0 \N \N \N 931f33d6-5462-4a3b-8d18-fec093cd6781
200 MUAC (cm) MUAC (cm) 1 1343 \N \N \N 0 3 2015-08-25 16:28:40 \N \N 0 \N \N \N 7a4aff6c-981a-4df9-b0f4-06b52449c89c
201 Height (cm) Height (cm) 1 5090 0 3 2015-08-25 16:28:40 3 2015-09-08 07:40:15 0 \N \N \N 0d0adc23-c63b-4828-b70e-9f59ea8bfb64
202 Oedema Oedema 1 460 \N \N \N 0 3 2015-08-25 16:28:40 \N \N 0 \N \N \N 4829f101-0948-48b8-a838-fcaa0c0751a4
203 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 1eb896da-8af5-44bc-be55-24f8bd2e9c87
204 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N b026bab3-d8c3-4976-b5bc-8a0a87721aa2
205 Pulse (BPM) Pulse (BPM) 1 5087 \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N a021b529-cd93-4c05-844c-a835a9a85ce5
206 Respiratory rate (BPM) Respiratory rate (BPM) 1 5242 \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 736570a1-b2f9-4cec-ba3a-c41776ac1370
207 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N b050ece0-9334-429d-9cb0-235ed683aa48
208 Pain (Detail)[binary] Pain (Detail) 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 16f5960c-97fa-4ffb-a368-f4243c822832
209 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N d20356c8-940e-42ac-b8b4-b23ce0bfe444
210 Bleeding (Detail)[binary] Bleeding (Detail) 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 3d5fe356-c6d9-4d4d-a11f-63529b2dc69e
211 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 01153f0e-e892-42e2-a28c-a76b2e2b17e5
212 Other Symptoms[binary] Other Symptoms 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N e67b749a-b2c0-44a5-8f8a-fa6ec6a5467e
213 Hiccups Hiccups 1 138662 \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N b57a4d1d-0143-4290-8782-6599e1bcb057
214 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 8bab9d51-f9ea-4ad3-971f-bc92ff27ff3a
215 Diet Diet 1 777000003 \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N b4a7c250-43fb-46f5-a0ad-4900605b81d4
216 Hydration Hydration 1 162653 \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 759fc35b-82b5-4da8-b330-2843987c7b02
217 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N edf3b7db-431f-4e69-ad79-35852e40b014
218 Pregnant Pregnant 1 5272 \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 8e441d50-6a7c-4ad9-804a-353090dc11d6
219 IV access present IV access present 1 777000011 \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N a3e8995e-9c17-4c4f-8d36-468a89da9d9c
220 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 16:31:42 \N \N 0 \N \N \N 6b883744-489e-4040-8bf6-ae6073b09f24
221 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 67a8b7fa-88b8-4c9e-940b-7097454daafa
222 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N c29dbf0f-4785-45bb-91c6-d45aa94aa38a
223 Systolic Blood Pressure (mm Hg) Systolic Blood Pressure (mm Hg) 1 5085 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 9edef74c-793c-4eda-aeae-35dd2776f7f6
224 Diastolic Blood Pressure (mm Hg) Diastolic Blood Pressure (mm Hg) 1 5086 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N b4d80289-11f8-4cd0-80cc-c48e150507e7
225 SpOâ‚‚ Oxygen Sat (%) SpOâ‚‚ Oxygen Sat (%) 1 5092 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N a27cab27-332c-4a29-a634-8b4ead3f06b7
226 Capillary refill (s) Capillary refill (s) 1 162513 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 2f0e50d4-0119-4e18-9367-4bc8433b2f7d
227 Blood sugar (mg/ml) Blood sugar (mg/ml) 1 887 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 4e0ec12a-1369-4653-8287-5b92173de61c
228 Patient Condition Patient Condition 5 \N \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N c85699be-255c-4887-b4a9-ad4a6f9e9e87
229 Consciousness (AVPU) Consciousness (AVPU) 1 162643 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 657f7663-b40e-4daa-aff4-924a4fd13522
230 Appetite Appetite 1 777000003 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 0606b3c4-3bb4-4600-b138-7227fb76cb42
231 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 3e6c4e54-04f3-4a45-a197-eab3cd39f4a1
232 Anaemia Anaemia 1 115127 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 21daafa1-1f1c-4308-b16e-db5b0c6e3160
233 Dehydration Dehydration 1 1497 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 4c236112-d95b-4843-8d56-3adbfe51b242
234 Diarrhoea (24h count) Diarrhoea (24h count) 1 1837 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N cc0c16e3-104f-4263-9e44-a39948fd0c1e
235 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N c5e179b6-f0eb-453c-859e-9c5084ef1855
236 Bloody diarrhoea Bloody diarrhoea 1 138868 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 2b47a4c7-c72f-47a7-b9dd-da834b55a714
237 Watery diarrhoea Watery diarrhoea 1 161887 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 33d4d4a8-cd78-4386-8d1e-c1decc02f1a4
238 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 069e9223-1aaf-4fd0-8043-a577a1e7fd36
239 Vomiting Vomiting 1 122983 \N \N \N 0 3 2015-08-25 16:33:47 \N \N 0 \N \N \N 2f58ba07-a9fc-4751-9d41-f7f0f68e7185
240 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-25 16:33:48 \N \N 0 \N \N \N 95f9a345-e5ac-4bf6-8fc3-1b847cfcd52c
241 Notes Notes 5 \N \N \N \N 0 3 2015-08-25 16:33:48 \N \N 0 \N \N \N 080fa966-43e0-42f1-b1e3-411dc47382f3
242 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N 323934cc-b1c7-4730-9a89-576bd5195ea1
243 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N e9d58ac4-796f-44a9-8d18-79712cf2e6d4
244 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N 6aee9d02-071a-43a8-b8ea-3afb50d79cc8
245 Pain (Detail)[binary] Pain (Detail) 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N d2485b35-d58e-4564-af25-ff3a085d2581
246 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N 2ce227d5-2508-401b-80ca-81c7fce60189
247 Bleeding (Detail)[binary] Bleeding (Detail) 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N 4fe34da1-8c3e-488f-8754-ce9cd8837eb5
248 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N ac583a25-16ad-4be6-a5ed-fcd5450110c5
249 Other Symptoms[binary] Other Symptoms 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N 745d15e6-8160-4c0c-b260-4cf60d6596ed
250 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N 049c01df-69d7-44fe-baf9-4b6d01861c09
251 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N 14c7dbeb-d508-4739-a40b-a15d0d5260f5
252 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 16:35:37 \N \N 0 \N \N \N 0f3574ee-23f7-420f-8449-afafd44ffc66
253 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-25 16:39:34 \N \N 0 \N \N \N c5957045-810a-46b1-99d2-59255adb70a0
254 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-25 16:39:34 \N \N 0 \N \N \N 41e92814-7392-4551-bfa0-aed10409fc4e
255 MUAC MUAC 1 1343 \N \N \N 0 3 2015-08-25 16:59:10 \N \N 0 \N \N \N f303cfef-0a07-46c4-89bb-c657f10dff45
256 Haemorrhagic Duodenitis Haemorrhagic Duodenitis 1 138862 \N \N \N 0 3 2015-08-25 16:59:10 \N \N 0 \N \N \N ccb38b69-522a-4fe2-9641-cb2ba47e7779
257 Height Height 1 5090 \N \N \N 0 3 2015-08-25 17:01:59 \N \N 0 \N \N \N 39733eb5-fe87-4524-9b50-d1db48549740
258 Paracheck Paracheck 1 1643 \N \N \N 0 3 2015-08-25 17:01:59 \N \N 0 \N \N \N e1c45696-9389-4ebd-bcec-1e36d9e6118d
259 Upper Respiratory Infection Upper Respiratory Infection 1 123565 \N \N \N 0 3 2015-08-25 17:01:59 \N \N 0 \N \N \N 700b588f-5f9e-4fe6-a700-d51abc1eee23
260 Lower Respiratory Infection Lower Respiratory Infection 1 135556 \N \N \N 0 3 2015-08-25 17:01:59 \N \N 0 \N \N \N 0dc08c3b-d88c-402c-85fe-513ae4ac46fd
261 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N a9bf360f-68a7-4852-be62-33a7ff61f2c5
262 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N aaffa474-2602-4443-b064-d4eeef46b107
263 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N dafdc558-c216-43f0-899f-a080fb539feb
264 Pain (Detail)[binary] Pain (Detail) 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N e20cf367-1ccd-455d-a4cc-fb805ace3896
265 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N f8a3f2f3-85a3-4d6c-8d6e-61256ad4fd1c
266 Bleeding (Detail)[binary] Bleeding (Detail) 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N 8e69aa7f-a32d-4fa0-af28-8dc32468bcc3
267 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N 900510c5-a9b3-47d7-b829-400bcbc59230
268 Other Symptoms[binary] Other Symptoms 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N d8819210-ec74-40db-af45-33179a8abd1b
269 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N ed160c84-3e5e-49d9-8938-f137b63896fd
270 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N 9c97a77c-34b3-4d60-9d5a-df0ab76895f7
271 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-25 17:13:41 \N \N 0 \N \N \N 105f204b-8642-473b-a0a2-61ea314aeafd
272 Dyspnea Dyspnea 1 122496 \N \N \N 0 3 2015-08-26 12:01:32 \N \N 0 \N \N \N 742ff1bd-1497-4cbe-ba8f-fba4fbad0f88
273 Red Eye Red Eye 1 127777 \N \N \N 0 3 2015-08-26 12:01:32 \N \N 0 \N \N \N 97929e63-ff36-491a-9339-f5503485ce16
274 upper abdominal pain, unspecified upper abdominal pain, unspecified 1 159249 \N \N \N 0 3 2015-08-26 12:01:32 \N \N 0 \N \N \N 83751de5-3c8f-4c94-8e8a-9517d8613e90
275 Lower abdominal pain Lower abdominal pain 1 157544 \N \N \N 0 3 2015-08-26 12:01:32 \N \N 0 \N \N \N 616fa4e0-a7bc-459d-8a5e-490ac3dda25b
276 Myalgia Myalgia 1 121 \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 972ca86c-d266-4c3d-b4e8-e7e1a7f54d17
277 Bleeding from Mouth Bleeding from Mouth 1 147234 \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N c4f199fb-128c-41e2-a0db-016544eeeb04
278 Nasal haemorrhage Nasal haemorrhage 1 133499 \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N f117dd64-c145-4455-9b3c-2ad9df26ca3d
279 Hemoptysis Hemoptysis 1 138905 \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 4ff2dd63-cbb0-43e2-b9a3-df93647979d1
280 Haematemesis Haematemesis 1 139006 \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N e5f86aae-c280-42f4-8022-6a118b783e89
281 Hematuria Hematuria 1 840 \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 99eaf5c1-31d4-4ec7-84ee-e8977bc7f6cc
282 Melaena Melaena 1 134394 \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 85fd62d9-e17d-4ab8-a02b-8f1de129f024
283 Hematochezia Hematochezia 1 117671 \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 0df92c76-8baa-42b1-8025-71834b056959
284 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 245a6a71-1c13-42f2-8cf4-b61e99f99d88
285 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 59d15615-da3c-478b-83c5-1a27257784ff
286 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N f753fa2d-493f-4a6c-80ca-7da09a50f1fd
287 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N ec7036d6-2ac1-43a1-8d0a-945edd9ba6f6
288 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N bedef535-20ff-4264-b5e3-efb9ad6572cb
289 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N acf65e1f-0e17-48a0-bdb7-1dde2d0cff5f
290 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 075273c5-d923-4449-bf25-4bc36956d8ad
291 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 512411d2-c39a-48c2-9134-0ce4dc5115ed
292 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N ef376886-8658-43fa-b138-89810f0c859e
293 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 4c3a32b6-5e46-4ba3-9959-27f6e5957539
294 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 12:01:33 \N \N 0 \N \N \N 2f47bd9e-9fd3-446a-bec3-5bb9bc750c01
295 État État 1 777000010 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N 999ba520-2377-4220-9580-ceed2e4b6488
296 Température (°C) Température (°C) 1 5088 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N a97d27f1-9aa9-42ea-b0a9-6b140c32b295
297 Poids (kg) Poids (kg) 1 5089 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N e74cc55f-ca05-436c-92d6-227fb0e22243
298 Conscience Conscience 1 162643 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N fb211e88-5592-437a-9224-ca32569828bb
299 Mobilité Mobilité 1 777000000 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N 68fe3b4a-a753-4617-b2ab-4176c0ef1b7d
300 Nausée Nausée 1 5978 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N 115025f3-fafc-4cd1-95dd-44470f884304
301 Vomissement (comte de 24h) Vomissement (comte de 24h) 1 777000014 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N f597215d-cd11-4864-b049-04fce47396ce
302 Diarrhée (comte de 24h) Diarrhée (comte de 24h) 1 777000015 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N c82c8131-f46e-45ab-92ae-7413fba38069
303 Niveau de douleur Niveau de douleur 1 777000007 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N f87ff28b-8149-4026-b83b-ac12d97cf216
304 Saignement Saignement 1 147241 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N 6d387ac6-32fc-47dc-bd03-ca957f5adfdc
305 Faiblesse Faiblesse 1 5226 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N cb11a6cc-0ae7-4925-ba85-b196def0a6d6
306 Toux Toux 1 143264 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N 936c9c89-bbe1-4733-87fb-5323dbf2a094
307 Difficulté à respirer Difficulté à respirer 1 122496 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N 5518ffdd-0ac0-490b-be25-fc13066efe3c
308 Hoquet Hoquet 1 138862 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N df67ac6a-64f3-42ca-b6bd-25349aba5bff
309 Yeux rouges Yeux rouges 1 127777 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N b29eea82-1baf-4247-8a10-fc8e23392a4b
310 Mal de tête Mal de tête 1 139084 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N 95e80f9c-6dcb-43a4-8a16-8f0b096f3279
311 Mal de gorge Mal de gorge 1 158843 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N 725e0d1d-15f3-4c67-867d-a717bf7cf992
312 Brûlures d'estomac Brûlures d'estomac 1 139059 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N d2a3d7dd-b4f2-4763-ab6e-49edc687cf71
313 Douleur de poitrine Douleur de poitrine 1 120749 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N bbd26520-22f8-4ee9-85df-204827b14876
314 Douleur abdominale (supérieure) Douleur abdominale (supérieure) 1 159249 \N \N \N 0 3 2015-08-26 12:59:57 \N \N 0 \N \N \N f13fe5a8-70fa-415d-88e9-e50c32c0d6c4
315 Douleur abdominale (inférieure) Douleur abdominale (inférieure) 1 157544 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N b2651316-29fc-483b-bf9f-3eb809187c83
316 Mal au dos Mal au dos 1 148035 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N fce31791-9fb5-4ead-b6e6-d07627d0750b
317 Douleur musculaire/articulaire Douleur musculaire/articulaire 1 121 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N e7cbb44e-47e9-49a6-be70-32a638090593
318 Saignements orale Saignements orale 1 147234 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 4457d678-7d10-4afc-ba80-f1dbca4add6f
319 Saignement de nez Saignement de nez 1 133499 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 54f3b962-c6f1-4617-b5d8-9583621c6af9
320 Crachats de sang Crachats de sang 1 138905 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 1f5e8f6d-f4cd-4d9e-a0be-5c49a3380348
321 Vomissements de sang Vomissements de sang 1 139006 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 4539d40c-8431-4455-87a3-58ab75c8cdb2
322 Sang dans l'urine Sang dans l'urine 1 840 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 794be860-1400-426e-9361-15819d7b1630
323 Saignements vaginaux Saignements vaginaux 1 147232 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 5d658332-69a8-42ce-a5f7-cd13b5244df8
324 Sang noir dans les selles Sang noir dans les selles 1 134394 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 25a91e2a-cab8-4615-82d9-64fd0fe90ade
325 Sang rouge dans les selles Sang rouge dans les selles 1 117671 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 6e24c7d5-0617-493c-adce-55974ee18ca8
326 Saignement des yeux Saignement des yeux 1 777000016 \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 7c8d236f-bfaf-494b-a654-715f69e8eece
327 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N b771d369-4da4-415b-9495-ea0decbfcaf4
328 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 4fb33597-c962-4f48-bfbc-25dd8d5adc7f
329 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N c3683b8a-19ca-45c4-8c5f-d7ce3df52fb2
330 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 4adb5fb3-992c-40af-858b-245a7316555d
331 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 4603ae53-95ba-49d8-8bc9-3418c1d7e285
332 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 03a578ea-ba74-4470-81bf-13c249c38876
333 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 25fc53bf-3880-46ea-9f9e-a2e9baf3aebd
334 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 5efef3fb-7022-46de-8d3a-8c8ee4905298
335 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N e5cbcaee-a96b-4041-88c9-ead7bb962778
336 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 90e8171c-aa74-4e03-9cec-1b96fc765858
337 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 12:59:58 \N \N 0 \N \N \N 6f7f700c-87f9-4e67-adba-aedb9b8cb7a1
338 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N fef5a8cb-21e1-4f78-87de-e099ea014e62
339 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 566a1c93-3d52-44c1-8857-af8ce4b41569
340 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 90c9f5a1-e17d-4b23-8a2b-ecce0fb20672
341 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 43ab6712-4fff-4c5a-b85f-344d71fe7197
342 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 882a08c4-a984-452e-bfea-f5187a031dec
343 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 94ad3745-6477-4a7e-bba6-52b09a224201
344 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 78fb5780-7a68-427d-8b64-274033812eba
345 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 5e9117de-3863-4949-8fdb-da74f7b0cc52
346 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 13561916-80a5-4612-b191-27291b28da88
347 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 8166d30e-4657-484f-860f-41ecd6a2f4a5
348 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:00:05 \N \N 0 \N \N \N 15afb87b-f416-4096-ac3b-81fcf7c6d8ae
349 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N 77baca6c-fabc-4d7c-81ad-4469d377b2a4
350 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N 5c667ab0-df98-4b9f-90cb-9eca9ec57e44
351 Temperature (°C) Temperature (°C) 1 5088 \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N 5a9c8446-b3a3-46d5-82b8-55f499df87b9
352 SpO₂ Oxygen Sat (%) SpO₂ Oxygen Sat (%) 1 5092 \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N d6ccdd9a-1495-46cc-8ba0-6dff148972c6
353 Patient Condition Patient Condition 5 \N \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N 4e81ce56-667c-4850-9d1d-4234701a1601
354 Urinating Urinating 1 777000100 \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N ba0e8448-d7c8-440b-bf85-6c45f63d9b07
355 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N dbb118dc-8189-4500-8929-eb5fd855d984
356 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N c0855f38-b560-482d-9d07-c268d71a7d5b
357 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N ef00db00-708c-48f6-b93e-0eb3fb87fab5
358 Chest infection Chest infection 1 777000101 \N \N \N 0 3 2015-08-26 13:21:57 \N \N 0 \N \N \N f983fe91-4971-461a-9882-08979c122ced
359 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-26 13:21:58 \N \N 0 \N \N \N ffa679d5-d52b-4930-aa72-2a528ee55829
360 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-26 13:21:58 \N \N 0 \N \N \N c7bd8b3c-0a04-4e5a-ae87-1a08604dac4c
361 Systolic BP (mmHg) Systolic BP (mmHg) 1 5085 \N \N \N 0 3 2015-08-26 13:21:58 \N \N 0 \N \N \N 798b67f1-2ebb-42cb-9dcb-e2f898421ee1
362 Diastolic BP (mmHg) Diastolic BP (mmHg) 1 5086 \N \N \N 0 3 2015-08-26 13:21:58 \N \N 0 \N \N \N c8b35b57-f41d-479f-b5ff-5eaee8a8217d
363 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 99b06528-525f-4ddc-9421-213553fe93d8
364 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 13d436db-4b09-405f-b40c-7fa2219e5ea0
365 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 1247a433-7416-4cd0-bf92-74af397213d7
366 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 11b1a5bd-a8ee-426c-8b67-c791dcf02313
367 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 33dad8d9-ca7b-4c59-949c-b5a03e58bd59
368 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N c962c129-91c0-45f4-b7f2-5a4379a87ae8
369 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N c1d680cd-bcbe-423c-b85f-61e1b1124d8a
370 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N b6d6ecbb-0140-493d-95ef-6a7073bc33cc
371 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 20dce8e5-6ae4-4313-8ed0-53b8cc510e36
372 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N c15ff698-851e-457b-8efe-5912b5a88816
373 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 7970189a-f627-4d31-9e61-efa07403939c
374 État État 1 777000010 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 6703f7c0-bc4e-420d-a598-d34e38c8f707
375 Mobilité Mobilité 1 777000000 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 075a4410-bf56-48f0-a651-21e10e675173
376 Nausée Nausée 1 5978 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N e5d7e324-9954-4df9-91b3-e29b036e488e
377 Diarrhée (comte de 24h) Diarrhée (comte de 24h) 1 777000015 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N e5585b27-e2ac-4357-a29f-09880abf6652
378 Difficulté à respirer Difficulté à respirer 1 122496 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 4558d74d-057f-4046-bbaf-c7a2242da7f1
379 Mal de tête Mal de tête 1 139084 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N dfacf39b-a99b-49d2-9aa1-1ce85322dc35
380 Brûlures d'estomac Brûlures d'estomac 1 139059 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N 5b3bebe8-6327-404e-be2f-a09b4aab98af
381 Douleur abdominale (supérieure) Douleur abdominale (supérieure) 1 159249 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N b0a485e2-15e1-44c5-9c66-b0ea58fd03ae
382 Douleur abdominale (inférieure) Douleur abdominale (inférieure) 1 157544 \N \N \N 0 3 2015-08-26 13:22:00 \N \N 0 \N \N \N f3564452-2d9b-4b4a-b116-7f30f9e5dfcf
383 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:22:26 \N \N 0 \N \N \N b0e760fb-2bdf-40d8-98ae-0d3aed4a5613
384 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-26 13:22:26 \N \N 0 \N \N \N 455e8242-7618-47b2-b59d-d9df8729be5f
385 Patient Condition Patient Condition 5 \N \N \N \N 0 3 2015-08-26 13:22:26 \N \N 0 \N \N \N b0330dd3-99d8-4c7a-89f2-e338b21a8f44
386 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-26 13:22:26 \N \N 0 \N \N \N 67fce49a-70b6-4db0-81b3-85d234945638
387 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-26 13:22:26 \N \N 0 \N \N \N ab06414b-b405-4ef8-9a49-8f76e745077f
388 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:22:26 \N \N 0 \N \N \N d3f4eee1-371c-4268-9d23-e1469952187c
389 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-26 13:22:26 \N \N 0 \N \N \N 1d8e03b1-b03d-4ebf-8464-112d6870cc65
390 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-26 13:22:26 \N \N 0 \N \N \N 8198e325-248f-45d9-813a-e87497e72331
391 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:23:31 \N \N 0 \N \N \N 029f6cb9-3282-459d-ac3d-89703e9aa012
392 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-26 13:23:31 \N \N 0 \N \N \N 47769cb0-a9a5-4f0c-8b6c-1d713ecc006a
393 Malaria test result Malaria test result 1 1643 \N \N \N 0 3 2015-08-26 13:23:31 \N \N 0 \N \N \N bf141cd2-4ff6-4d5e-b734-50f57b5e8d89
394 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:23:56 \N \N 0 \N \N \N bf92332e-4c5f-4e32-bec8-e46eb7d5743e
395 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-26 13:23:56 \N \N 0 \N \N \N 6bede774-f809-49a7-9525-b9b93486c4f9
396 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:27:39 \N \N 0 \N \N \N 158e614a-f99d-4a6c-a6ce-99e96132eb6d
397 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-26 13:27:39 \N \N 0 \N \N \N 10da8721-9c7d-476d-8579-8f9ba3823fe9
398 Patient Condition Patient Condition 5 \N \N \N \N 0 3 2015-08-26 13:27:39 \N \N 0 \N \N \N ad269514-39ae-4514-a191-37f4a7ddabf7
399 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-26 13:27:39 \N \N 0 \N \N \N f137523c-cdf4-472c-bd36-965a9353fe31
400 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-26 13:27:39 \N \N 0 \N \N \N 3e618b07-fce6-4206-a1d8-ffb2e2b0a470
401 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:27:39 \N \N 0 \N \N \N cec016cd-0a7b-4240-9847-17ed1a8ca026
402 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-26 13:27:39 \N \N 0 \N \N \N 77f5d70f-e9ce-411f-8569-280991517d5f
403 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-26 13:27:39 \N \N 0 \N \N \N 2819a34f-34ff-4c06-9bbd-b6120d05cc4e
404 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:29:41 \N \N 0 \N \N \N e87dff6f-b7c9-4954-8dbc-047af38e9c3f
405 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-26 13:29:41 \N \N 0 \N \N \N 557ade7d-7844-4959-998c-3c747ab1335e
406 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:29:54 \N \N 0 \N \N \N 4d38dfa4-b894-45f0-82f2-81228dc7ee65
407 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-26 13:29:54 \N \N 0 \N \N \N a21576e2-ef13-442f-a254-898009413e49
408 Patient Condition Patient Condition 5 \N \N \N \N 0 3 2015-08-26 13:29:54 \N \N 0 \N \N \N 7f740d04-f90e-4ba2-9f61-5460a56e3dfc
409 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-26 13:29:54 \N \N 0 \N \N \N 0975bad3-7236-4ae4-9139-48e395f7cda7
410 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-26 13:29:54 \N \N 0 \N \N \N b194db1b-ebce-40e1-9846-7e04b50863e3
411 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:29:54 \N \N 0 \N \N \N 56ed8d13-e75e-469c-93c1-0e9a305dc355
412 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-26 13:29:54 \N \N 0 \N \N \N a3667d1a-354b-40c0-9ed3-fef15a80e1af
413 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-26 13:29:54 \N \N 0 \N \N \N 571d8e06-7828-4f30-b7be-b9e11a7bc87e
414 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:30:54 \N \N 0 \N \N \N 189532e1-d264-4969-9053-de163a470259
415 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-26 13:30:54 \N \N 0 \N \N \N f57e5d65-6634-4309-b2e4-2c02da54a99a
416 MUAC (mm) MUAC (mm) 1 777000102 \N \N \N 0 3 2015-08-26 13:30:54 \N \N 0 \N \N \N 1ef22813-7b07-4176-9771-601971e38258
417 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N bb2fa7ff-2b8d-4bc0-80a7-30f84daf1768
418 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N ccc7daee-c317-4997-830e-7e1c25ff2f9c
419 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N 5c361166-c343-4e86-94ee-df91e6868063
420 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N cd00e4fa-e605-41b4-910a-ac540fd2e5f5
421 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N 6b67e17f-d145-47b1-aab1-3704988e89a6
422 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N 78787de7-9e2a-4e38-8b54-050643f15908
423 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N 5624180e-8165-4ec5-b1fe-5efeec3de18d
424 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N 06b16262-58df-42e5-8dd0-8998c355ee3d
425 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N c1818114-8c83-48c8-b122-824376f95fdc
426 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N 1c815b2a-86d4-49fb-8b5a-c313f6a70524
427 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 13:34:39 \N \N 0 \N \N \N 1e4163be-4bc4-42de-957b-88100f2875fc
428 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 16:56:16 \N \N 0 \N \N \N e8dae72d-38e2-4e83-8bd1-25155d02748b
429 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-26 16:56:16 \N \N 0 \N \N \N 2f8e2e0d-076a-47e8-a640-d6f5a872fd04
430 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 16:56:23 \N \N 0 \N \N \N a58ec449-7713-4f7f-8c28-35d54ca6a92c
431 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-26 16:56:23 \N \N 0 \N \N \N 6f047590-65fc-4dff-9b97-341cf7862c8a
432 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N f621e80a-3b43-42bd-a7f5-dfa20ddfc361
433 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N fd54feed-b07d-4907-8867-eda8310d3ad7
434 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N 40c59665-5669-48c9-b9ef-7736fe740896
435 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N 1d35f12a-0c57-494c-bbbb-7f88b7e5413b
436 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N a3575559-254a-477d-bd62-b0d33719ac2e
437 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N cdadfe76-4bd1-4405-a43b-f7e9aa8be087
438 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N 3e7f3323-fe7c-4c1f-b789-4810afd7fab3
439 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N 30b0fb16-a6ac-4153-93c2-c349cc015108
440 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N c8012058-022e-48c4-9fea-1e2b57969311
441 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N ca8542d6-7b31-47bb-91bd-b784f8c9d17a
442 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 17:06:55 \N \N 0 \N \N \N 993e6783-3a42-416b-9ebb-a10a6b93cec4
443 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 17:07:19 \N \N 0 \N \N \N f50e6c53-dd36-46bd-a2f6-7f371e5f5938
444 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-26 17:07:19 \N \N 0 \N \N \N 72ec4bff-4e39-4b31-9a5a-94e1951dc446
445 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 17:09:51 \N \N 0 \N \N \N a26ad7d0-d96c-46fd-8adb-fdb917576bfe
446 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-26 17:09:51 \N \N 0 \N \N \N 8a8690ba-806b-4275-8f04-a62792e3402a
447 Patient Condition Patient Condition 5 \N \N \N \N 0 3 2015-08-26 17:09:51 \N \N 0 \N \N \N c070a83b-f9e1-41ef-9a23-cccd0db7b77d
448 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-26 17:09:51 \N \N 0 \N \N \N b2a287cf-ea59-47d5-b77f-6b16ddb25876
449 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-26 17:09:51 \N \N 0 \N \N \N 84f1e457-1feb-494b-b157-9fdd940fec60
450 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 17:09:51 \N \N 0 \N \N \N c8dc6910-87a4-4c4e-936d-6e0bce37c02a
451 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-26 17:09:51 \N \N 0 \N \N \N 75263780-2c74-4794-a8b4-78ee33b56ad7
452 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-26 17:09:51 \N \N 0 \N \N \N 0dc30d47-e28c-4eae-ae34-a8decd926d69
453 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 17:46:38 \N \N 0 \N \N \N 1bfed416-9188-43e4-8a0f-9b24a3e053a9
454 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-26 17:46:38 \N \N 0 \N \N \N ebe36f02-75bf-40d6-a1ed-442f4e047ff0
455 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-26 17:46:38 \N \N 0 \N \N \N 65b59263-9064-4236-ada1-afb1a8f45788
456 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-26 17:46:38 \N \N 0 \N \N \N eff0c2d4-cb24-4b38-897f-1c975c06da8e
457 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 17:46:38 \N \N 0 \N \N \N ee9ca5d8-0bd1-4a65-92d2-0d22191c0894
458 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-26 17:46:38 \N \N 0 \N \N \N eb81af8b-7d6f-4f7c-87a9-d6db6e7ad685
459 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 17:46:38 \N \N 0 \N \N \N 8001559f-e94d-4bbc-b742-323727b7702c
460 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-26 17:46:38 \N \N 0 \N \N \N fec60ad7-0f0f-4b60-ae4a-9cb16a965ae8
461 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-26 17:46:39 \N \N 0 \N \N \N b5a4c151-7289-45ce-817c-36493686765c
462 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-26 17:46:39 \N \N 0 \N \N \N dbaa9b6b-441c-4538-bbd0-4934d161bdc7
463 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 17:46:39 \N \N 0 \N \N \N 321cbba5-0e50-432d-9a5c-7854fee2412e
464 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 17:57:38 \N \N 0 \N \N \N fc44150b-c87f-41cd-bd14-e471c9d6eff8
465 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-26 17:57:38 \N \N 0 \N \N \N bc0cd3e4-2700-43fa-a246-c7cbbab8cf5f
466 Patient Condition Patient Condition 5 \N \N \N \N 0 3 2015-08-26 17:57:38 \N \N 0 \N \N \N 1b0b1eb9-c999-4dbe-adcb-1530a2d0c8ee
467 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-26 17:57:38 \N \N 0 \N \N \N 1ecf08a5-6a69-4360-9a15-53423292e29f
468 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-26 17:57:38 \N \N 0 \N \N \N 91d9c5d2-4d7b-41a4-b895-2b6d44f7e3c7
469 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-26 17:57:38 \N \N 0 \N \N \N b2a2991f-46b4-4885-8d03-643a80e1e83d
470 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-26 17:57:38 \N \N 0 \N \N \N 01001d4e-aeca-416e-9a54-43d3487522d7
471 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-26 17:57:38 \N \N 0 \N \N \N ae1cba34-6f76-4b54-ba62-6fc3f9d26bb1
472 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-26 17:59:12 \N \N 0 \N \N \N 57181c3e-d0ea-4e5c-b8e8-9e1193b65806
473 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-26 17:59:12 \N \N 0 \N \N \N f8efc02a-063d-4b11-a969-6d326e6e0ba9
474 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-27 10:00:09 \N \N 0 \N \N \N 8ce94718-b4fd-49bd-91e4-e627afcf44db
475 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-27 10:00:09 \N \N 0 \N \N \N fa8090b7-5a76-44ed-9406-c9668c2c6bc7
476 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N 898b4298-48e7-4572-8199-9712686ef54b
477 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N fa3b31f8-2bf9-4cca-92fe-6c4e9485a194
478 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N 53e3950b-f984-4974-96e3-333c86cd66fb
479 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N d134726f-84ea-4876-8580-c09f08306784
480 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N 8df64ceb-0829-447b-b45c-22e62f1e61e7
481 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N 8b84872e-926e-4f09-825c-a40d2ac2ea7f
482 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N 5e18c675-95fb-457a-a897-2ebaacf90913
483 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N d1d20fa7-41e5-4a85-8118-f10a2b1ac444
484 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:10 \N \N 0 \N \N \N f5db33a1-2f80-417f-8064-82a262c65ca3
485 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N c007bc77-127b-486a-bed3-da39bcfdf80c
486 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N ce0a9da4-cbf2-40a9-a3b8-ee5df107ecf3
487 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N 8afd7702-bd4f-4915-9817-64b91060a61b
488 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N 78c6fc0e-cde2-4794-acac-e774b25a426b
489 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N 6b62afc6-6717-491b-bd60-355eedeb70bd
490 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N 221ff5af-15f0-4fce-bd67-841b59dec635
491 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N e89c74ea-b3e5-4fee-a715-ce0e5fee68c7
492 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N 3075fff8-446f-44e9-813a-c112531f1d3c
493 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N de177eb3-d862-4bf2-ade6-0c520bdc7cf4
494 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N 56f5c967-f549-444e-8c9e-e5313ac6d6da
495 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:17 \N \N 0 \N \N \N 6627d648-ad66-4494-9570-c77a08803ef7
496 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N 72a6e3cb-6979-44f6-85a0-e232550193dc
497 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N ca869d50-df24-4b68-a430-bdd39dbdfc6c
498 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N c8450b8f-5e44-4d6d-8533-6a4b1d885ef7
499 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N f6736851-3dbb-41fa-8b23-921c8d5f31cd
500 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N 2a8f2b0e-6dcd-4944-80bf-526be57daca4
501 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N 71ef9d5a-bd6b-4150-8cf7-cafed22811e3
502 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N a694d02d-b529-45e3-aa12-0d4cb2a81eab
503 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N c7d3184f-c3dc-4ad8-9984-aa4e95df9e0e
504 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N e27f28b7-e725-4b67-bf13-af620986f523
505 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N 46819fe8-e338-4554-b130-e7cbbd7867f5
506 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:24 \N \N 0 \N \N \N 7ad3590c-3599-4d7f-8580-8c363850e4c6
507 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-27 10:00:30 \N \N 0 \N \N \N 80ee5023-d6df-4b0d-8e68-2590ce48981c
508 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-27 10:00:30 \N \N 0 \N \N \N 87ff2c47-b7bc-4c80-8ce6-7fbe4f59c55c
509 Patient Condition Patient Condition 5 \N \N \N \N 0 3 2015-08-27 10:00:30 \N \N 0 \N \N \N 7b8b98ea-0a1a-4de8-9b91-5bc8d15ccd39
510 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:30 \N \N 0 \N \N \N 8d0e328f-825b-45eb-9dbd-fc298aacbfad
511 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-27 10:00:30 \N \N 0 \N \N \N fd95f5d9-04b0-4215-8da9-60addffbe815
512 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:30 \N \N 0 \N \N \N e0d5710e-8177-436c-b1a2-49dfba8db0b9
513 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-27 10:00:30 \N \N 0 \N \N \N a47e47c5-a703-4b1c-8165-3026ff5fe38b
514 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-27 10:00:30 \N \N 0 \N \N \N dd774e7e-7867-404a-a7d5-dba920431585
515 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 4d9b968e-e0dc-4cb2-9be8-d05861986b01
516 Vital signs Vital signs 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N c8769bf4-dc49-4f1d-968d-3357f81338b6
517 Signs and Symptoms Signs and Symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 7c6e6637-3f19-4a9c-8f22-008e2aa58a6f
518 Pain (detail)[binary] Pain (detail) 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N ef3dc729-c4c5-4b05-b3d6-b424d5459596
519 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 43abc0f6-1ba4-47b4-9604-c9a7f345e468
520 Bleeding (detail)[binary] Bleeding (detail) 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 6413bc87-a207-4dd3-9e98-69793fa87dd8
521 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 1818075e-eb06-4367-94c0-610570b221e6
522 Other symptoms[binary] Other symptoms 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 0915ef71-c69f-4087-b8e6-925fa8286f15
523 Overall Assessment Overall Assessment 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 34cc188f-049f-4beb-9dbd-86887bc03ebc
524 Additional details[binary] Additional details 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 54a29df7-1464-4a8e-a530-a9592ee2c83c
525 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-27 10:00:37 \N \N 0 \N \N \N 05fd905a-bef3-4a42-b1e2-cd8723b2fcf3
526 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N fec76243-ab21-4e43-8f14-1e9125c8ec90
527 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N a52bcb7a-b96a-4557-b2c2-72057d4c1f1a
528 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N fa00485a-9001-429b-b4ef-69c44780a594
529 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N 7ae71ad1-7dca-4027-9188-d940c5453064
530 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N ef3fdb78-1eba-4d74-b447-fecc194fb2ab
531 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N 654aaa46-a27a-4cb0-b984-a011c16c271e
532 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N ce37497a-e607-46e7-95c1-21363f0f5b0e
533 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N b90342a6-ed74-4bf8-984a-ecc089eeeb02
534 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N 01e5e69d-c77f-49ed-abe2-49c64e074340
535 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N d3b917e9-86e8-4fdd-920f-5deccdd16700
536 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N 658de044-ddf1-48e9-8fdd-3d8adf43b2ad
537 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 11:53:28 \N \N 0 \N \N \N a2c1182f-1d21-4f30-88c9-fcc62e71ea04
538 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:36:06 \N \N 0 \N \N \N 7e059e57-87b9-44e7-a73a-13d8acafb48e
539 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 14:36:06 \N \N 0 \N \N \N af60a3e8-5eab-489a-bb6f-51fe5795c952
540 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 1b8dde03-ea95-4cbd-9127-39b32100addb
541 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 8687efe1-a9d8-40e9-b87e-76cd90f4c4ba
542 Temperature ( Temperature ( 1 5088 \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 5f72e954-a7ed-42ca-8ffc-37b3eec1844b
543 SpO SpO 1 5092 \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N dae8b953-e121-4311-a7e2-bfc13eaaf559
544 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 6a970aea-7845-42cf-83d5-3084fe6892cd
545 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 540a0728-a47c-45e6-8755-b1b6aed0fa4b
546 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N b1c54680-9021-4d18-ab35-352f730103b4
547 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 32728b6c-1828-42a7-b1e6-c1a7caa5cb64
548 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N a079755f-4375-485b-b1ea-df2212a3a973
549 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N c15586e3-7d40-4ca2-b28b-2f086b4c9291
550 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 1ce557fe-495c-4ff6-add9-ede91fe6309c
551 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 188d8dd4-029e-4262-83c1-72bda217f2dc
552 Temperature ( Temperature ( 1 5088 \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 5c8cc6e3-a95a-4cc7-9158-a8c0ce320067
553 Systolic BP (mm Hg) Systolic BP (mm Hg) 1 5085 \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N 5192d109-4c91-474c-9307-28dc19e729b7
554 Diastolic BP (mm Hg) Diastolic BP (mm Hg) 1 5086 \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N da7ad719-9fde-4e22-b14b-d373953f5c54
555 SpO SpO 1 5092 \N \N \N 0 3 2015-08-31 14:36:07 \N \N 0 \N \N \N cae8cae8-b26f-4871-857d-6afe2dbcd8cd
556 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:37:28 \N \N 0 \N \N \N 10ee5c03-34f2-4f58-874c-365e2aee551f
557 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 14:37:28 \N \N 0 \N \N \N 624ba27d-6556-4068-910e-e76b025b32ff
558 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:37:28 \N \N 0 \N \N \N 34cf8f4e-0287-4a1f-95de-69276b588b9a
559 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 14:37:28 \N \N 0 \N \N \N 0bb16863-5abe-416f-96fb-6cb0e68a9543
560 Temperature (å¡C) Temperature (å¡C) 1 5088 \N \N \N 0 3 2015-08-31 14:37:28 \N \N 0 \N \N \N 259fe243-8008-4c51-9be0-35fc387e4605
561 SpO䉉 Oxygen Sat (%) SpO䉉 Oxygen Sat (%) 1 5092 \N \N \N 0 3 2015-08-31 14:37:28 \N \N 0 \N \N \N 342d76c6-6d0c-46d6-85e0-dbfc61af6cee
562 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 14:37:28 \N \N 0 \N \N \N 28fb16c5-e4b8-47e1-a94e-9c269579e884
563 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 14:37:28 \N \N 0 \N \N \N 4db42fc5-ef93-4a1d-ab04-7bb8f5297f9b
564 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 14:37:29 \N \N 0 \N \N \N 2f8dae74-fd5a-4cbe-8d36-8422c87e5505
565 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 14:37:29 \N \N 0 \N \N \N 341f6a1e-6ebb-4c63-bbcf-bfe9e6466499
566 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 14:37:29 \N \N 0 \N \N \N 722fd171-8a14-4d16-9481-2a1016109061
567 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 14:37:29 \N \N 0 \N \N \N 7c77754d-790f-404a-a117-d363b141b55f
568 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:37:29 \N \N 0 \N \N \N f7e5d98a-b294-4cbd-aa02-3a770f001938
569 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 14:37:29 \N \N 0 \N \N \N 59526800-1d89-43dd-a598-936bb6fdd646
570 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N ab5fd304-7d59-4568-9e2f-b616b2bc97db
571 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N b3fa9775-c21d-4ce6-8f8e-7c95ab1095bf
572 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N 7ecfa604-63e7-4788-8321-0185c3f65c45
573 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N 2e17be3f-1104-46f5-bce4-38bad98ef324
574 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N 5afc6f60-0113-492c-9267-46337717ac52
575 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N 185a64a4-331b-4f47-a2b7-84da4b380e2d
576 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N a1884230-788d-432a-b61d-0c51baf2f191
577 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N a1533a67-8c8b-4510-abcc-76f4a79f1647
578 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N 284efc6a-b939-4c0f-87ce-7c0f3eb48fd6
579 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N b019335d-1a17-46dd-8505-d5f532e1c944
580 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N 8e17eadc-94b4-4ea6-bf09-7903eae7b691
581 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 14:39:31 \N \N 0 \N \N \N 6c742f2a-41be-41fa-b0e5-9dddd06422b7
582 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 2d099e41-c7f8-4eac-a2da-0a9f70e88fbd
583 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 97538788-0f10-49ce-81cd-f40d8f9232c2
584 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 3b0896c2-ad16-4ec5-9d57-6008472953f1
585 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 635b3bf4-cf76-42b2-a35e-d6e4a76c593b
586 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 6b67cec8-3f0c-4c6b-86b2-f988692f9aba
587 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N e9af3615-997b-466d-8236-269373e4f8f4
588 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 3e643b35-2031-47b4-b99d-36fb9f3d9371
589 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 12c75980-99db-4f9c-aff1-2b46d86e3c0e
590 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N f244411f-74b8-459a-b56e-8d9de3cdb609
591 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 28bfce59-f7df-45c1-8b03-37b896edd8e1
592 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N 69efe39d-2186-428c-9617-35b7cea79bf4
593 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 14:54:40 \N \N 0 \N \N \N c3b287a7-3f97-4da3-a603-0b96a8d07520
594 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 8d4102c8-e2b2-4dbd-a124-7a28c5ef5e25
595 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 4bbedbdb-dad8-466f-9bc9-94c618ec6b02
596 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N a4359e59-1ba3-4674-9805-238b8d344659
597 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N c32647cb-0155-467a-9d46-f968840baa6f
598 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N e6162a07-4474-4708-886a-ce683d0b51e5
599 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 3a722388-be90-457b-817b-685b5d664402
600 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 5bc5a704-d79b-47b8-ad59-8c77cade5f01
601 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 0da02168-c585-437c-b863-5a3b0ecba9d7
602 Chest infection[binary] Chest infection 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 19e5bb0c-5bb7-4b75-96b8-1ad488569049
603 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N f1c120e7-ddfa-4147-ac77-40588442c66a
604 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 40bcf33c-a621-4ca8-8435-f41b73bdefec
605 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 64fe6250-5005-46cb-8a2b-750703b5689a
606 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 14:54:42 \N \N 0 \N \N \N 13969253-9065-4c7a-bc93-d4699e633394
607 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N 55f75b22-355f-4878-bee4-14415aa235b4
608 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N 5c3ac1c7-5871-4dd5-b684-506c91d9b657
609 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N 083f988d-77ab-4860-a807-ae51e766e5ad
610 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N ceac0389-6156-4c70-b339-5d21e3e1c176
611 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N 03b5ca2c-5d57-40f7-b2d2-0a42374058f8
612 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N bf8ea87c-b49b-48a6-ae9e-60a5bed56a64
613 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N f9d8d3c9-6c54-4b62-9af6-9535a3ab66e6
614 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N bccfc47c-422a-420b-a8ef-ab610f161de1
615 Chest infection[binary] Chest infection 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N 866d405f-4d37-44be-969c-1654db5c3076
616 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N fe2ca085-f8fe-421e-b5b4-2910b903963b
617 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N c5209ef6-8235-4319-80c3-533ccb253239
618 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N a1943e18-8825-45c6-8d59-41b3dc425fd8
619 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 14:57:08 \N \N 0 \N \N \N a2a9270e-4bfc-41a3-87bf-facb826815cc
620 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N 0650a488-eb25-41da-aeb6-c70eafb989a5
621 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N e00e6cb7-72ac-4c55-84ef-106476f9cdc7
622 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N ad6490b3-46b4-4fc4-ab13-7cb59dd56117
623 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N d5c794be-3ce4-49d8-9dc8-dd409b427ea6
624 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N 1598cb46-19b7-4a8c-b020-0c8c5f9dac91
625 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N 1aba772d-e47a-4d3a-b190-d6876d42abb9
626 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N e7d3704b-87e1-47a0-bdcd-b9c1b7502753
627 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N 871d9bb9-9c7c-4de8-b587-f1b473805ae1
628 Chest infection[binary] Chest infection 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N bfd4eb8e-ebd6-47b9-8ebb-5ee91f8a092d
629 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N 9748478f-4791-47e9-b31c-c4052142dcd3
630 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N 9f83d12f-c153-41c4-bf72-5c5ea92d92d1
631 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N 8dcd5c8a-c157-46f3-bd60-d57362150167
632 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 15:01:05 \N \N 0 \N \N \N 159faa71-8699-4b6e-b30c-39707bf2b69a
633 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 6e28d9e9-4630-4858-8157-66347d20eae9
634 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N cc5cc30a-a740-4a8a-af06-fa5d3b1e5e08
635 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 0c3ea2d2-f88b-47fb-81dd-56c91af9b483
636 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 3dbb8d4b-d956-4635-b036-379a7e490b93
637 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N dffbc4df-3fd8-42ec-8a2d-8718714ce569
638 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 593982ac-5128-4254-a938-74712be2cc64
639 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 86120d2b-7273-4f5e-969d-00d5c36687e2
640 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 2deb2717-5331-4b73-8e23-0cb2d4649b22
641 Chest infection[binary] Chest infection 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 08ac0a3e-8628-4cdc-a40c-c71c4a0320b0
642 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 56880d61-891c-4b12-8d7b-30488747a31a
643 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 5d5eacae-80a5-46a0-a8d2-e68d61d77d66
644 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N f35fa53c-10a5-4a75-8616-fbcae14a66f4
645 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 15:01:37 \N \N 0 \N \N \N 457dd672-160a-4e2e-a419-4ffe142f44ec
646 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N cf9be7ad-3f2b-4979-b240-c85b1570fd9d
647 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 0908934e-8e9a-4289-bef9-2a21eca44845
648 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 0e58dcca-4ed9-43c3-811f-3c5052444415
649 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N c1ea0f51-fce7-4e66-83c6-75fb5a999821
650 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N c21dacb1-c4a5-492e-887a-20e0c678c455
651 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N af98dd41-9a7b-4af8-ac1a-df3d6c389d76
652 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 8c918249-8bf8-4e6c-9836-13334e49af66
653 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 6047d949-f638-45b3-b924-a977972b78ac
654 Chest infection[binary] Chest infection 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 6b0e3a79-b899-437f-8f09-343b8b4d53f5
655 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 795fd646-6036-4647-8c10-6c086e1b56c9
656 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 57392268-4be8-4342-a7b9-f7ed52120ea5
657 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 934cbf13-7978-4515-b4fa-645be11f63cd
658 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 15:01:38 \N \N 0 \N \N \N 570c9065-af4d-4a6f-902e-8e78a1f4ff22
659 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N 5e1e03c1-3794-4834-933b-b39c82c9e4c8
660 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N e1964512-f4ab-4835-8168-02bb5c7a828a
661 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N 30b40a94-2381-4830-bac6-d733b021a0a5
662 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N 1432988f-5008-4502-bbc3-a52f2970172d
663 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N fae0c423-d993-4096-a688-d7eb24ffc508
664 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N 13b88ead-dd07-42d0-a81c-1d7dc4816f18
665 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N b17799f1-1855-4f75-a8ec-5a6fa2b4be39
666 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N 8cf3e2d1-c29d-4be4-a6ca-628a1ca4afc6
667 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N cfe5d104-3150-4d76-ab27-3df7a60eafd3
668 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N c03bc69c-ad1a-4d17-b4c7-596ea5a10069
669 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N fa68eae1-4e45-442c-85a1-53f2de264e1a
670 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 15:02:10 \N \N 0 \N \N \N 2cb3594d-8a69-467d-915b-87aabe40ff73
671 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N 08566d04-b5b8-49ec-9112-4cc1ab53ba15
672 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N f76c7651-5ebd-4cd2-a1fb-ac8815486283
673 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N fbcb216e-bae1-476f-aa0d-8246210533f5
674 Vitals Vitals 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N a5e65b1c-3a12-41b3-8378-c3a341e20e10
675 Haemoglobin (g/dL) Haemoglobin (g/dL) 1 21 \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N 833f7a2f-233f-4bcf-bb7c-3f8880ca1845
676 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N b14db454-bef8-49ab-98f3-bfbd9a26b9b4
677 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N 87ef3580-6ee4-4fc7-bf7d-e97abacfa70d
678 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N f3501706-4089-4570-ad5d-1059c04e10cc
679 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N 245e38e8-b7f7-4067-b7e8-867174412ca2
680 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N 40563a2a-7518-4024-96bc-b7d76f16c9c3
681 Pallor Pallor 1 5245 \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N 0407b661-0de3-43f7-86ab-9d9cf1da61c3
682 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N ae5f230f-3294-4dde-9a18-6583d96f407b
683 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N d01e0c52-47ef-4e02-a00e-28be78c94ba8
684 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-08-31 15:39:53 \N \N 0 \N \N \N 8520a6f1-89c2-4b5a-93e0-ba29d871cadf
685 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 14:58:30 \N \N 0 \N \N \N ecdb1ad9-d73d-40e4-8bed-0df3753f2706
686 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-02 14:58:30 \N \N 0 \N \N \N de46dedf-786d-4c6b-851d-649195cc1079
687 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 14:58:30 \N \N 0 \N \N \N 971679e7-5323-495d-866e-476a6e397c3f
688 Vitals Vitals 5 \N \N \N \N 0 3 2015-09-02 14:58:30 \N \N 0 \N \N \N 86c5373a-8a2d-4f3e-8c98-98367e1a954c
689 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-09-02 14:58:30 \N \N 0 \N \N \N bf1b1567-686b-4629-9850-02b8ad7ab298
690 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-09-02 14:58:30 \N \N 0 \N \N \N fc81d844-1a2b-4e86-9598-f8cdd3464183
691 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-02 14:58:30 \N \N 0 \N \N \N 70741bb6-1dee-4670-a66e-6a27d665c41d
692 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-02 14:58:31 \N \N 0 \N \N \N 9d4180b3-4152-4d53-9243-9d0c1d6408df
693 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-02 14:58:31 \N \N 0 \N \N \N d10cea61-ff2f-44da-9ef8-181b480033ae
694 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-02 14:58:31 \N \N 0 \N \N \N 09b8e635-f6f4-4589-9f66-b5e318309c03
695 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 14:58:31 \N \N 0 \N \N \N 98d4af18-e16d-45b5-9bf9-298eafe7a67a
696 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-02 14:58:31 \N \N 0 \N \N \N 996fcbba-9d1a-4dcc-ace8-cf8168fe5ede
697 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N d208a8af-1bb0-49e3-98b7-cf297b629b89
698 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 44ed8ba5-b105-4dc5-acb9-37ca8767180d
699 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 405378af-2c29-4129-9855-9cd6b7b790af
700 Vitals Vitals 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 94403a07-f079-4863-ba70-e69ce016e32d
701 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 3077ad04-2759-4d42-b34e-fce066a1dfa3
702 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 45343a23-4f9a-4ef4-9c43-d0e78bae722c
703 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 246f484a-a269-4316-9347-c706af37bd48
704 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N feb3cb29-8af2-4658-91de-956c08cad97a
705 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 1bf1091d-2ea2-422c-a4d1-5483fb73b776
706 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 19f5b351-d92d-4de2-9c08-81f60d81746c
707 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N a85e2f27-c27e-42ae-9a89-46c0e198c3b8
708 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-02 17:31:42 \N \N 0 \N \N \N 048d962d-deaa-4ba1-9d3d-c416d3a43aea
718 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N 4972c538-7c7d-4c99-b1d0-243bd12b9915
719 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N bddec83e-a43f-4e7e-b54e-fec2ab0131c5
720 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N 68675ac5-05da-48ac-bbfc-5485eeed259d
721 Vitals Vitals 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N 9a2f5e0c-f2e4-4dca-9162-e2f595fbbbd7
722 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N 9dbe1011-fdeb-4cf3-92f6-ab32a77d6ba1
723 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N 53c55f9d-0faa-45f9-bea2-209852b609b0
724 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N 4fa801ca-bf0f-41aa-928a-f6ad5262bc1b
725 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N beb67378-9487-481a-a2ce-7b5d0428e010
726 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N ed1217de-8547-48a6-b7e7-2d8b3f77d0e4
727 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N a9009b28-1156-4dc5-8129-00adf4ae6707
728 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N ccb5a1ae-9fa0-40b3-b617-e28d442aa8e3
729 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-02 17:39:45 \N \N 0 \N \N \N 7f5fa326-5f3b-4257-a407-5ae62572d2a1
766 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N 4cd485d5-71ae-4307-8e28-5179c9b0914a
767 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N a386e2e8-51ce-4bb6-b72e-3c1bac85ca8b
768 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N 35c6ce9b-1351-4d92-a99e-b69f7778de90
769 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N caed5181-4407-4f64-9315-35e371e9c378
770 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N b40c35c2-9d38-4306-836f-d9e6e932136f
771 Standard Observations Standard Observations 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N db2ed51e-4314-42a0-ab08-5dc5ebea04dd
772 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N aaa4a8e2-bdae-4d47-9e55-bc6365da0a3c
773 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N 8267b2eb-05f0-4c0f-b22f-8cf3ad16508f
774 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N 7b46d8c0-39ea-44d7-9256-40e9ee93ed79
775 Urinary tract infection (UTI) Urinary tract infection (UTI) 1 111633 \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N 574bcd8c-061f-49fb-8a6b-70f37ee5032b
776 Otitis media Otitis media 1 131113 \N \N \N 0 3 2015-09-04 09:35:59 \N \N 0 \N \N \N 5e328ecf-0b22-45bc-a59f-3c359e57b76c
777 Scabies Scabies 1 140 \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N 7b1a960d-b560-4742-a2ec-059b3f3f7e64
778 Angular stomatitis Angular stomatitis 1 125860 \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N fad9bb70-eeb3-4c65-a375-6da18d7242c4
779 Oral candidiasis Oral candidiasis 1 5334 \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N e5d1e35c-08ba-4959-bf90-91c8e0f4c9a5
780 Gingivitis Gingivitis 1 139438 \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N a06d50a1-7f3e-4ca2-b7a7-7ad241b56596
781 Intensive Observations Intensive Observations 5 \N \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N 532238e0-6324-412c-8a51-3096a514ac80
782 Shock Shock 1 112989 \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N 4bec700a-6c4d-4b8c-953b-e245fd2955ba
783 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N efa62e7b-0051-4428-a88a-ea5cce1213f1
784 Cyanosis Cyanosis 1 143050 \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N 343c3b44-cc9d-4964-a418-89b6397423ef
785 Amoebiasis Amoebiasis 1 124 \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N 87659a3c-4842-454c-9e51-6d4aa76bf783
786 Jaundice Jaundice 1 136443 \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N f68883b5-6fc2-4825-a51c-375ceb484317
787 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N ac4c7b19-810e-43b0-975c-e9ed1cbbc0ee
788 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N b2e679c3-588c-4595-8d90-2f541904620c
789 Notes Notes 5 \N \N \N \N 0 3 2015-09-04 09:36:00 \N \N 0 \N \N \N 63066596-4bbb-4ba7-a43f-0815fc30bed9
790 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N cc202531-cf01-442a-b757-eef68d05e723
791 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 6744d439-32cb-4e93-9850-37f1696c0424
792 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 12ee9df9-2dc1-4566-b23d-83329ddb20d8
793 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 777b0128-f640-44b7-8d3b-c3fd2000a9f8
794 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 1e007ae4-94e5-4d3c-a15b-4c7433daba0b
795 Standard Observations Standard Observations 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 93e8cbf2-189b-4ab7-9779-fd58d7a14d03
796 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 6ffc73a8-c838-4d61-9588-466df280d37f
797 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 2ec796fb-b46d-41a9-ac59-00c0fcb8c350
798 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 2b978fd2-cdb8-477d-8c57-23aeeffee630
799 Intensive Observations Intensive Observations 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 6444531e-5c51-4f94-8881-573b875e3066
800 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N b953f3a1-23ef-4fc2-980c-f2815886a9ce
801 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N 0623368a-d872-4136-a1e7-c28d66721d69
802 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N f0a71746-d1b9-4e09-b57c-745238d090d2
803 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-04 09:48:27 \N \N 0 \N \N \N ed43b725-116e-4045-a53f-ba8b1d2223ae
804 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 2bdcb87b-0f4f-44ba-8d6d-ca56ccee5741
805 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N d59e1b5f-df29-4b6c-a0c3-92a4a611495e
806 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 76ccdd17-2ca6-4aed-84d8-ea7a893ad8dd
807 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N a86262ef-3ec0-4e58-bedf-5f34c4b9916d
808 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 21a1d732-11ee-4316-a0fb-67713c2d20ec
809 Standard Observations Standard Observations 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N d950b1b7-c690-48f0-9642-e08c5651dec2
810 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 5550994f-c814-4617-a695-46c3a2d6de92
811 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 06d70817-057c-495d-8ae5-d0072b981675
812 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N e51391fa-2dc1-4c6d-a9e7-15fdfc4ed9f2
813 Intensive Observations Intensive Observations 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 93fdf52e-f4da-465f-8800-084cc852164c
814 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 48c5a78e-980b-4bdb-b249-94c1ec25bef3
815 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 28ba8873-d3e4-488e-96e4-d1b4a8033859
816 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 7fdf2ef8-1059-4d7f-996e-5f5d38d432fb
817 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-04 09:56:53 \N \N 0 \N \N \N 71a34b0b-a95d-4e77-9a08-5f0dc1b919be
827 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 63f7db2d-48fb-4eee-ab37-20a38bb80719
828 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 8cb02c37-5cb0-4cfa-a6c7-4e80be0dd8ea
829 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N cc24c0b4-8f9f-4128-a9df-aac8165a6d07
830 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N b7282f01-3ec7-4dcc-9397-989456f61c23
831 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N ad1b020b-df0d-4d8f-b138-16e70b3c4667
832 Standard Observations Standard Observations 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 29949a1e-48a9-455e-8a4c-f45574adb197
833 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N c1a71082-bde0-4aad-84dd-b4cc96d2e0d6
834 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 2dd5d1ad-51a0-4519-a71c-fc5b5a5d9431
835 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 01b053e9-4bde-45a0-9ffa-bb8faf88ea10
836 Intensive Observations Intensive Observations 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 9d1b6fd1-3a0d-46b1-a86a-4a04de11a591
837 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 91ab5244-52e4-483e-a130-88f4ae709fc4
838 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 2a99ad62-cc15-40d8-977d-46298ed78be8
839 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N a1da87cf-c56a-4cee-9de4-d9d2e93060f1
840 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-04 10:00:37 \N \N 0 \N \N \N 80030868-9a7a-4feb-b573-4ead3dbfa039
841 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-06 22:39:56 \N \N 0 \N \N \N 26c29df5-e2cd-4348-ab20-2b504ca0a36f
842 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-06 22:39:56 \N \N 0 \N \N \N e733212a-539b-4fbd-b044-951ebd83c210
843 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N e1c5be98-b367-4a77-a79f-023cc8a39c5a
844 Vitals Vitals 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N 3002b3b9-6a50-449f-a75d-3c5e721b48a8
845 Patient condition Patient condition 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N 5e5dc2c7-2a04-4ed6-9111-6479b2cfe4ad
846 Symptoms Symptoms 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N 390e79e2-0b83-44e8-9a01-36685664febc
847 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N 48ae7613-fa11-4009-9702-cd02137a2e81
848 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N ea41e7d4-bc51-4b2e-914a-c169e64c2338
849 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N eab46880-bff7-4558-a8da-7aa3d057bd19
850 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N 0ac528bc-d761-4494-aec5-0daa236fa46d
851 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N b4fda4c7-2b48-4eff-9d64-4ebfc5c311c3
852 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-06 22:39:57 \N \N 0 \N \N \N a3caf066-8a79-4680-9f97-a3cf87746c9b
853 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N a50fb927-e23a-4717-bcc8-06337319e317
854 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N 721dddeb-df3f-4ac2-b982-b30e3c018a5c
855 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N 771b8383-07af-4bff-a76a-3f5637b4880e
856 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N b6669d7f-fe9a-4843-9b78-60da4dbd080c
857 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N 64ad9ceb-deb4-45fc-b3ac-08ca8fbe97d2
858 Standard Observations Standard Observations 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N 4fc2a3ef-1a68-4613-a064-15b23d7bc0ca
859 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N ee8df1f3-99a8-4469-bc3d-81e953d4a1cf
860 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N fa7327d2-3131-46ad-8e37-c9fab1f4f3ba
861 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N ea55be59-d9f2-4bf2-9ed1-0db19f8bb069
862 Intensive Observations Intensive Observations 5 \N \N \N \N 0 3 2015-09-06 22:46:15 \N \N 0 \N \N \N c458ad0e-3643-4a0e-ab01-617388904955
863 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-06 22:46:16 \N \N 0 \N \N \N c0ee9d5c-96b0-4e0e-80e4-cf07fc7e0821
864 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-06 22:46:16 \N \N 0 \N \N \N 75796618-74e2-4f36-98af-c235de02fb72
865 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-06 22:46:16 \N \N 0 \N \N \N 951000c8-eff3-45dd-bc39-3566f9ce6462
866 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-06 22:46:16 \N \N 0 \N \N \N 6f958c94-70f0-4b04-8bcd-9a42900916bd
876 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N 7b16233d-7b37-49c9-82eb-b2038060f74d
877 Anthropometrics Anthropometrics 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N d95eb2c6-bcec-4e65-ae0d-20d95f08a533
878 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N a32a3807-c217-4d64-b189-dbe83edd7dbf
879 Paracheck Paracheck 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N 3751ba42-e5dc-4a7e-af0e-582ed71c7f39
880 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N 54e46ab4-0740-4866-9f10-625edeb742ca
881 Standard Observations Standard Observations 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N 2c3f7130-d82f-4e9a-b0fc-a3cde266afd2
882 Any specific type of diarrhoea?[binary] Any specific type of diarrhoea? 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N 8d6af3ad-4950-4d65-8087-1840dfd89373
883 [invisible] [invisible] 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N 76f72632-86f9-46d0-b4d6-c27dab40de8a
884 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-07 16:10:06 \N \N 0 \N \N \N 6a5df0d4-4caa-4030-9936-745ec3881ad1
885 Urinary tract infection (UTI) Urinary tract infection (UTI) 1 777111633 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 79ffbfb8-0fd1-49fa-8152-bead71e29d24
886 Otitis media Otitis media 1 777131113 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 693ba819-975b-4841-a948-e4d64851c769
887 Scabies Scabies 1 777000140 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 0f497aa7-85aa-4846-980a-92e04691bfa7
888 Angular stomatitis Angular stomatitis 1 777125860 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 11bac5c9-d2d5-4d53-ae07-9f4b7b054c20
889 Oral candidiasis Oral candidiasis 1 777005334 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N f6c1659c-102b-42b6-b3c9-47f2b0c195e9
890 Gingivitis Gingivitis 1 777139438 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 03d18a76-c8d1-4b5f-95b9-675f4cad00e1
891 Intensive Observations Intensive Observations 5 \N \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 604876ab-fc1a-4dbe-8f7b-4c7324b0868a
892 Shock Shock 1 777112989 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 0e3f2dcf-c28f-47f9-a7b2-15aaa28d0b12
893 Any other symptoms?[binary] Any other symptoms? 5 \N \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 12ac1236-8a2a-4890-8d90-2f17f7f5c861
894 Cyanosis Cyanosis 1 777143050 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 9361c7a3-167d-492d-8733-a088d22ae8a9
895 Amoebiasis Amoebiasis 1 777000124 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 6ae0603e-ea7d-404a-958b-21a05b3d473f
896 Jaundice Jaundice 1 777136443 \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 7e4f6656-db17-41ab-9e92-aec7eecb0719
897 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 32841bf3-4049-4686-aada-b16f588926f7
898 ENCOUNTER Encounter 5 \N \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 9c36df01-e0e9-4303-8046-e980ee446b21
899 Additional notes Additional notes 5 \N \N \N \N 0 3 2015-09-07 16:10:07 \N \N 0 \N \N \N 6f734496-890a-4ce1-aa2c-3068c54b5f6a
900 Cough Cough 1 888143264 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N 4b4c5fbe-416f-4eda-9de7-d7cfeb3068b6
901 Upper Respiratory Infection Upper Respiratory Infection 1 888123565 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N ec29c8ea-565d-4bba-a2ef-59bfab2eccc8
902 Lower Respiratory Infection Lower Respiratory Infection 1 888135556 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N 7a9af9ec-4604-474f-adb0-f122a9896b6e
903 Anaemia Anaemia 1 888115127 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N a498e3a1-0929-45c5-8449-86560e9478e1
904 Urinary tract infection (UTI) Urinary tract infection (UTI) 1 888111633 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N 3bc61847-ae7d-4571-a616-565254b4228e
905 Otitis media Otitis media 1 888131113 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N 877d7bf7-9e44-469f-bcc3-02c6e691e696
906 Scabies Scabies 1 888000140 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N c4081ae2-f445-478c-aeca-1660d168b27a
907 Angular stomatitis Angular stomatitis 1 888125860 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N 9377228c-6d68-48b1-8950-dba1ee3b3428
908 Oral candidiasis Oral candidiasis 1 888005334 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N 96d2dee1-fb53-4063-aa4f-75bb1e23f2eb
909 Gingivitis Gingivitis 1 888139438 \N \N \N 0 3 2015-09-16 04:37:58 \N \N 0 \N \N \N c07fe331-3d9f-46ee-92e9-e149f46fddd8
910 Anaemia Anaemia 1 777115127 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N e4f6e9fd-eef6-4aff-a17f-ccd45f34fb04
911 Cyanosis Cyanosis 1 888143050 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 31a51e10-bc4b-4401-8e47-b96cf23ee931
912 Amoebiasis Amoebiasis 1 888000124 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 7366575f-8444-4a1a-a659-c67036e9e81f
913 Jaundice Jaundice 1 888136443 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 349e95cf-f20c-4076-ab41-c240312bc672
914 Urinating Urinating 1 888000100 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N b1904288-ed21-4c78-b777-af1e5ff04f94
915 Pallor Pallor 1 888005245 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 5a6da21c-4c91-4d56-8fc5-9ddad672a5a0
916 TB status TB status 1 1659 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N c83505a3-a126-447c-a80a-f73c54b2c214
917 HIV status HIV status 1 1401 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N f7db40e7-9cc7-4f3d-a1d4-4f059ab9de77
918 [tiles] {"type": "TILE_ROW"} 5 \N \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N bd261615-096b-41ee-bd0b-32359f4f6041
919 Weight {"label": "Weight", "concepts": [5089], "format": "{1,select,<10:#.00 kg;#.0 kg}", "type": "sparkline"} 1 5089 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 80e9438f-5f25-45e7-86c7-a29aa929a15d
920 MUAC {"label": "MUAC", "concepts": [777000102], "format": "# mm", "type": "number"} 1 777000102 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 91af52c0-ba81-4d91-a99e-ded2dce9c90f
921 Oedema {"label": "Oedema", "concepts": [460], "type": "select_one"} 1 460 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N d18d8e08-c4a8-499b-8b5f-fb7e2ef42456
922 Conditions {"label": "Conditions", "concepts": [1401, 1659], "format": "{1,select,888000115:HIV+;888000114:HIV exp}\\n{2,select,888000109:TB+;888000110:TB+;888000108:TB sus}", "type": "custom"} 1 1401 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 34dcbc67-3a46-4f10-888c-2fd4d1b8da98
923 Temperature {"label": "Temperature", "concepts": [5088], "format": "#.0\\u00b0 C", "type": "number"} 1 5088 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 4b9a7b84-1950-4248-949a-90ac7f7a73ee
924 Pulse {"label": "Pulse", "concepts": [5087], "format": "# bpm", "type": "number"} 1 5087 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 7bf44b8d-96d0-4d8a-afe8-597f0eddf9cd
925 Respiratory rate {"label": "Respiratory rate", "concepts": [5242], "format": "# bpm", "type": "number"} 1 5242 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 01429a50-6975-4273-a895-b10f5436f594
926 Urinating {"label": "Urinating", "concepts": [777000100], "type": "yes_no"} 1 777000100 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N cdd7f605-54ef-40b2-b352-14e62ebc2191
927 Observations {"type": "GRID_SECTION"} 5 \N \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N fc564eb1-47a0-47c9-9b2b-dcc5626293ca
928 Notes {"label": "Notes", "concepts": [162169], "type": "text_icon"} 1 162169 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 741b0297-474d-47cc-9862-b569313013c1
929 Height (cm) {"label": "Height (cm)", "concepts": [5090], "type": "number"} 1 5090 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 562eb370-f26c-40f2-bb3a-334ed216716a
930 Weight (kg) {"label": "Weight (kg)", "script": "function() { }", "concepts": [5089], "format": "#.0", "type": "number"} 1 5089 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 7cc86dd6-9abd-4144-bba6-8a0a022a5925
931 MUAC (mm) {"label": "MUAC (mm)", "concepts": [777000102], "type": "number"} 1 777000102 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 3af0860b-9187-4964-8208-de9a63533bb6
932 Temperature (°C) {"label": "Temperature (\\u00b0C)", "concepts": [5088], "format": "#.0", "type": "number"} 1 5088 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 0aeac6df-fff8-4181-9098-0a668c95beb9
933 Paracheck {"label": "Paracheck", "concepts": [1643], "format": "{1,select,703:+;664:\\u2013;1138:?;}", "type": "select_one"} 1 1643 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 52912cb1-5bff-448e-b08b-1f51a39c4e3a
934 Diarrhoea (24h count) {"label": "Diarrhoea (24h count)", "concepts": [1837], "type": "number"} 1 1837 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 954d5888-6a6f-4c95-a920-a8c361922130
935 Bloody diarrhoea {"label": "Bloody diarrhoea", "concepts": [138868], "type": "yes_no"} 1 138868 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 1ad10042-e3c3-4026-a8de-bbbd520ec335
936 Watery diarrhoea {"label": "Watery diarrhoea", "concepts": [161887], "type": "yes_no"} 1 161887 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 5cf77d02-2f32-4a7d-957f-9062d031435a
937 Vomiting {"label": "Vomiting", "concepts": [122983], "format": "{1,select,1107:\\u00b7;1498:\\u2013;1499:=;1500:\\u2263}", "type": "select_one"} 1 122983 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 4f703ae5-e865-4dac-bc0f-c592606633de
938 Dehydration {"label": "Dehydration", "concepts": [1497], "format": "{1,select,1107:\\u00b7;1498:\\u2013;1499:=;1500:\\u2263}", "type": "select_one"} 1 1497 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N e18cb980-9855-4986-83d3-2bad2e9762e6
939 Cough {"label": "Cough", "concepts": [888143264], "type": "yes_no"} 1 888143264 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 93fe1981-02c9-4b4a-9b30-4a2faa2dcc70
940 Upper Respiratory Infection {"label": "Upper Respiratory Infection", "concepts": [888123565], "type": "yes_no"} 1 888123565 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 1d2caa6a-aeb0-4be2-82de-1a839c0a58af
941 Lower Respiratory Infection {"label": "Lower Respiratory Infection", "concepts": [888135556], "type": "yes_no"} 1 888135556 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 743a8eaf-1f01-49b1-b8da-0c033cef15a6
942 Anaemia {"label": "Anaemia", "concepts": [888115127], "type": "yes_no"} 1 888115127 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 76f24701-c6a4-420b-9159-10b53658ee1f
943 Appetite {"label": "Appetite", "concepts": [777000003], "type": "select_one"} 1 777000003 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 2fd3d03a-357e-4587-800b-db07fcab5e87
944 Urinary tract infection (UTI) {"label": "Urinary tract infection (UTI)", "concepts": [888111633], "type": "yes_no"} 1 888111633 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 3278b0a7-a2a4-474d-af5f-febe64fcb142
945 Otitis media {"label": "Otitis media", "concepts": [888131113], "type": "yes_no"} 1 888131113 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 2783aba8-dd15-4c8a-9b05-5b45e0aed986
946 Scabies {"label": "Scabies", "concepts": [888000140], "type": "yes_no"} 1 888000140 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N ced6423e-efd9-4597-818f-321b1f091314
947 Angular stomatitis {"label": "Angular stomatitis", "concepts": [888125860], "type": "yes_no"} 1 888125860 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 15e9112f-1bbd-4dd4-b4c2-60bb0065266c
948 Oral candidiasis {"label": "Oral candidiasis", "concepts": [888005334], "type": "yes_no"} 1 888005334 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 8ffa1bcb-e61e-4e1e-8f65-b1d71b7a240f
949 Gingivitis {"label": "Gingivitis", "concepts": [888139438], "type": "yes_no"} 1 888139438 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N c1971b76-7816-4f4b-9cb9-aafa868a56df
950 Pulse (bpm) {"label": "Pulse (bpm)", "concepts": [5087], "type": "number"} 1 5087 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 16f4ec90-98c0-42ef-98bf-9d2ee5c58b72
951 Respiratory rate (bpm) {"label": "Respiratory rate (bpm)", "concepts": [5242], "type": "number"} 1 5242 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 8204d0b1-0be6-413e-b4d4-88e74e5ad028
952 SpO₂ Oxygen Sat (%) {"label": "SpO\\u2082 Oxygen Sat (%)", "concepts": [5092], "type": "number"} 1 5092 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 3d557df2-b0c8-4251-b315-4bbfca2cc8b9
953 Capillary refill (s) {"label": "Capillary refill (s)", "concepts": [162513], "type": "number"} 1 162513 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 517a9b5c-5b7f-4512-86c9-0f264db308b1
954 Blood sugar (mg/mL) {"label": "Blood sugar (mg/mL)", "concepts": [887], "type": "number"} 1 887 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 7027527b-0a68-4c7b-b859-6e1df696c886
955 Haemoglobin (g/dL) {"label": "Haemoglobin (g/dL)", "concepts": [21], "type": "number"} 1 21 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 07046c73-00dc-4e1a-83d5-548f37f2cb6e
956 Consciousness (AVPU) {"label": "Consciousness (AVPU)", "concepts": [162643], "type": "select_one"} 1 162643 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 74403a3f-92d0-42a5-844b-6565c906da60
957 Anaemia {"caption_format": "{1,name}", "label": "Anaemia", "concepts": [777115127], "format": "{1,select,1107:\\u00b7;1498:\\u2013;1499:=;1500:\\u2263}", "type": "severity_bars"} 1 777115127 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 38dd267f-116b-4fec-82e3-93d307c5859c
958 Pain level {"caption_format": "{1,name}", "label": "Pain level", "concepts": [777000007], "format": "{1,select,1107:\\u00b7;1498:\\u2013;1499:=;1500:\\u2263}", "type": "severity_bars"} 1 777000007 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N e5eb77e8-06c8-4b1b-b5d1-a045111d82ac
959 Shock {"caption_format": "{1,name}", "label": "Shock", "concepts": [777112989], "format": "{1,select,1107:\\u00b7;1498:\\u2013;1499:=;1500:\\u2263}", "type": "severity_bars"} 1 777112989 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 3bc68d6c-6505-4288-bd9d-5e84b83b0208
960 Cyanosis {"label": "Cyanosis", "concepts": [888143050], "type": "yes_no"} 1 888143050 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N b252dfe1-821e-4309-8351-9d1cb643c341
961 TB status {"label": "TB status", "concepts": [1659], "type": "select_one"} 1 1659 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N bfabc397-572d-4d1c-86f4-82db3901c338
962 HIV status {"label": "HIV status", "concepts": [1401], "type": "select_one"} 1 1401 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 139ef5dc-62bc-4d01-ba2c-b94a45167086
963 Amoebiasis {"label": "Amoebiasis", "concepts": [888000124], "type": "yes_no"} 1 888000124 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N 16038445-ffc1-40bf-9a89-e03e9a40c27f
964 Jaundice {"label": "Jaundice", "concepts": [888136443], "type": "yes_no"} 1 888136443 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N f7d1173a-722b-4323-b14e-69212b6ae824
965 Urinating {"label": "Urinating", "concepts": [888000100], "type": "yes_no"} 1 888000100 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N ca362ce3-c828-495b-a402-24244988cd25
966 Pallor {"label": "Pallor", "concepts": [888005245], "type": "yes_no"} 1 888005245 \N \N \N 0 3 2015-09-16 04:37:59 \N \N 0 \N \N \N b9dc7c9a-0968-457b-bef7-be26a145dde5
967 tiles {"type": "GRID_SECTION"} 5 \N \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N bf152f4c-e267-4566-878f-382921bfcbb5
968 Weight (kg) {"label": "Weight (kg)", "concepts": [5089], "type": "sparkline"} 1 5089 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 468ba10d-3165-4835-99dc-80f68d0ef9e2
969 Oedema {"label": "Oedema", "concepts": [460], "type": "range 0-3 (None / Mild / Moderate / Severe)"} 1 460 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 1b2a0933-0c93-480e-adc7-cbec363d1673
970 Temperature (°C) {"label": "Temperature (\\u00b0C)", "concepts": [5088], "type": "sparkline"} 1 5088 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 933fb3c9-f0a9-49ad-b414-1167c38a722a
971 Urinating {"label": "Urinating", "concepts": [777000100], "type": "yes / no / unknown"} 1 777000100 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N ebf28535-47c5-465b-9074-f291c1bb3ecf
972 grid {"type": "GRID_SECTION"} 5 \N \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 20f7e73d-fc54-42c8-9b93-752fd4c69abc
973 Notes {"label": "Notes", "concepts": [162169], "type": "text"} 1 162169 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 8f9186aa-e545-48a3-84be-69ee1a6aba28
974 Temperature (°C) {"label": "Temperature (\\u00b0C)", "concepts": [5088], "type": "number"} 1 5088 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 66416d4f-ce6f-4cae-babf-3e6d4ade5d93
975 Height {"label": "Height", "concepts": [5090], "type": "number"} 1 5090 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 55772f45-97d3-4c4e-8b59-4ae085b16ecb
976 Weight (kg) {"label": "Weight (kg)", "concepts": [5089], "type": "number + graph"} 1 5089 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N f6d1136e-be57-441a-a7bc-60ff952c9897
977 Systolic BP (mmHg) {"label": "Systolic BP (mmHg)", "concepts": [5085], "type": "blood pressure"} 1 5085 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 3fef869b-33d5-40f8-b7a5-7f1b61118d92
978 Diastolic BP (mmHg) {"label": "Diastolic BP (mmHg)", "concepts": [5086], "type": "blood pressure"} 1 5086 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N b9605caf-572b-4a91-9da3-cf32a90d63fa
979 Paracheck {"label": "Paracheck", "concepts": [1643], "type": "positive or negative"} 1 1643 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N dd5d6b1c-88fa-4ddf-a210-25f16fd51fa6
980 Consciousness {"label": "Consciousness", "concepts": [162643], "type": "letter (A, V, P or U)"} 1 162643 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 56e17b60-3399-4991-b5e5-5aa448b99728
981 Appetite {"label": "Appetite", "concepts": [777000003], "type": "range 0-3"} 1 777000003 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 1fcc76be-d6e6-44a5-aeea-39e2e73af98f
982 Oedema {"label": "Oedema", "concepts": [460], "type": "range 0-3"} 1 460 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 256afd87-ff99-45e9-a7c8-fbc26b1b7f9d
983 Anaemia {"label": "Anaemia", "concepts": [115127], "type": "yes / no / unknown"} 1 115127 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N d8ebcb5c-3fee-4592-9148-d9109464c4c6
984 Dehydration {"label": "Dehydration", "concepts": [1497], "type": "range 0-3"} 1 1497 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 8767ddd4-776c-49ec-8228-4cd8fca19fef
985 Vomiting {"label": "Vomiting", "concepts": [122983], "type": "yes / no / unknown"} 1 122983 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 9e482fa2-acd9-4d63-86b5-87a45c3e74b6
986 Cough {"label": "Cough", "concepts": [143264], "type": "yes / no / unknown"} 1 143264 \N \N \N 0 3 2015-09-16 18:52:15 \N \N 0 \N \N \N 918259f0-8b63-4b7b-a469-2c99ffa64127
987 MUAC {"label": "MUAC", "css_style": "{1,select,<115:color:#c00;<135:color:#c80}", "concepts": [777000102], "format": "# mm", "type": "number"} 1 777000102 \N \N \N 0 3 2015-09-16 18:52:35 \N \N 0 \N \N \N 7c0345a0-427e-495b-bc83-7a83a748d667
988 Temperature {"css_class": "{1,select,>39:critical}", "label": "Temperature", "concepts": [5088], "format": "#.0\\u00b0 C", "type": "number"} 1 5088 \N \N \N 0 3 2015-09-16 18:52:35 \N \N 0 \N \N \N ea715c40-693b-493b-933a-556df3e3da34
989 Anaemia {"caption_format": "{1,name}", "label": "Anaemia", "concepts": [777115127], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf60;1499:\\ud834\\udf61;1500:\\ud834\\udf62}", "type": "severity_bars"} 1 777115127 \N \N \N 0 3 2015-09-16 18:52:35 \N \N 0 \N \N \N e08bfc7d-7bc0-4850-a5bf-4e3792387242
990 Pain level {"caption_format": "{1,name}", "label": "Pain level", "concepts": [777000007], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf69;1499:\\ud834\\udf6a;1500:\\ud834\\udf6b}", "type": "severity_bars"} 1 777000007 \N \N \N 0 3 2015-09-16 18:52:35 \N \N 0 \N \N \N 0d5ee382-d741-4986-b498-af037e605a55
991 MUAC {"label": "MUAC", "css_style": "{1,select,<115:color:red;<135:color:orange}", "concepts": [777000102], "format": "# mm", "type": "number"} 1 777000102 \N \N \N 0 3 2015-09-16 19:03:05 \N \N 0 \N \N \N e1976d5b-0e8a-497c-a312-8fd9c6bf7bb2
992 MUAC {"label": "MUAC", "css_style": "{1,select,<115:color:#c00;<135:color:#c80}", "concepts": [777000102], "format": "# m0m0", "type": "number"} 1 777000102 \N \N \N 0 3 2015-09-16 19:13:53 \N \N 0 \N \N \N 054a7fd1-6f20-40b6-8292-a0134243d46d
993 MUAC {"label": "MUAC", "css_style": "{1,select,<115:color:#c00;<135:color:#c80}", "concepts": [777000102], "format": "{1,number,# m0m0}", "type": "number"} 1 777000102 \N \N \N 0 3 2015-09-16 19:37:25 \N \N 0 \N \N \N bcef6a94-1011-4206-bfb3-8bd0eda91afd
998 Section 1 Section 1 5 \N \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 42614f2b-7c43-47a6-aa4a-254454387548
999 [test] Temperature (°C) [test] Temperature (°C) 1 999005088 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 4b70f8b8-956a-4d3c-827c-a6856d0786ad
1000 [test] Respiratory rate (bpm) [test] Respiratory rate (bpm) 1 999005242 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 2abfcdcc-e755-4b35-9cd7-008010e99bb4
1001 [test] SpO₂ oxygen sat (%) [test] SpO₂ oxygen sat (%) 1 999005092 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 6edb5f85-dd93-47b2-8312-7ed077a9cd76
1002 [test] Blood pressure, systolic [test] Blood pressure, systolic 1 999005085 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N eaf0fcb9-9144-4b3a-ba1f-36b2d7eb3e69
1003 [test] Blood pressure, diastolic [test] Blood pressure, diastolic 1 999005086 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 9df6384a-2323-41d0-8038-58efc0345103
1004 Section 2 Section 2 5 \N \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N ddfb2284-27cf-4d01-a189-7d16c4c9342f
1005 [test] Weight (kg) [test] Weight (kg) 1 999005089 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 77d9387a-fafa-4518-8e42-90d056f91a86
1006 [test] Height (cm) [test] Height (cm) 1 999005090 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N c4e1116d-a38b-405e-acab-d19b1b1b0d21
1007 [test] Shock [test] Shock 1 999112989 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 4493905b-bdfe-4566-ae16-9f74008cb3b5
1008 [test] Consciousness (AVPU) [test] Consciousness (AVPU) 1 999162643 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N a959fb99-a0fc-4c2b-b1e9-aba18659b1f6
1009 [test] Other symptoms[binary] [test] Other symptoms 5 \N \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N cebaccb4-d577-4acc-a65b-d2086695d2a5
1010 [test] Cough [test] Cough 1 999143264 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 417fdd22-645d-49be-b089-e88729938aeb
1011 [test] Anaemia [test] Anaemia 1 999115127 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 225000d7-3031-4c2c-b87d-bb05d913f273
1012 [test] Scabies [test] Scabies 1 999000140 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 5309d87c-fc4d-4e56-8995-bcf73c6ecf78
1013 [test] Gingivitis [test] Gingivitis 1 999139438 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N b4c0c95b-3fb1-4cda-9286-11b2bb58961b
1014 [test] Hiccups [test] Hiccups 1 999138862 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 7839a5cb-4cfa-4828-ba8f-e9b949f533d0
1015 [test] Headache [test] Headache 1 999139084 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N cc5a0a3c-09a1-4824-8e69-6dfd434794bd
1016 [test] Sore throat [test] Sore throat 1 999158843 \N \N \N 0 3 2015-09-17 20:04:53 \N \N 0 \N \N \N 08ac1ac0-0a3d-4732-b1ee-0c6689239690
1017 [test] Heartburn [test] Heartburn 1 999139059 \N \N \N 0 3 2015-09-17 20:04:54 \N \N 0 \N \N \N 6a92f340-b962-4ece-a0a0-7f5f7db49972
1018 [test] Notes [test] Notes 1 999162169 \N \N \N 0 3 2015-09-17 20:04:54 \N \N 0 \N \N \N 022a6a43-44a9-4447-82b7-79ab0742871e
1021 Section 3 Section 3 5 \N \N \N \N 0 3 2015-09-20 08:57:39 \N \N 0 \N \N \N 9fa95329-ff96-4bb4-b53e-ecc94da4beb0
1023 TB and HIV status TB and HIV status 5 \N \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N ec155ca9-ff40-4e28-99db-e1e145a1dcb2
1024 Test Section {"type": "GRID_SECTION"} 5 \N \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 629ae612-326e-4d40-8043-4bc8bb9281bb
1025 [test] Temperature (°C) {"label": "[test] Temperature (\\u00b0C)", "concepts": [999005088], "type": "number"} 1 999005088 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N ef992a62-ca77-4683-b670-6e810ed279bf
1026 [test] Respiratory rate (bpm) {"label": "[test] Respiratory rate (bpm)", "concepts": [999005242], "type": "number"} 1 999005242 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 984b6dd9-6eaf-4f9f-93bc-dc7e53d2a165
1027 [test] SpO₂ oxygen sat (%) {"label": "[test] SpO\\u2082 oxygen sat (%)", "concepts": [999005092], "type": "number"} 1 999005092 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 6a3e9cf2-1f1a-49f0-870e-0f720fafb99b
1028 [test] Blood pressure, systolic {"label": "[test] Blood pressure, systolic", "concepts": [999005085], "type": "number"} 1 999005085 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N e22ead38-0db3-47fe-882f-a6e90ad0fcb6
1029 [test] Blood pressure, diastolic {"label": "[test] Blood pressure, diastolic", "concepts": [999005086], "type": "number"} 1 999005086 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 97f362db-15fb-4b24-8f3b-1717de486b1c
1030 [test] Weight (kg) {"label": "[test] Weight (kg)", "concepts": [999005089], "type": "number"} 1 999005089 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 58ea664b-4c83-42cf-b5fc-1427b2fc1bcb
1031 [test] Height (cm) {"label": "[test] Height (cm)", "concepts": [999005090], "type": "number"} 1 999005090 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 7625c6d2-c605-4304-9ab1-d0a16982ef0a
1032 [test] Shock {"caption_format": "{1,name}", "label": "[test] Shock", "concepts": [999112989], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf69;1499:\\ud834\\udf6a;1500:\\ud834\\udf6b}", "type": "severity_bars"} 1 999112989 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 83962581-3fa5-4b4d-b373-d666d46a632c
1033 [test] Consciousness (AVPU) {"label": "[test] Consciousness (AVPU)", "concepts": [999162643], "type": "select_one"} 1 999162643 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 6480d2ce-3a2a-412e-8c41-dea22d42f163
1034 [test] Cough {"label": "[test] Cough", "concepts": [999143264], "type": "yes_no"} 1 999143264 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 8e7a0bf4-64ea-47f4-899b-367b1b85a26a
1035 [test] Anaemia {"label": "[test] Anaemia", "concepts": [999115127], "type": "yes_no"} 1 999115127 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N d0b69df5-46a0-4883-a802-877060f2d7e0
1036 [test] Scabies {"label": "[test] Scabies", "concepts": [999000140], "type": "yes_no"} 1 999000140 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 528964a9-2b35-47c8-9a4d-e3acd9f5c793
1037 [test] Gingivitis {"label": "[test] Gingivitis", "concepts": [999139438], "type": "yes_no"} 1 999139438 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 276e093c-6ab4-4cbe-a64d-af5005e2b2e6
1038 [test] Hiccups {"label": "[test] Hiccups", "concepts": [999138862], "type": "yes_no"} 1 999138862 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N bc2f9294-167a-4d38-a23a-d0375870e188
1039 [test] Headache {"label": "[test] Headache", "concepts": [999139084], "type": "yes_no"} 1 999139084 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N a1005d6e-84ba-454a-b607-3b7b4e96f500
1040 [test] Sore throat {"label": "[test] Sore throat", "concepts": [999158843], "type": "yes_no"} 1 999158843 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 93c02cab-742e-4c92-a001-56c898f357d7
1041 [test] Heartburn {"label": "[test] Heartburn", "concepts": [999139059], "type": "yes_no"} 1 999139059 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 5423c489-56f0-4c32-9393-8045762421c0
1042 Pregnant {"label": "Pregnant", "concepts": [5272], "type": "yes_no"} 1 5272 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N 7a612e83-9317-4ef9-9c43-b159455b7a87
1043 Condition {"label": "Condition", "concepts": [777000010], "type": "select_one"} 1 777000010 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N af44fb97-efe1-4bf4-bd24-637212f1c96e
1044 [test] Notes {"label": "[test] Notes", "script": "tab", "concepts": [999162169], "type": "text"} 1 999162169 \N \N \N 0 3 2015-09-21 18:56:00 \N \N 0 \N \N \N df09f7b0-c678-4902-ab88-bf0b1d207d7c
1045 MUAC {"css_class": "{1,select,<115:critical;<125:abnormal;<135:borderline}", "label": "MUAC", "concepts": [777000102], "format": "# mm", "type": "number"} 1 777000102 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 5a0c27f5-1fe7-4532-9d75-540b6bee23fc
1046 Oedema {"css_class": "{1,select,777000104:abnormal;777000105:abnormal;777000106:critical}", "label": "Oedema", "concepts": [460], "type": "select_one"} 1 460 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N b9d7b4d3-704f-4092-b0db-a25d37886483
1047 Temperature {"css_class": "{1,select,<35.5:critical;<36:abnormal;>37.5:abnormal;>39:critical}", "label": "Temperature", "concepts": [5088], "format": "#.0\\u00b0 C", "type": "number"} 1 5088 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 57c34ed7-db6a-4a34-a55e-9d6ce80c37bc
1048 Pulse {"css_class": "{1,select,<80:critical;<90:abnormal;<100:borderline;>140:borderline;>160:abnormal;>180:critical}", "label": "Pulse", "concepts": [5087], "format": "# bpm", "type": "number"} 1 5087 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N c075c8d9-8151-4e1c-a3e4-822c98c5ac15
1049 Respiratory rate {"css_class": "{1,select,<20:critical;>35:borderline;>40:abnormal;>45:critical}", "label": "Respiratory rate", "concepts": [5242], "format": "# bpm", "type": "number"} 1 5242 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N da9c5051-93ef-444f-ae18-607278b24abb
1050 MUAC (mm) {"css_class": "{1,select,<115:critical;<125:abnormal;<135:borderline}", "label": "MUAC (mm)", "concepts": [777000102], "type": "number"} 1 777000102 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 6d30b80d-75dc-4d37-961a-d79a09f3258b
1051 Temperature (°C) {"css_class": "{1,select,<35.5:critical;<36:abnormal;>37.5:abnormal;>39:critical}", "label": "Temperature (\\u00b0C)", "concepts": [5088], "format": "#.0", "type": "number"} 1 5088 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 6a0ed24b-ac47-4869-bf1d-13e9c05e8db2
1052 Vomiting {"label": "Vomiting", "concepts": [122983], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf69;1499:\\ud834\\udf6b;1500:\\ud834\\udf6d}", "type": "select_one"} 1 122983 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 38781089-1ee7-47d5-b359-68d733e3b596
1053 Dehydration {"label": "Dehydration", "concepts": [1497], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf69;1499:\\ud834\\udf6b;1500:\\ud834\\udf6d}", "type": "select_one"} 1 1497 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N ce9d7b15-383d-4d47-b692-4ebabe0f56c6
1054 Pulse (bpm) {"css_class": "{1,select,<80:critical;<90:abnormal;<100:borderline;>140:borderline;>160:abnormal;>180:critical}", "label": "Pulse (bpm)", "concepts": [5087], "type": "number"} 1 5087 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N cc5272c2-212e-4b7c-b6cf-7dd68ba91de0
1055 Respiratory rate (bpm) {"css_class": "{1,select,<20:critical;>35:borderline;>40:abnormal;>45:critical}", "label": "Respiratory rate (bpm)", "concepts": [5242], "type": "number"} 1 5242 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 81f11351-5b92-4e06-a2b1-0507351928dd
1056 SpO₂ Oxygen Sat (%) {"css_class": "{1,select,<95:critical}", "label": "SpO\\u2082 Oxygen Sat (%)", "concepts": [5092], "type": "number"} 1 5092 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N acf3a166-2e09-494a-bfc8-bcfd1bef45b1
1057 Blood sugar (mg/mL) {"css_class": "{1,select,<54:critical}", "label": "Blood sugar (mg/mL)", "concepts": [887], "type": "number"} 1 887 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 03c59d31-4053-4217-bee5-3b853d57b384
1058 Haemoglobin (g/dL) {"css_class": "{1,select,<4:critical;<6:abnormal;<8:borderline}", "label": "Haemoglobin (g/dL)", "concepts": [21], "type": "number"} 1 21 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 93728424-bbd1-4a8a-a54f-afc7bdf73b1a
1059 Consciousness (AVPU) {"css_class": "{1,select,162645:abnormal;162644:abnormal;159508:critical}", "label": "Consciousness (AVPU)", "concepts": [162643], "type": "select_one"} 1 162643 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N f501191f-d5ec-4adc-aa25-39adc4339427
1060 Anaemia {"caption_format": "{1,name}", "label": "Anaemia", "concepts": [777115127], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf69;1499:\\ud834\\udf6b;1500:\\ud834\\udf6d}", "type": "severity_bars"} 1 777115127 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N e9cb2e7d-ce6d-4504-a5da-52331fbe41d8
1061 Pain level {"caption_format": "{1,name}", "label": "Pain level", "concepts": [777000007], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf69;1499:\\ud834\\udf6b;1500:\\ud834\\udf6d}", "type": "severity_bars"} 1 777000007 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 7d27563b-8755-4fa9-890f-6eb2dc2b637d
1062 Shock {"caption_format": "{1,name}", "label": "Shock", "concepts": [777112989], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf69;1499:\\ud834\\udf6b;1500:\\ud834\\udf6d}", "type": "severity_bars"} 1 777112989 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 7afa071b-6447-41a1-8879-e65bec868cf5
1063 [test] Shock {"caption_format": "{1,name}", "label": "[test] Shock", "concepts": [999112989], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf69;1499:\\ud834\\udf6b;1500:\\ud834\\udf6d}", "type": "severity_bars"} 1 999112989 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 0eeb1813-649c-42da-92fc-cfd2ca6979d9
1064 [test] Notes {"label": "[test] Notes", "concepts": [999162169], "type": "text"} 1 999162169 \N \N \N 0 3 2015-09-24 20:11:55 \N \N 0 \N \N \N 4af54355-a7bf-422f-ade3-7c2d21045e26
1065 Appetite test Appetite test 1 888000003 \N \N \N 0 3 2015-09-24 22:32:38 \N \N 0 \N \N \N 6e1de43f-0c1c-4d21-b489-04cd67eb048f
1066 Oedema {"css_class": "{1,select,777000104:abnormal;777000105:abnormal;777000106:critical}", "label": "Oedema", "concepts": [460], "format": "{1,abbr}", "type": "select_one"} 1 460 \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N 454477d8-7500-4518-bd17-7269af76af77
1067 Temperature {"css_class": "{1,select,<35.5:critical;<36:abnormal;>37.5:abnormal;>39:critical}", "label": "Temperature", "concepts": [5088], "format": "#.0 \\u00b0C", "type": "number"} 1 5088 \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N 1a069ca2-1255-4a7a-9d8b-fe97666f23e9
1068 Anthropometrics {"type": "GRID_SECTION"} 5 \N \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N 75c12f05-e377-4621-9bf1-5afc452a5f6e
1069 Standard Observations {"type": "GRID_SECTION"} 5 \N \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N e3c965a2-8ac4-4efd-9bee-ec61911d2b79
1070 Paracheck {"css_class": "{1,select,703:critical;664:good;1138:borderline}", "label": "Paracheck", "concepts": [1643], "format": "{1,select,703:\\u2295;664:\\u229d;1138:?;}", "type": "select_one"} 1 1643 \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N 5737127d-e0e0-4876-bf40-db642e10dbbb
1071 Bloody diarrhoea {"label": "Bloody diarrhoea", "concepts": [138868], "format": "{1,yes_no,\\u25cf;\\u25cb}", "type": "yes_no"} 1 138868 \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N cdc43b12-468c-46e4-992b-e9eab70b0782
1072 Watery diarrhoea {"label": "Watery diarrhoea", "concepts": [161887], "format": "{1,yes_no,\\u25cf;\\u25cb}", "type": "yes_no"} 1 161887 \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N a3e8d4c3-2ecd-4fc4-84d4-851797852f98
1073 Vomiting {"label": "Vomiting", "concepts": [122983], "format": "{1,select,1107:\\u00b7;1498:\\ud834\\udf60;1499:\\ud834\\udf61;1500:\\ud834\\udf62}", "type": "severity_bars"} 1 122983 \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N e4010162-fd13-4d06-88ce-e4023dd02e4b
1074 Dehydration {"label": "Dehydration", "concepts": [1497], "format": "{1,select,1107:\\u25cb;1498:\\u2013;1499:=;1500:\\u2263}", "type": "severity_bars"} 1 1497 \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N 42366209-80ae-4bb5-af6d-a25ea8abc570
1075 Cough {"label": "Cough", "concepts": [888143264], "format": "{1,yes_no,\\u25cf;\\u25cb}", "type": "yes_no"} 1 888143264 \N \N \N 0 3 2015-09-24 22:32:39 \N \N 0 \N \N \N 7cc2bc94-4a1f-42a7-acaf-6941e6cfee7c