-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatient_Records.txt
1000 lines (1000 loc) · 37.7 KB
/
Patient_Records.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
P0001, 79, F, O+, 2022-02-22, Allergy
P0002, 49, F, B-, 2021-10-19, Asthma
P0003, 93, M, O+, 2022-03-21, Fracture
P0004, 64, F, B-, 2022-07-12, Flu
P0005, 9, M, A-, 2022-02-09, Flu
P0006, 83, F, B-, 2022-08-23, Allergy
P0007, 18, M, O+, 2022-03-21, Diabetes
P0008, 78, F, O+, 2022-01-13, Anxiety
P0009, 19, M, O+, 2021-10-17, Anxiety
P0010, 24, F, A+, 2022-02-20, Flu
P0011, 7, F, O-, 2023-02-26, Diabetes
P0012, 80, F, B+, 2021-05-21, Allergy
P0013, 27, F, AB-, 2022-10-25, Hypertension
P0014, 54, M, A-, 2022-08-16, Diabetes
P0015, 8, M, AB+, 2022-04-26, COVID-19
P0016, 41, M, O-, 2021-08-16, Anxiety
P0017, 69, F, AB-, 2021-11-21, Hypertension
P0018, 26, F, A-, 2021-10-20, Hypertension
P0019, 77, F, B-, 2021-12-18, Diabetes
P0020, 2, M, AB-, 2022-03-01, Anxiety
P0021, 74, M, O-, 2022-09-19, Hypertension
P0022, 83, M, A-, 2021-10-29, Allergy
P0023, 73, M, AB-, 2022-02-20, Fracture
P0024, 69, F, O+, 2022-10-01, Fracture
P0025, 83, M, O-, 2022-01-14, Fracture
P0026, 27, M, A-, 2021-06-17, Flu
P0027, 81, F, AB-, 2021-10-25, Asthma
P0028, 50, F, O-, 2022-02-08, Flu
P0029, 74, F, AB+, 2021-08-16, Allergy
P0030, 66, F, A+, 2023-02-25, Allergy
P0031, 1, F, AB+, 2022-05-11, Fracture
P0032, 22, M, A-, 2022-05-02, Flu
P0033, 82, F, B-, 2021-08-17, Fracture
P0034, 70, F, O+, 2021-12-17, Flu
P0035, 5, M, O+, 2022-01-24, Asthma
P0036, 73, F, B-, 2021-10-13, Asthma
P0037, 24, M, O+, 2023-03-30, Flu
P0038, 12, M, A-, 2023-01-05, Flu
P0039, 80, M, AB+, 2021-09-18, Hypertension
P0040, 4, M, B+, 2022-02-12, Fracture
P0041, 65, F, O-, 2022-02-03, Hypertension
P0042, 83, M, AB+, 2022-08-09, Fracture
P0043, 74, F, O-, 2022-05-09, Anxiety
P0044, 95, F, B-, 2023-03-05, COVID-19
P0045, 71, F, A+, 2022-02-21, Diabetes
P0046, 11, F, AB-, 2022-03-27, COVID-19
P0047, 97, M, A-, 2022-11-16, Allergy
P0048, 67, F, B+, 2022-10-08, Flu
P0049, 10, M, B+, 2022-04-02, COVID-19
P0050, 22, F, A+, 2022-07-01, Anxiety
P0051, 11, M, O-, 2022-01-26, Asthma
P0052, 59, M, A+, 2022-04-30, Anxiety
P0053, 94, F, B+, 2022-10-29, Asthma
P0054, 59, F, A+, 2021-07-07, Asthma
P0055, 14, F, AB-, 2021-10-18, Hypertension
P0056, 32, F, AB+, 2021-12-26, Diabetes
P0057, 25, M, O+, 2021-07-13, COVID-19
P0058, 82, F, B-, 2023-03-11, Fracture
P0059, 89, M, O-, 2021-08-20, Anxiety
P0060, 17, F, AB-, 2022-12-03, Fracture
P0061, 16, M, B-, 2023-01-28, Hypertension
P0062, 7, F, O-, 2023-02-02, Allergy
P0063, 39, F, AB-, 2021-07-18, Anxiety
P0064, 43, F, AB-, 2021-12-08, COVID-19
P0065, 36, M, O+, 2022-05-16, Anxiety
P0066, 60, M, B+, 2021-06-10, COVID-19
P0067, 67, F, A+, 2022-03-04, Fracture
P0068, 61, M, A+, 2022-01-26, Fracture
P0069, 15, M, O-, 2022-03-29, Hypertension
P0070, 57, M, A-, 2022-07-13, Fracture
P0071, 5, M, AB+, 2022-04-12, Asthma
P0072, 78, M, A+, 2022-07-23, Diabetes
P0073, 46, M, AB-, 2021-06-11, Hypertension
P0074, 24, F, A+, 2022-08-15, Hypertension
P0075, 4, F, B+, 2022-10-29, Hypertension
P0076, 31, F, O+, 2022-05-15, Hypertension
P0077, 4, M, AB-, 2021-09-10, COVID-19
P0078, 2, M, AB+, 2022-07-02, Asthma
P0079, 10, M, A+, 2022-09-30, Anxiety
P0080, 60, F, AB-, 2021-12-28, Flu
P0081, 98, F, A+, 2023-01-01, COVID-19
P0082, 49, M, O-, 2021-12-03, Hypertension
P0083, 13, M, A+, 2022-02-21, Anxiety
P0084, 12, M, AB+, 2022-01-02, Hypertension
P0085, 53, M, A-, 2021-06-10, Anxiety
P0086, 76, M, O+, 2023-01-04, Fracture
P0087, 90, M, AB-, 2021-10-02, Anxiety
P0088, 24, M, A+, 2021-05-27, Flu
P0089, 63, F, AB-, 2022-10-26, COVID-19
P0090, 70, F, O+, 2022-08-30, Anxiety
P0091, 33, F, AB+, 2023-03-02, COVID-19
P0092, 69, M, AB+, 2021-07-27, Allergy
P0093, 66, F, B+, 2021-10-06, Fracture
P0094, 59, F, O-, 2021-12-09, COVID-19
P0095, 2, F, A+, 2022-09-23, Hypertension
P0096, 36, F, B-, 2021-11-18, Asthma
P0097, 90, M, AB-, 2022-06-23, Diabetes
P0098, 35, F, AB-, 2021-07-27, Diabetes
P0099, 30, M, O-, 2021-12-12, Fracture
P0100, 35, F, AB-, 2022-02-04, Diabetes
P0101, 65, M, A+, 2022-04-09, Fracture
P0102, 70, F, O-, 2022-10-13, Diabetes
P0103, 40, F, A-, 2023-01-21, Hypertension
P0104, 53, M, B-, 2021-06-01, Fracture
P0105, 72, M, AB-, 2021-10-19, COVID-19
P0106, 13, F, B+, 2022-09-25, Hypertension
P0107, 22, M, AB-, 2022-05-25, Fracture
P0108, 49, M, AB-, 2022-11-21, Flu
P0109, 5, M, AB-, 2022-07-23, Anxiety
P0110, 18, M, O+, 2022-02-07, Asthma
P0111, 24, F, B+, 2022-12-18, Asthma
P0112, 69, F, O+, 2023-03-28, Diabetes
P0113, 8, F, AB+, 2022-11-04, Diabetes
P0114, 60, M, A+, 2022-10-29, COVID-19
P0115, 74, F, AB-, 2022-03-04, Flu
P0116, 39, F, O-, 2022-04-24, Allergy
P0117, 77, F, A+, 2023-03-27, COVID-19
P0118, 97, M, B-, 2021-05-28, Flu
P0119, 29, F, B-, 2022-06-14, COVID-19
P0120, 5, M, B-, 2023-01-30, Fracture
P0121, 92, M, AB+, 2022-07-12, Fracture
P0122, 47, M, AB-, 2021-09-15, Diabetes
P0123, 43, F, A+, 2021-06-19, Anxiety
P0124, 89, M, AB+, 2022-08-02, Diabetes
P0125, 75, F, AB-, 2022-01-14, Hypertension
P0126, 33, F, AB-, 2021-09-25, Fracture
P0127, 92, M, AB-, 2021-08-21, Fracture
P0128, 67, F, A-, 2021-12-16, Fracture
P0129, 16, F, AB-, 2022-03-11, Anxiety
P0130, 76, M, O+, 2022-11-17, Anxiety
P0131, 78, M, B-, 2022-03-12, Hypertension
P0132, 94, F, O-, 2022-05-26, Allergy
P0133, 66, F, AB+, 2021-05-25, Flu
P0134, 60, M, A-, 2021-12-03, Anxiety
P0135, 47, F, O+, 2023-01-24, Diabetes
P0136, 23, F, A+, 2022-08-30, Diabetes
P0137, 94, F, AB-, 2021-06-21, Anxiety
P0138, 51, M, AB-, 2021-06-05, Diabetes
P0139, 8, M, AB+, 2021-06-22, Hypertension
P0140, 59, F, B-, 2022-09-19, Flu
P0141, 49, M, AB-, 2022-11-18, Diabetes
P0142, 89, F, O+, 2021-12-31, Anxiety
P0143, 51, M, O-, 2022-05-29, Fracture
P0144, 4, F, A+, 2021-04-25, Hypertension
P0145, 34, F, AB+, 2022-01-26, COVID-19
P0146, 59, M, B-, 2022-11-21, Allergy
P0147, 11, M, A+, 2022-11-22, Flu
P0148, 77, M, AB+, 2023-03-25, Hypertension
P0149, 17, M, A-, 2022-09-03, Diabetes
P0150, 68, M, B-, 2022-07-24, Allergy
P0151, 67, M, B+, 2022-07-31, Anxiety
P0152, 12, F, AB+, 2022-12-04, Diabetes
P0153, 94, M, AB-, 2022-01-31, Flu
P0154, 97, M, AB-, 2021-07-15, Anxiety
P0155, 65, F, AB-, 2022-07-03, Asthma
P0156, 91, M, AB+, 2021-12-17, Allergy
P0157, 16, M, O+, 2021-09-29, Fracture
P0158, 8, F, A+, 2022-11-19, Asthma
P0159, 93, F, B-, 2021-08-05, Diabetes
P0160, 41, F, O-, 2022-08-13, Asthma
P0161, 39, M, A+, 2022-12-08, Diabetes
P0162, 51, M, B+, 2021-12-30, Asthma
P0163, 40, F, A+, 2023-02-07, Hypertension
P0164, 64, F, A+, 2022-03-03, Hypertension
P0165, 70, F, AB+, 2022-02-17, COVID-19
P0166, 76, F, B+, 2021-08-11, Fracture
P0167, 22, M, A-, 2022-08-04, Allergy
P0168, 26, F, B+, 2023-01-30, COVID-19
P0169, 6, F, A+, 2021-10-21, COVID-19
P0170, 79, M, A-, 2021-07-25, COVID-19
P0171, 68, F, AB+, 2022-07-24, Flu
P0172, 79, F, B-, 2023-04-07, Hypertension
P0173, 76, F, B-, 2022-09-30, Hypertension
P0174, 77, F, AB+, 2021-10-16, Diabetes
P0175, 100, M, AB-, 2022-11-25, Anxiety
P0176, 83, F, A-, 2022-12-12, Fracture
P0177, 78, M, AB+, 2022-02-07, Hypertension
P0178, 21, F, B-, 2021-11-28, Allergy
P0179, 1, F, B-, 2022-11-15, Allergy
P0180, 100, F, B+, 2021-07-05, Fracture
P0181, 24, F, AB-, 2022-08-10, Allergy
P0182, 28, M, B+, 2022-10-23, COVID-19
P0183, 45, F, B+, 2022-10-17, Allergy
P0184, 72, F, A+, 2022-09-17, Hypertension
P0185, 41, F, B-, 2021-09-17, COVID-19
P0186, 48, M, O+, 2022-09-02, Asthma
P0187, 30, F, A-, 2022-11-19, COVID-19
P0188, 98, F, O+, 2021-07-17, COVID-19
P0189, 15, F, O+, 2022-06-30, Asthma
P0190, 43, F, B-, 2021-08-28, Anxiety
P0191, 68, M, O+, 2021-07-22, Allergy
P0192, 24, M, B+, 2022-10-12, Diabetes
P0193, 37, M, B+, 2021-06-29, COVID-19
P0194, 76, M, A-, 2022-11-09, Asthma
P0195, 14, F, B-, 2021-07-11, Anxiety
P0196, 11, M, A+, 2021-12-24, Flu
P0197, 100, F, AB+, 2022-01-24, Fracture
P0198, 5, F, B+, 2022-01-25, Fracture
P0199, 74, F, A-, 2021-04-25, Diabetes
P0200, 53, M, B+, 2022-08-22, Fracture
P0201, 51, M, B-, 2022-01-28, COVID-19
P0202, 18, F, O-, 2021-08-08, Allergy
P0203, 60, F, A+, 2023-02-27, Hypertension
P0204, 26, F, O+, 2022-04-25, Allergy
P0205, 30, F, AB-, 2021-05-02, Hypertension
P0206, 79, F, AB-, 2023-02-19, Anxiety
P0207, 53, F, AB+, 2022-12-20, Anxiety
P0208, 85, F, O-, 2021-09-20, Allergy
P0209, 82, M, A-, 2022-10-26, Allergy
P0210, 85, F, A+, 2023-01-18, Asthma
P0211, 48, M, A+, 2022-01-23, Diabetes
P0212, 30, M, A-, 2021-05-04, Flu
P0213, 55, M, O+, 2021-07-13, Fracture
P0214, 69, M, A+, 2022-07-18, Flu
P0215, 8, F, B-, 2022-07-03, Asthma
P0216, 23, M, O+, 2022-12-31, Hypertension
P0217, 9, F, O+, 2021-07-16, COVID-19
P0218, 80, F, AB-, 2022-06-25, Asthma
P0219, 66, M, A-, 2022-02-20, Anxiety
P0220, 60, F, O+, 2022-07-06, Fracture
P0221, 6, M, B-, 2023-02-04, Diabetes
P0222, 62, F, A-, 2022-04-11, Asthma
P0223, 33, F, O+, 2021-09-12, COVID-19
P0224, 69, F, A+, 2023-03-19, Asthma
P0225, 47, M, O+, 2023-02-24, Fracture
P0226, 59, M, B+, 2022-01-08, Diabetes
P0227, 18, F, AB-, 2021-06-09, COVID-19
P0228, 20, M, O+, 2023-02-23, COVID-19
P0229, 41, F, B-, 2021-08-12, Fracture
P0230, 11, F, AB+, 2022-12-20, Asthma
P0231, 80, M, O-, 2022-04-08, Diabetes
P0232, 33, F, O+, 2022-02-05, Diabetes
P0233, 53, M, B+, 2021-07-31, Diabetes
P0234, 94, F, A-, 2021-12-06, Fracture
P0235, 37, M, AB-, 2021-05-12, Diabetes
P0236, 13, M, B-, 2023-04-06, Allergy
P0237, 83, M, AB-, 2021-05-12, Anxiety
P0238, 98, F, AB+, 2022-06-03, Allergy
P0239, 22, M, B-, 2023-01-25, Hypertension
P0240, 54, F, O+, 2023-02-21, COVID-19
P0241, 33, F, A+, 2021-06-30, COVID-19
P0242, 22, F, AB-, 2023-04-06, Flu
P0243, 15, F, O-, 2022-05-25, COVID-19
P0244, 72, F, B+, 2021-11-07, Fracture
P0245, 49, F, AB+, 2021-12-01, Fracture
P0246, 68, F, A+, 2021-08-30, Diabetes
P0247, 8, F, AB+, 2021-11-27, Fracture
P0248, 15, M, O+, 2021-06-28, Flu
P0249, 72, M, AB+, 2022-09-23, Fracture
P0250, 45, M, B+, 2022-04-16, Fracture
P0251, 81, M, O+, 2022-07-26, Anxiety
P0252, 9, F, B-, 2022-07-23, Asthma
P0253, 12, M, A+, 2022-03-27, Hypertension
P0254, 15, F, AB+, 2021-10-07, Allergy
P0255, 58, M, B+, 2021-12-12, COVID-19
P0256, 48, M, B-, 2022-12-07, Diabetes
P0257, 46, M, A+, 2021-11-26, Diabetes
P0258, 6, M, A-, 2021-11-05, Flu
P0259, 21, M, O-, 2021-07-13, Flu
P0260, 2, F, A-, 2022-05-06, Diabetes
P0261, 41, F, A+, 2022-07-27, Flu
P0262, 45, M, O+, 2022-02-04, Diabetes
P0263, 8, F, B-, 2022-01-08, Anxiety
P0264, 11, M, A+, 2022-01-30, Flu
P0265, 79, F, B+, 2022-01-06, COVID-19
P0266, 41, M, B-, 2021-08-15, Hypertension
P0267, 58, F, A+, 2022-07-17, Diabetes
P0268, 1, M, AB-, 2022-04-01, Flu
P0269, 26, M, B-, 2022-12-06, Anxiety
P0270, 20, M, AB-, 2023-01-27, Allergy
P0271, 64, F, O-, 2022-03-22, Hypertension
P0272, 6, F, A+, 2021-07-09, Diabetes
P0273, 25, F, AB-, 2023-03-09, Flu
P0274, 98, F, B+, 2022-09-02, Asthma
P0275, 38, F, A+, 2021-08-10, Anxiety
P0276, 17, F, O-, 2021-09-24, COVID-19
P0277, 58, M, B-, 2022-11-14, Allergy
P0278, 44, M, O+, 2021-06-08, Asthma
P0279, 77, M, B-, 2021-06-29, Asthma
P0280, 46, F, O-, 2021-05-31, Allergy
P0281, 45, F, A-, 2023-03-07, Allergy
P0282, 33, F, B-, 2021-05-23, Allergy
P0283, 98, M, A+, 2022-08-12, Diabetes
P0284, 84, F, B+, 2023-03-13, Diabetes
P0285, 45, F, AB-, 2022-12-10, Diabetes
P0286, 47, F, AB-, 2022-04-12, Asthma
P0287, 46, F, AB+, 2021-05-31, Asthma
P0288, 63, F, B+, 2022-05-13, Allergy
P0289, 56, M, AB+, 2022-12-26, Hypertension
P0290, 15, M, A-, 2023-01-02, Hypertension
P0291, 69, M, AB+, 2022-08-31, Asthma
P0292, 79, F, A-, 2021-11-27, Hypertension
P0293, 24, F, B-, 2022-02-16, Fracture
P0294, 93, M, O-, 2022-06-18, Flu
P0295, 37, F, A-, 2022-07-31, Fracture
P0296, 29, F, B-, 2022-08-08, Hypertension
P0297, 79, M, AB+, 2022-11-27, Anxiety
P0298, 54, F, AB-, 2021-11-02, Asthma
P0299, 78, M, AB+, 2021-11-27, Flu
P0300, 10, F, O+, 2023-01-11, Anxiety
P0301, 23, M, A-, 2021-04-22, Hypertension
P0302, 9, M, A+, 2022-05-02, Hypertension
P0303, 39, F, A-, 2023-03-31, Fracture
P0304, 28, F, AB+, 2023-02-11, Hypertension
P0305, 22, M, O+, 2021-11-04, Fracture
P0306, 54, F, AB-, 2022-06-27, Asthma
P0307, 81, M, B-, 2022-03-15, Anxiety
P0308, 41, M, O-, 2021-05-21, Anxiety
P0309, 34, F, O+, 2022-05-27, Flu
P0310, 88, M, O-, 2021-04-28, Hypertension
P0311, 100, F, A-, 2022-07-31, Fracture
P0312, 45, F, A-, 2022-12-29, COVID-19
P0313, 67, F, AB+, 2022-10-08, Asthma
P0314, 58, M, A-, 2022-06-29, Diabetes
P0315, 68, M, B-, 2022-11-29, Diabetes
P0316, 61, M, AB+, 2021-05-24, Hypertension
P0317, 3, M, B+, 2022-09-06, Asthma
P0318, 2, F, A-, 2022-07-24, Flu
P0319, 89, F, O+, 2021-05-21, Asthma
P0320, 18, M, A+, 2022-10-09, Fracture
P0321, 55, M, B-, 2021-04-25, COVID-19
P0322, 2, M, B+, 2022-12-21, Diabetes
P0323, 3, F, AB+, 2023-03-05, COVID-19
P0324, 93, F, O+, 2021-05-10, Fracture
P0325, 49, M, A+, 2021-11-24, Flu
P0326, 36, F, B+, 2022-06-10, Fracture
P0327, 37, M, A+, 2022-10-18, Hypertension
P0328, 96, F, A-, 2021-08-09, Asthma
P0329, 15, F, A-, 2022-12-12, Diabetes
P0330, 20, F, B+, 2023-03-13, Flu
P0331, 70, F, O-, 2021-10-30, Anxiety
P0332, 38, F, B-, 2022-08-07, COVID-19
P0333, 67, M, B+, 2021-11-02, Allergy
P0334, 88, M, O-, 2022-03-09, Flu
P0335, 91, M, AB+, 2022-10-16, Hypertension
P0336, 99, F, B+, 2022-02-24, Fracture
P0337, 19, F, B-, 2021-05-28, Allergy
P0338, 79, F, O+, 2022-08-24, Hypertension
P0339, 67, F, A-, 2022-10-22, COVID-19
P0340, 35, M, A+, 2022-08-17, Diabetes
P0341, 76, F, O+, 2021-05-05, Allergy
P0342, 48, F, A+, 2021-08-28, COVID-19
P0343, 41, F, AB-, 2023-03-02, Allergy
P0344, 34, F, A-, 2022-11-03, Flu
P0345, 36, F, AB+, 2021-06-21, Diabetes
P0346, 6, M, AB+, 2021-11-30, Hypertension
P0347, 54, F, O-, 2021-12-13, Allergy
P0348, 80, M, AB+, 2022-04-19, Hypertension
P0349, 77, F, A-, 2022-10-11, Allergy
P0350, 30, M, O-, 2022-11-13, Anxiety
P0351, 28, M, AB+, 2021-10-31, Asthma
P0352, 73, M, O-, 2023-02-07, Hypertension
P0353, 11, M, AB-, 2023-03-17, Flu
P0354, 42, M, A-, 2022-06-09, Flu
P0355, 94, F, AB+, 2021-10-06, Diabetes
P0356, 83, F, A+, 2022-09-03, Asthma
P0357, 30, M, O-, 2022-06-18, Fracture
P0358, 25, M, A-, 2022-05-06, Fracture
P0359, 55, F, AB-, 2022-11-17, Asthma
P0360, 26, M, A+, 2022-11-02, Hypertension
P0361, 46, M, AB+, 2022-04-26, Asthma
P0362, 12, M, B+, 2023-04-05, Diabetes
P0363, 29, M, AB-, 2022-02-19, Hypertension
P0364, 52, M, O+, 2023-01-14, Diabetes
P0365, 50, M, O-, 2021-06-20, Fracture
P0366, 39, M, A+, 2021-09-22, Allergy
P0367, 17, F, A-, 2022-10-04, Anxiety
P0368, 85, F, AB-, 2021-05-12, COVID-19
P0369, 29, M, O-, 2023-02-19, Fracture
P0370, 73, F, A-, 2023-04-08, Hypertension
P0371, 51, M, O-, 2021-09-06, Asthma
P0372, 6, F, O+, 2022-02-04, Allergy
P0373, 17, F, A+, 2023-03-06, Allergy
P0374, 97, M, B-, 2021-09-26, Fracture
P0375, 42, F, A+, 2021-11-14, Diabetes
P0376, 45, M, B-, 2023-03-13, Diabetes
P0377, 73, M, AB-, 2021-10-24, Fracture
P0378, 21, F, AB+, 2022-05-30, Fracture
P0379, 17, M, A-, 2021-07-08, Hypertension
P0380, 81, M, AB+, 2022-10-26, Asthma
P0381, 97, F, AB+, 2023-02-01, Fracture
P0382, 16, M, AB+, 2022-02-15, Hypertension
P0383, 87, F, A+, 2022-05-26, COVID-19
P0384, 94, M, AB+, 2022-05-12, Allergy
P0385, 13, F, B-, 2022-08-10, Flu
P0386, 74, M, B+, 2022-07-13, Flu
P0387, 26, M, A+, 2023-03-27, Hypertension
P0388, 73, M, A+, 2021-06-19, COVID-19
P0389, 94, F, O+, 2023-02-18, Allergy
P0390, 50, M, B-, 2021-11-20, Asthma
P0391, 79, F, O+, 2021-05-08, COVID-19
P0392, 56, F, B-, 2021-07-27, COVID-19
P0393, 69, F, B-, 2021-09-18, Fracture
P0394, 60, M, O+, 2023-03-30, Asthma
P0395, 76, F, AB-, 2021-10-24, Asthma
P0396, 71, M, AB-, 2022-06-06, Diabetes
P0397, 13, M, O+, 2021-12-12, Fracture
P0398, 24, M, A+, 2021-10-28, Fracture
P0399, 58, M, B+, 2022-07-25, Asthma
P0400, 1, F, B+, 2022-12-16, Anxiety
P0401, 24, M, A+, 2022-12-23, Allergy
P0402, 7, F, O+, 2023-03-18, Asthma
P0403, 9, M, AB+, 2022-09-02, Flu
P0404, 12, M, A+, 2022-02-25, Diabetes
P0405, 21, F, AB+, 2021-11-24, COVID-19
P0406, 69, F, O-, 2022-12-16, Anxiety
P0407, 27, F, B-, 2021-09-01, Hypertension
P0408, 49, M, O-, 2023-04-09, COVID-19
P0409, 44, F, B-, 2022-11-23, COVID-19
P0410, 77, M, O-, 2022-04-03, Diabetes
P0411, 67, F, O+, 2021-05-01, Asthma
P0412, 45, M, AB-, 2021-06-22, Allergy
P0413, 44, M, A-, 2022-10-09, Fracture
P0414, 78, M, A+, 2022-01-01, Anxiety
P0415, 50, F, O+, 2022-08-31, Flu
P0416, 14, F, B-, 2021-05-05, Hypertension
P0417, 92, M, AB-, 2021-07-24, COVID-19
P0418, 75, M, O+, 2021-11-09, Diabetes
P0419, 73, F, B-, 2022-12-08, Diabetes
P0420, 14, M, A-, 2022-06-04, COVID-19
P0421, 71, M, B+, 2023-01-09, Allergy
P0422, 14, F, O+, 2022-07-04, Anxiety
P0423, 72, F, AB-, 2022-05-04, Asthma
P0424, 70, F, B+, 2021-12-01, Diabetes
P0425, 38, F, AB-, 2021-09-10, Anxiety
P0426, 88, F, B-, 2021-12-19, COVID-19
P0427, 26, F, A-, 2022-01-26, COVID-19
P0428, 78, F, AB+, 2023-01-29, Hypertension
P0429, 80, F, O-, 2022-05-05, Anxiety
P0430, 60, F, A-, 2021-06-06, COVID-19
P0431, 74, M, O+, 2023-01-25, Anxiety
P0432, 78, M, A-, 2022-09-07, Anxiety
P0433, 68, M, O-, 2022-06-23, Asthma
P0434, 20, M, AB+, 2023-02-18, COVID-19
P0435, 64, F, O-, 2022-11-27, Flu
P0436, 78, F, O+, 2022-02-20, Diabetes
P0437, 9, F, B+, 2022-07-16, Flu
P0438, 43, F, B+, 2021-06-24, Allergy
P0439, 76, F, A-, 2023-03-30, Fracture
P0440, 68, F, A-, 2021-11-14, Asthma
P0441, 33, M, AB-, 2021-07-30, Fracture
P0442, 26, M, B-, 2023-03-05, Fracture
P0443, 95, M, B-, 2022-05-30, Hypertension
P0444, 34, F, O+, 2021-06-16, Allergy
P0445, 11, M, O-, 2022-12-08, Anxiety
P0446, 97, F, O-, 2021-09-22, COVID-19
P0447, 46, F, O-, 2022-12-22, COVID-19
P0448, 100, F, AB+, 2023-01-23, Hypertension
P0449, 54, M, O+, 2021-10-28, Asthma
P0450, 38, M, AB-, 2022-11-02, Flu
P0451, 7, F, A+, 2022-07-26, Allergy
P0452, 3, M, AB-, 2023-01-12, Flu
P0453, 92, F, B-, 2021-07-28, Diabetes
P0454, 2, F, B-, 2022-10-29, Hypertension
P0455, 44, M, O-, 2022-03-24, Anxiety
P0456, 42, F, O+, 2021-11-04, Anxiety
P0457, 95, F, B+, 2022-01-22, Diabetes
P0458, 8, M, AB+, 2022-07-21, Asthma
P0459, 88, F, O-, 2023-03-04, Hypertension
P0460, 84, M, B+, 2022-05-06, Flu
P0461, 68, F, B-, 2022-11-27, COVID-19
P0462, 65, M, O-, 2021-08-05, Anxiety
P0463, 96, M, O+, 2022-01-24, COVID-19
P0464, 75, M, A-, 2022-07-02, Allergy
P0465, 2, F, O+, 2021-10-17, Hypertension
P0466, 99, F, AB-, 2022-08-02, Asthma
P0467, 89, F, O+, 2023-03-03, Allergy
P0468, 70, M, AB-, 2022-05-18, COVID-19
P0469, 70, F, AB+, 2021-07-07, Fracture
P0470, 51, M, O+, 2021-05-13, Asthma
P0471, 92, F, B-, 2022-09-14, Allergy
P0472, 70, F, A-, 2021-11-15, Flu
P0473, 97, M, A-, 2022-01-03, COVID-19
P0474, 89, M, AB+, 2022-03-26, Allergy
P0475, 89, F, AB-, 2022-12-08, Hypertension
P0476, 49, F, AB-, 2022-08-05, Diabetes
P0477, 62, F, AB+, 2022-04-28, Diabetes
P0478, 88, F, B+, 2021-09-09, Flu
P0479, 14, M, O+, 2021-08-18, COVID-19
P0480, 7, F, B+, 2022-07-19, Fracture
P0481, 3, F, A+, 2022-05-13, Fracture
P0482, 39, F, A+, 2021-07-23, Diabetes
P0483, 81, F, B-, 2021-09-01, COVID-19
P0484, 28, F, A+, 2021-04-24, Fracture
P0485, 76, M, O-, 2021-08-22, Allergy
P0486, 11, M, O-, 2021-05-14, COVID-19
P0487, 36, M, AB+, 2022-07-27, Allergy
P0488, 33, M, O-, 2022-12-05, Hypertension
P0489, 10, F, B-, 2022-09-13, Asthma
P0490, 1, M, A+, 2023-02-01, Asthma
P0491, 7, M, O-, 2022-11-22, Diabetes
P0492, 79, M, B+, 2022-02-18, Flu
P0493, 93, F, B-, 2021-05-27, Fracture
P0494, 98, F, B-, 2022-03-16, Flu
P0495, 58, M, A-, 2022-07-18, Diabetes
P0496, 94, M, O+, 2022-03-24, Hypertension
P0497, 71, M, O-, 2022-07-17, Flu
P0498, 47, M, O+, 2022-04-30, Asthma
P0499, 7, M, A-, 2022-05-22, Anxiety
P0500, 96, F, B-, 2021-10-03, Fracture
P0501, 57, M, AB-, 2022-05-03, Diabetes
P0502, 32, M, O+, 2022-01-28, Hypertension
P0503, 37, M, AB+, 2022-10-24, Diabetes
P0504, 69, M, B+, 2022-09-06, Fracture
P0505, 58, M, B+, 2022-08-05, Hypertension
P0506, 94, M, O+, 2022-12-13, Allergy
P0507, 94, F, B-, 2021-07-31, Diabetes
P0508, 41, F, B+, 2022-06-27, Fracture
P0509, 60, M, B-, 2023-04-15, Flu
P0510, 16, M, O-, 2022-10-15, Flu
P0511, 77, M, B-, 2022-11-10, Asthma
P0512, 53, F, A+, 2022-06-13, Flu
P0513, 54, F, A-, 2022-12-26, COVID-19
P0514, 70, M, A-, 2022-10-18, Fracture
P0515, 5, F, A-, 2022-08-02, Fracture
P0516, 78, F, O-, 2021-06-25, Flu
P0517, 16, M, O+, 2021-11-13, Asthma
P0518, 39, F, B-, 2022-04-17, Allergy
P0519, 27, F, A+, 2022-03-15, Anxiety
P0520, 75, F, O-, 2022-11-11, Anxiety
P0521, 98, F, A-, 2022-09-04, Diabetes
P0522, 58, F, B+, 2022-11-21, Asthma
P0523, 93, M, AB-, 2023-02-20, Hypertension
P0524, 70, F, A+, 2022-06-02, Allergy
P0525, 63, F, AB-, 2021-05-07, Asthma
P0526, 61, F, A-, 2022-05-15, Anxiety
P0527, 82, M, O+, 2021-06-24, Allergy
P0528, 26, M, B+, 2021-08-05, Allergy
P0529, 47, M, O+, 2022-11-19, Asthma
P0530, 56, M, O+, 2023-02-11, Flu
P0531, 11, M, B-, 2023-03-31, Allergy
P0532, 84, F, A-, 2023-01-28, Diabetes
P0533, 58, M, AB-, 2021-09-27, Fracture
P0534, 98, M, AB-, 2022-12-30, Flu
P0535, 84, F, O+, 2022-01-26, Allergy
P0536, 97, M, A-, 2021-04-20, Anxiety
P0537, 80, M, B+, 2023-01-22, Fracture
P0538, 91, F, B+, 2022-10-25, Allergy
P0539, 54, F, AB+, 2022-01-24, Flu
P0540, 50, M, A+, 2022-03-16, Flu
P0541, 44, M, O-, 2022-10-11, Hypertension
P0542, 97, M, B+, 2021-07-22, Fracture
P0543, 56, M, AB+, 2022-01-20, Anxiety
P0544, 70, M, AB-, 2021-08-18, Flu
P0545, 28, M, O+, 2022-11-21, Allergy
P0546, 50, F, A+, 2022-11-07, Diabetes
P0547, 49, M, B+, 2022-02-21, Flu
P0548, 2, F, AB+, 2022-01-21, COVID-19
P0549, 22, M, O+, 2022-12-25, Asthma
P0550, 6, F, AB-, 2023-01-09, Hypertension
P0551, 87, F, B-, 2021-04-24, COVID-19
P0552, 14, M, A+, 2022-08-22, Anxiety
P0553, 35, F, B+, 2021-11-23, Anxiety
P0554, 15, M, A-, 2021-12-08, COVID-19
P0555, 48, F, O+, 2021-07-20, COVID-19
P0556, 12, F, A+, 2022-02-08, Hypertension
P0557, 63, M, A-, 2022-04-01, Diabetes
P0558, 3, F, A-, 2022-11-08, Fracture
P0559, 1, F, O+, 2021-05-15, Anxiety
P0560, 27, F, B+, 2021-08-12, Hypertension
P0561, 2, F, B+, 2022-09-21, Hypertension
P0562, 37, M, A+, 2021-06-11, COVID-19
P0563, 67, M, B+, 2022-04-30, Allergy
P0564, 23, F, B+, 2023-01-27, Flu
P0565, 93, M, AB-, 2021-05-14, Hypertension
P0566, 68, F, O-, 2022-07-20, Fracture
P0567, 75, F, B-, 2022-03-27, Anxiety
P0568, 82, M, B+, 2022-01-11, Hypertension
P0569, 25, F, A-, 2023-02-21, Hypertension
P0570, 49, M, AB+, 2022-06-02, Asthma
P0571, 59, M, O+, 2022-03-07, Hypertension
P0572, 31, F, B-, 2022-05-17, Diabetes
P0573, 91, M, AB-, 2022-10-22, Fracture
P0574, 30, M, AB-, 2022-11-02, COVID-19
P0575, 36, M, O-, 2022-11-24, Flu
P0576, 86, F, AB-, 2023-01-28, Asthma
P0577, 3, F, A+, 2022-05-11, Diabetes
P0578, 100, M, B+, 2021-07-27, Fracture
P0579, 17, F, B-, 2021-12-04, Asthma
P0580, 13, M, B-, 2022-11-27, Asthma
P0581, 29, M, AB-, 2022-04-16, Anxiety
P0582, 61, F, AB+, 2022-11-09, Allergy
P0583, 54, M, B-, 2022-11-10, Hypertension
P0584, 75, M, B+, 2021-09-17, Diabetes
P0585, 9, F, B-, 2022-12-06, Hypertension
P0586, 16, M, B+, 2021-08-15, Fracture
P0587, 71, F, O+, 2022-04-15, Diabetes
P0588, 6, M, B+, 2021-12-21, Hypertension
P0589, 18, F, B-, 2021-12-18, Diabetes
P0590, 82, F, O+, 2022-10-16, Allergy
P0591, 38, M, A-, 2021-05-25, Fracture
P0592, 18, F, B-, 2021-11-22, Asthma
P0593, 70, M, O+, 2022-10-30, Asthma
P0594, 21, F, B-, 2022-11-25, Fracture
P0595, 18, F, B+, 2022-08-23, Flu
P0596, 78, F, O-, 2022-07-06, Diabetes
P0597, 3, M, O+, 2022-12-14, Flu
P0598, 7, F, O-, 2021-09-20, Diabetes
P0599, 92, M, O+, 2021-08-18, Hypertension
P0600, 63, M, A+, 2022-09-25, COVID-19
P0601, 49, F, AB-, 2021-05-04, Flu
P0602, 38, F, AB+, 2023-03-01, Diabetes
P0603, 77, F, B+, 2022-12-08, Allergy
P0604, 11, F, O-, 2022-06-04, Asthma
P0605, 37, M, AB-, 2021-11-19, Anxiety
P0606, 49, M, A-, 2022-08-17, Diabetes
P0607, 79, F, A-, 2021-11-26, Flu
P0608, 95, F, O-, 2022-07-20, Fracture
P0609, 64, F, A+, 2022-09-04, Hypertension
P0610, 12, F, O-, 2022-07-20, Allergy
P0611, 24, M, B+, 2022-07-30, Fracture
P0612, 54, M, AB-, 2021-11-15, Flu
P0613, 49, M, AB+, 2022-07-15, Allergy
P0614, 22, F, A-, 2022-09-12, Anxiety
P0615, 89, F, O+, 2022-08-17, Flu
P0616, 89, M, A+, 2022-09-25, Asthma
P0617, 63, M, O+, 2022-07-19, Diabetes
P0618, 91, F, B-, 2022-12-19, Fracture
P0619, 54, F, A-, 2022-11-29, COVID-19
P0620, 90, F, A+, 2022-12-14, Flu
P0621, 97, F, AB-, 2022-06-21, Asthma
P0622, 61, M, A+, 2021-06-11, Flu
P0623, 41, M, A+, 2022-05-24, Flu
P0624, 81, M, AB-, 2022-10-20, Anxiety
P0625, 13, F, AB+, 2021-08-08, Diabetes
P0626, 29, F, A-, 2022-12-18, Flu
P0627, 65, F, B-, 2022-10-12, Diabetes
P0628, 48, F, A+, 2023-03-10, Anxiety
P0629, 56, F, AB+, 2022-06-23, Anxiety
P0630, 96, M, A-, 2022-12-15, Fracture
P0631, 5, M, AB-, 2022-07-31, Flu
P0632, 76, F, B+, 2023-02-28, Diabetes
P0633, 78, F, A+, 2021-11-16, Diabetes
P0634, 24, F, A+, 2021-09-26, COVID-19
P0635, 6, F, A+, 2022-12-26, Hypertension
P0636, 93, M, B+, 2021-11-16, Anxiety
P0637, 18, M, AB-, 2022-12-08, Asthma
P0638, 10, F, B+, 2021-10-14, Allergy
P0639, 100, F, A+, 2021-05-25, Anxiety
P0640, 75, F, AB-, 2022-01-17, Flu
P0641, 73, F, O-, 2021-11-19, Fracture
P0642, 14, F, O-, 2021-10-22, Flu
P0643, 58, M, AB-, 2021-05-18, Hypertension
P0644, 30, F, A-, 2023-03-06, Allergy
P0645, 18, F, O-, 2021-10-16, Hypertension
P0646, 60, M, B+, 2022-10-28, COVID-19
P0647, 97, F, O-, 2021-11-20, Fracture
P0648, 71, M, B+, 2022-02-18, Asthma
P0649, 40, F, AB-, 2022-10-17, Fracture
P0650, 24, F, O+, 2023-03-11, Hypertension
P0651, 78, M, AB-, 2023-02-21, COVID-19
P0652, 66, M, O-, 2021-08-13, Hypertension
P0653, 17, M, O-, 2022-09-19, Hypertension
P0654, 46, F, O+, 2022-05-01, Anxiety
P0655, 22, F, A+, 2021-11-01, Anxiety
P0656, 19, F, A-, 2022-01-12, Fracture
P0657, 19, M, B-, 2022-02-24, Allergy
P0658, 19, M, O-, 2023-04-01, Diabetes
P0659, 8, F, AB+, 2022-06-14, Diabetes
P0660, 94, M, A+, 2022-10-05, COVID-19
P0661, 86, F, A-, 2022-03-14, Asthma
P0662, 50, M, AB-, 2022-10-20, Fracture
P0663, 71, M, AB+, 2021-11-09, Hypertension
P0664, 4, F, O+, 2022-03-27, COVID-19
P0665, 2, M, B+, 2022-09-10, Hypertension
P0666, 37, M, B+, 2021-12-18, COVID-19
P0667, 14, F, A-, 2021-09-21, Flu
P0668, 29, M, A-, 2021-07-08, Hypertension
P0669, 35, M, AB-, 2022-07-03, Asthma
P0670, 78, F, A-, 2023-03-27, Fracture
P0671, 51, M, A+, 2022-06-21, Flu
P0672, 33, M, B+, 2022-09-29, Hypertension
P0673, 32, M, O-, 2021-07-27, Anxiety
P0674, 98, F, B-, 2021-10-13, Allergy
P0675, 13, M, O+, 2022-10-03, COVID-19
P0676, 64, M, AB-, 2023-01-28, Diabetes
P0677, 82, F, O-, 2021-06-21, Hypertension
P0678, 92, F, O+, 2021-05-16, COVID-19
P0679, 7, F, O+, 2021-07-15, Allergy
P0680, 77, F, B+, 2021-08-22, Hypertension
P0681, 70, F, O-, 2022-05-17, COVID-19
P0682, 11, M, O-, 2022-12-02, Hypertension
P0683, 99, F, O-, 2021-08-10, Fracture
P0684, 80, F, B-, 2022-08-11, Asthma
P0685, 82, M, B-, 2022-08-26, Hypertension
P0686, 87, F, A-, 2021-12-13, Asthma
P0687, 88, F, A-, 2022-04-04, Fracture
P0688, 96, F, O-, 2023-02-05, Asthma
P0689, 25, M, O+, 2022-06-03, Diabetes
P0690, 48, M, A+, 2022-10-14, COVID-19
P0691, 12, M, AB+, 2022-11-17, Flu
P0692, 72, M, B-, 2022-03-23, Asthma
P0693, 7, M, A-, 2021-06-09, Asthma
P0694, 97, M, O-, 2021-09-02, Asthma
P0695, 3, F, AB-, 2022-07-22, Diabetes
P0696, 88, M, A+, 2021-09-10, Hypertension
P0697, 98, F, O+, 2023-03-29, Fracture
P0698, 17, M, AB-, 2022-02-18, Flu
P0699, 37, M, O-, 2023-03-03, Allergy
P0700, 86, M, B+, 2022-01-17, Hypertension
P0701, 32, F, AB-, 2021-07-05, Anxiety
P0702, 96, F, B-, 2022-08-20, Anxiety
P0703, 39, M, O-, 2021-12-14, Flu
P0704, 24, M, B-, 2022-05-01, Flu
P0705, 92, F, O+, 2021-11-22, Hypertension
P0706, 2, F, B-, 2023-03-15, Asthma
P0707, 95, F, O-, 2021-11-03, COVID-19
P0708, 71, F, B-, 2021-07-27, Anxiety
P0709, 5, F, B+, 2021-07-22, Fracture
P0710, 68, M, AB-, 2023-03-29, Allergy
P0711, 89, M, AB-, 2022-03-08, COVID-19
P0712, 51, M, O+, 2021-04-30, Diabetes
P0713, 53, M, AB+, 2021-10-11, Hypertension
P0714, 25, F, B-, 2021-12-17, COVID-19
P0715, 99, F, B+, 2021-11-06, Hypertension
P0716, 79, F, AB+, 2021-12-12, Asthma
P0717, 70, M, A-, 2022-01-01, Anxiety
P0718, 79, M, A-, 2021-05-23, Allergy
P0719, 96, M, AB+, 2021-05-16, Asthma
P0720, 26, M, B-, 2022-10-18, Diabetes
P0721, 66, F, A+, 2022-02-14, Allergy
P0722, 13, F, A+, 2022-11-20, Hypertension
P0723, 89, F, O-, 2021-05-14, COVID-19
P0724, 33, F, A+, 2022-09-11, Flu
P0725, 93, M, AB+, 2022-04-21, Fracture
P0726, 61, M, AB-, 2021-06-01, Asthma
P0727, 100, M, AB+, 2021-10-20, Hypertension
P0728, 32, M, B+, 2022-09-09, Asthma
P0729, 77, M, O+, 2023-02-12, Hypertension
P0730, 16, M, A+, 2021-08-12, Anxiety
P0731, 68, M, O-, 2022-10-08, Diabetes
P0732, 34, F, O-, 2022-12-16, Allergy
P0733, 38, M, A+, 2023-01-01, Anxiety
P0734, 24, F, O-, 2021-11-13, Asthma
P0735, 43, M, A+, 2021-12-24, Fracture
P0736, 91, M, B-, 2021-12-10, Allergy
P0737, 15, F, B-, 2022-04-14, Fracture
P0738, 13, F, A+, 2022-10-08, Allergy
P0739, 59, F, AB-, 2022-04-15, Asthma
P0740, 16, M, AB-, 2021-04-25, Flu
P0741, 61, M, AB+, 2021-05-04, Fracture
P0742, 53, F, A+, 2022-05-02, Allergy
P0743, 86, M, B+, 2021-05-15, Hypertension
P0744, 8, M, O+, 2023-03-27, Hypertension
P0745, 51, F, B-, 2023-01-04, Diabetes
P0746, 24, M, AB-, 2021-07-07, Diabetes
P0747, 31, M, A+, 2021-05-30, COVID-19
P0748, 80, M, AB+, 2022-02-15, Anxiety
P0749, 87, M, A-, 2021-12-17, Diabetes
P0750, 37, F, B-, 2023-03-17, COVID-19
P0751, 60, M, A+, 2023-02-26, Diabetes
P0752, 48, M, O-, 2022-03-04, Flu
P0753, 43, M, O-, 2022-11-16, Hypertension
P0754, 56, F, A+, 2022-05-25, Fracture
P0755, 19, M, A-, 2022-01-30, Anxiety
P0756, 47, F, AB-, 2021-10-10, Anxiety
P0757, 54, M, AB+, 2022-09-04, COVID-19
P0758, 25, F, AB+, 2022-09-26, Hypertension
P0759, 14, F, A-, 2022-06-25, Asthma
P0760, 66, M, AB+, 2021-05-14, Allergy
P0761, 72, M, O-, 2021-06-25, Allergy
P0762, 44, M, A+, 2022-05-19, Hypertension
P0763, 89, M, B-, 2022-02-09, Asthma
P0764, 37, F, A+, 2021-07-03, Fracture
P0765, 7, M, A+, 2023-02-27, Flu
P0766, 95, M, AB+, 2023-02-26, Fracture
P0767, 97, M, A-, 2022-03-06, Diabetes
P0768, 97, M, B-, 2022-11-02, COVID-19
P0769, 12, F, O-, 2022-07-26, Diabetes
P0770, 37, F, A-, 2022-12-07, Flu
P0771, 6, M, A-, 2022-02-25, Anxiety
P0772, 27, M, AB-, 2021-07-17, Diabetes
P0773, 9, F, B+, 2021-07-09, Asthma
P0774, 87, M, AB+, 2022-05-09, Asthma
P0775, 58, M, A-, 2022-05-23, Fracture
P0776, 74, M, A-, 2023-03-19, Fracture
P0777, 21, F, AB-, 2023-03-13, Asthma
P0778, 45, M, AB-, 2022-07-31, Fracture
P0779, 89, M, O+, 2021-05-25, Asthma
P0780, 82, M, AB+, 2021-07-29, Flu
P0781, 37, F, O+, 2021-11-23, Flu
P0782, 97, M, B-, 2021-12-13, Asthma
P0783, 68, F, A+, 2022-10-29, Flu
P0784, 76, F, O+, 2021-07-20, COVID-19
P0785, 44, F, A-, 2022-11-05, Anxiety
P0786, 42, F, B+, 2021-05-03, COVID-19
P0787, 27, F, O+, 2021-05-26, Hypertension
P0788, 7, M, B-, 2023-01-30, Asthma
P0789, 100, F, A+, 2022-08-12, Flu
P0790, 73, F, B-, 2021-08-25, COVID-19
P0791, 25, F, O+, 2021-04-22, Fracture
P0792, 36, M, O+, 2022-05-15, Hypertension
P0793, 96, M, O-, 2022-06-07, Diabetes
P0794, 93, F, A-, 2021-12-20, Anxiety
P0795, 42, F, B-, 2021-09-26, COVID-19
P0796, 70, F, AB+, 2022-08-12, Diabetes
P0797, 94, M, O+, 2023-04-13, Diabetes
P0798, 67, F, B+, 2021-08-30, Asthma
P0799, 88, M, AB-, 2021-06-27, Diabetes
P0800, 32, F, O-, 2023-02-21, Hypertension
P0801, 49, M, O+, 2023-03-21, Fracture
P0802, 15, F, AB-, 2022-02-10, Hypertension
P0803, 8, M, B+, 2022-10-25, Flu
P0804, 90, F, O-, 2022-09-01, COVID-19
P0805, 92, M, O+, 2021-05-08, Diabetes
P0806, 33, M, B+, 2022-06-22, Anxiety
P0807, 100, M, AB-, 2023-02-11, COVID-19
P0808, 37, F, O-, 2022-06-27, Allergy
P0809, 7, M, A+, 2022-11-11, Anxiety
P0810, 72, F, A-, 2021-06-20, Flu
P0811, 53, M, B+, 2022-07-23, Flu
P0812, 44, F, O+, 2022-04-17, Allergy
P0813, 6, M, O-, 2022-07-17, Asthma
P0814, 61, M, A+, 2022-06-30, COVID-19
P0815, 61, M, B+, 2021-07-29, Flu
P0816, 26, F, AB+, 2022-07-21, Hypertension
P0817, 33, M, A+, 2022-09-18, Fracture
P0818, 48, M, O+, 2021-07-03, Hypertension
P0819, 51, F, B+, 2021-11-23, Fracture
P0820, 15, F, A-, 2023-03-19, Fracture
P0821, 56, F, O-, 2022-02-04, Anxiety
P0822, 22, M, AB-, 2022-11-25, Hypertension
P0823, 93, F, AB-, 2022-08-19, Anxiety
P0824, 33, F, O-, 2021-11-03, Asthma
P0825, 71, M, B+, 2021-05-29, Flu
P0826, 87, F, O-, 2021-05-22, COVID-19
P0827, 68, M, B+, 2023-03-16, Diabetes
P0828, 38, M, B-, 2022-06-21, Allergy
P0829, 36, M, B+, 2022-07-31, Flu
P0830, 62, M, O-, 2022-06-21, COVID-19
P0831, 49, M, O-, 2022-10-17, Flu
P0832, 52, F, AB+, 2021-10-12, Allergy
P0833, 71, F, A+, 2023-03-30, Fracture
P0834, 82, F, A+, 2021-06-23, Asthma
P0835, 31, F, O-, 2022-06-12, Flu
P0836, 59, F, A+, 2021-10-05, Anxiety
P0837, 13, M, B-, 2022-01-22, Hypertension
P0838, 1, F, AB+, 2022-01-17, Flu
P0839, 61, M, AB-, 2021-05-09, Asthma
P0840, 37, F, B+, 2021-06-10, Anxiety
P0841, 4, M, O+, 2022-06-07, Allergy
P0842, 33, F, A+, 2022-04-03, COVID-19
P0843, 77, F, O+, 2022-06-22, Asthma
P0844, 44, F, O+, 2021-07-04, Asthma
P0845, 26, F, O-, 2022-12-12, Asthma
P0846, 31, M, O+, 2021-04-30, Hypertension
P0847, 89, F, B-, 2022-09-18, Asthma
P0848, 68, M, AB+, 2022-09-15, Hypertension
P0849, 96, F, O+, 2022-12-14, Anxiety
P0850, 15, F, A-, 2023-03-18, Fracture
P0851, 73, F, B+, 2022-01-22, Asthma
P0852, 26, F, AB+, 2021-11-27, COVID-19
P0853, 90, F, O+, 2022-07-31, Diabetes
P0854, 18, M, B-, 2021-09-16, Allergy
P0855, 24, F, A-, 2022-02-08, Fracture
P0856, 97, F, AB-, 2021-08-05, COVID-19
P0857, 59, M, A+, 2022-11-02, Allergy
P0858, 100, M, O+, 2021-12-09, Anxiety
P0859, 86, M, B+, 2022-05-08, COVID-19
P0860, 22, M, A+, 2022-09-05, Anxiety
P0861, 6, F, B+, 2023-04-19, Flu
P0862, 76, M, AB-, 2022-10-26, COVID-19
P0863, 37, F, AB-, 2022-12-18, Anxiety
P0864, 15, M, AB-, 2023-01-21, Asthma
P0865, 41, M, B-, 2022-03-06, Diabetes
P0866, 83, F, A-, 2021-09-06, Hypertension
P0867, 30, M, AB+, 2021-05-06, Allergy
P0868, 93, F, A+, 2021-05-24, COVID-19
P0869, 87, F, B+, 2021-07-31, Fracture
P0870, 53, M, O+, 2021-12-29, Allergy
P0871, 66, F, B-, 2023-03-13, Anxiety
P0872, 82, F, A-, 2022-03-31, Asthma
P0873, 56, M, B-, 2022-09-30, Allergy
P0874, 3, M, O+, 2022-07-28, Diabetes
P0875, 6, M, A-, 2022-12-05, Hypertension
P0876, 57, F, A-, 2021-05-17, Fracture
P0877, 66, F, B+, 2023-01-09, Diabetes
P0878, 31, M, A-, 2021-08-19, Asthma
P0879, 18, F, O+, 2023-01-12, Anxiety
P0880, 98, M, O+, 2022-09-26, Diabetes
P0881, 39, F, A+, 2021-10-27, Fracture
P0882, 22, F, AB+, 2023-03-16, Anxiety
P0883, 78, M, AB-, 2022-03-16, Asthma
P0884, 6, F, A+, 2021-07-15, Diabetes
P0885, 81, M, A+, 2021-10-22, Fracture
P0886, 77, M, O-, 2021-07-30, Anxiety
P0887, 42, M, B-, 2022-10-15, Hypertension
P0888, 63, F, AB+, 2023-03-12, Asthma
P0889, 47, F, B-, 2022-03-26, Flu
P0890, 83, F, A-, 2021-09-13, Diabetes
P0891, 35, M, A+, 2023-01-14, Asthma
P0892, 99, F, AB+, 2022-06-19, Hypertension
P0893, 64, M, O-, 2022-02-19, Asthma
P0894, 12, F, O+, 2022-03-13, Allergy
P0895, 81, M, AB+, 2022-01-06, Asthma
P0896, 63, F, B+, 2021-05-17, Asthma
P0897, 41, F, A-, 2021-12-10, COVID-19
P0898, 28, M, O+, 2021-09-20, Flu
P0899, 92, F, A+, 2022-06-25, Fracture
P0900, 58, M, B+, 2021-05-02, Diabetes
P0901, 18, M, B-, 2022-12-16, COVID-19
P0902, 52, F, A+, 2022-06-06, Flu
P0903, 23, F, A+, 2022-07-31, Hypertension
P0904, 5, M, B-, 2023-01-01, COVID-19
P0905, 74, M, A-, 2022-01-18, Hypertension
P0906, 56, M, O+, 2023-02-05, Flu
P0907, 83, M, B+, 2022-07-13, Fracture
P0908, 38, F, B+, 2022-11-04, Flu
P0909, 56, F, O-, 2021-05-30, Allergy
P0910, 5, M, A-, 2022-03-23, Diabetes
P0911, 96, F, A+, 2021-09-06, Fracture
P0912, 72, F, O-, 2022-08-29, COVID-19
P0913, 50, M, B-, 2022-11-28, Fracture
P0914, 6, M, B+, 2021-05-27, Diabetes
P0915, 95, F, B-, 2021-07-09, Flu
P0916, 76, M, B-, 2023-03-10, Allergy
P0917, 2, F, B+, 2021-10-11, Anxiety
P0918, 24, M, O-, 2021-08-10, Anxiety
P0919, 62, M, A+, 2022-11-04, Asthma
P0920, 89, M, A-, 2022-11-03, Fracture
P0921, 67, F, O+, 2022-11-05, Anxiety
P0922, 27, M, AB+, 2021-11-04, Hypertension
P0923, 2, F, A+, 2021-08-24, Allergy
P0924, 100, M, B+, 2021-12-17, Diabetes
P0925, 38, M, A+, 2021-07-15, Anxiety
P0926, 83, M, A-, 2021-11-15, Fracture
P0927, 20, F, AB-, 2023-04-01, Asthma
P0928, 59, M, B-, 2022-12-01, Fracture
P0929, 22, M, AB+, 2023-01-28, Fracture
P0930, 14, M, AB-, 2022-02-07, COVID-19
P0931, 79, M, B+, 2021-05-22, Flu
P0932, 83, M, AB+, 2022-10-21, Fracture
P0933, 76, M, O+, 2021-05-27, Asthma
P0934, 22, F, A-, 2023-04-07, Fracture
P0935, 55, F, O+, 2022-04-12, Diabetes
P0936, 3, F, AB-, 2021-06-08, Asthma
P0937, 42, F, AB+, 2021-07-07, Anxiety
P0938, 62, F, O-, 2021-11-20, Hypertension
P0939, 29, M, B-, 2021-06-13, Asthma
P0940, 34, M, O-, 2022-09-25, Fracture
P0941, 31, M, A-, 2021-12-06, Hypertension
P0942, 39, F, O-, 2023-02-19, Hypertension
P0943, 87, F, AB-, 2023-04-14, Anxiety
P0944, 82, M, O-, 2022-08-23, COVID-19
P0945, 87, M, A-, 2021-11-06, Allergy
P0946, 64, M, O-, 2022-08-03, Fracture
P0947, 41, M, A-, 2021-11-18, Allergy
P0948, 79, F, B+, 2022-02-02, Fracture
P0949, 41, F, B-, 2021-07-29, Hypertension
P0950, 50, F, O-, 2021-11-23, Asthma
P0951, 90, M, B-, 2022-11-27, Diabetes
P0952, 90, M, B-, 2023-01-18, Allergy
P0953, 85, F, O-, 2022-07-13, Anxiety
P0954, 63, F, AB+, 2023-04-05, COVID-19
P0955, 56, F, B-, 2022-07-25, Hypertension
P0956, 13, F, B+, 2021-09-26, Diabetes
P0957, 38, F, AB-, 2023-04-18, Diabetes
P0958, 86, M, A-, 2022-09-09, Allergy
P0959, 88, M, B+, 2022-02-21, Flu
P0960, 58, M, A+, 2021-08-30, Hypertension
P0961, 47, M, O+, 2021-09-27, COVID-19
P0962, 35, M, B-, 2021-09-25, Hypertension
P0963, 6, M, B+, 2021-10-28, Hypertension
P0964, 64, F, B+, 2021-12-17, Flu
P0965, 31, F, AB-, 2021-12-02, Fracture
P0966, 19, F, O-, 2022-01-16, Diabetes
P0967, 80, F, O+, 2022-08-19, COVID-19
P0968, 73, M, O-, 2022-04-26, Flu
P0969, 82, F, AB-, 2021-08-18, Diabetes
P0970, 15, F, B-, 2022-03-06, Flu
P0971, 10, M, B+, 2022-01-23, Diabetes
P0972, 66, M, O-, 2022-03-27, Allergy
P0973, 85, F, O+, 2021-09-19, Allergy
P0974, 12, F, B-, 2021-07-27, Flu
P0975, 79, M, O-, 2021-05-22, Hypertension
P0976, 23, F, AB-, 2022-11-23, COVID-19
P0977, 83, F, AB-, 2022-02-07, Hypertension
P0978, 81, F, AB+, 2021-12-04, Fracture
P0979, 36, F, AB+, 2021-12-31, Flu
P0980, 54, F, A+, 2022-06-16, Flu
P0981, 39, F, B-, 2021-12-16, COVID-19
P0982, 44, F, AB-, 2022-09-21, Allergy
P0983, 95, M, A-, 2022-03-10, Diabetes
P0984, 9, M, O+, 2023-02-17, Hypertension
P0985, 96, M, B+, 2022-06-17, Flu
P0986, 93, M, A-, 2022-08-02, COVID-19
P0987, 5, F, B-, 2021-07-14, Fracture
P0988, 73, F, A+, 2022-09-09, Allergy
P0989, 27, F, A+, 2021-07-08, Hypertension
P0990, 36, M, O+, 2022-07-14, Allergy
P0991, 47, F, O-, 2023-03-24, COVID-19
P0992, 5, F, A+, 2022-09-27, Asthma
P0993, 32, M, O-, 2021-09-20, Diabetes
P0994, 59, F, B+, 2022-06-26, Diabetes
P0995, 39, M, B+, 2023-03-26, COVID-19
P0996, 36, F, O-, 2021-04-25, Asthma
P0997, 74, F, A+, 2022-08-02, Allergy
P0998, 89, M, A-, 2021-05-02, Fracture
P0999, 79, M, A+, 2021-08-10, Flu
P1000, 86, F, A-, 2021-10-24, Hypertension