-
Notifications
You must be signed in to change notification settings - Fork 74
/
testing_international.csv
We can't make this file beautiful and searchable because it's too large.
1295 lines (1295 loc) · 728 KB
/
testing_international.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
index,location,date,index,total,new,total_per_thousand,new_mean,new_mean_smoothed_per_thousand,positivity_rate,iso_code,continent,total_cases,new_cases,new_cases_smoothed,total_deaths,new_deaths,new_deaths_smoothed,total_cases_per_million,new_cases_per_million,new_cases_smoothed_per_million,total_deaths_per_million,new_deaths_per_million,new_deaths_smoothed_per_million,reproduction_rate,icu_patients,icu_patients_per_million,hosp_patients,hosp_patients_per_million,weekly_icu_admissions,weekly_icu_admissions_per_million,weekly_hosp_admissions,weekly_hosp_admissions_per_million,total_tests,new_tests,total_tests_per_thousand,new_tests_per_thousand,new_tests_smoothed,new_tests_smoothed_per_thousand,positive_rate,tests_per_case,tests_units,total_vaccinations,people_vaccinated,people_fully_vaccinated,total_boosters,new_vaccinations,new_vaccinations_smoothed,total_vaccinations_per_hundred,people_vaccinated_per_hundred,people_fully_vaccinated_per_hundred,total_boosters_per_hundred,new_vaccinations_smoothed_per_million,new_people_vaccinated_smoothed,new_people_vaccinated_smoothed_per_hundred,stringency_index,population,population_density,median_age,aged_65_older,aged_70_older,gdp_per_capita,extreme_poverty,cardiovasc_death_rate,diabetes_prevalence,female_smokers,male_smokers,handwashing_facilities,hospital_beds_per_thousand,life_expectancy,human_development_index,excess_mortality_cumulative_absolute,excess_mortality_cumulative,excess_mortality,excess_mortality_cumulative_per_million
0,Brunei,2021-02-03,13622,92611.0,,209.74900000000002,,,,BRN,Asia,180.0,0.0,0.5710000000000001,3.0,0.0,0.0,407.671,0.0,1.294,6.795,0.0,0.0,0.69,22.0,1.859,143.0,12.085,,,760.0,65.335,92611.0,126242.0,209.74900000000002,0.59,121418.0,0.5670000000000001,0.0483,20.7,samples tested,41198.0,19389.0,18083.0,3726.0,802024.0,8.0,135.42,63.73,59.44,12.25,263.0,3.0,0.01,35.19,441532.0,81.347,32.4,4.591,2.3819999999999997,71809.25099999999,3.4,201.285,12.79,2.0,30.9,97.164,2.7,75.86,0.838,-16.8,-0.95,-7.41,-38.04933731
1,Brunei,2021-02-04,13623,92895.0,284.0,210.392,,,,BRN,Asia,180.0,0.0,0.0,3.0,0.0,0.0,407.671,0.0,0.0,6.795,0.0,0.0,0.72,22.0,1.859,143.0,12.085,,,760.0,65.335,92895.0,284.0,210.392,0.643,121418.0,0.5670000000000001,0.0483,20.7,samples tested,41198.0,19389.0,18083.0,3726.0,802024.0,8.0,135.42,63.73,59.44,12.25,263.0,3.0,0.01,35.19,441532.0,81.347,32.4,4.591,2.3819999999999997,71809.25099999999,3.4,201.285,12.79,2.0,30.9,97.164,2.7,75.86,0.838,-16.8,-0.95,-7.41,-38.04933731
2,Brunei,2021-02-05,13624,93192.0,297.0,211.065,,,,BRN,Asia,180.0,0.0,0.0,3.0,0.0,0.0,407.671,0.0,0.0,6.795,0.0,0.0,0.76,22.0,1.859,143.0,12.085,,,760.0,65.335,93192.0,297.0,211.065,0.6729999999999999,121418.0,0.5670000000000001,0.0483,20.7,samples tested,41198.0,19389.0,18083.0,3726.0,802024.0,8.0,135.42,63.73,59.44,12.25,263.0,3.0,0.01,35.19,441532.0,81.347,32.4,4.591,2.3819999999999997,71809.25099999999,3.4,201.285,12.79,2.0,30.9,97.164,2.7,75.86,0.838,-16.8,-0.95,-7.41,-38.04933731
3,Marshall Islands,2021-05-21,60176,,,,14.0,0.235,0.0,MHL,Oceania,4.0,0.0,0.0,748.0,0.0,1.143,67.094,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,2792.0,2698.0,46.831,45.255,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
4,Marshall Islands,2021-05-22,60177,,,,14.0,0.235,0.0,MHL,Oceania,4.0,0.0,0.0,748.0,0.0,1.143,67.094,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,2792.0,2698.0,46.831,45.255,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
5,Marshall Islands,2021-05-23,60178,,,,14.0,0.235,0.0,MHL,Oceania,4.0,0.0,0.0,748.0,0.0,1.143,67.094,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,2792.0,2698.0,46.831,45.255,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
6,Marshall Islands,2021-05-24,60179,,,,14.0,0.235,0.0,MHL,Oceania,4.0,0.0,0.0,748.0,0.0,1.143,67.094,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,2792.0,2698.0,46.831,45.255,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
7,Marshall Islands,2021-05-25,60180,,,,14.0,0.235,0.0,MHL,Oceania,4.0,0.0,0.0,748.0,0.0,1.143,67.094,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,2792.0,2698.0,46.831,45.255,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
8,Marshall Islands,2021-05-26,60181,,,,14.0,0.235,0.0,MHL,Oceania,4.0,0.0,0.0,748.0,0.0,1.143,67.094,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,2792.0,2698.0,46.831,45.255,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
9,Marshall Islands,2021-05-27,60182,3184.0,392.0,53.407,14.0,0.235,0.0,MHL,Oceania,4.0,0.0,0.0,748.0,0.0,1.143,67.094,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,3184.0,392.0,53.407,6.575,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
10,Kazakhstan,2021-06-02,49279,11727559.0,42179.0,617.404,49625.0,2.613,0.0307,KAZ,Asia,445762.0,1385.0,1522.5710000000001,7321.0,0.0,24.570999999999998,23467.385,72.914,80.157,385.418,0.0,1.294,0.84,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11727559.0,42179.0,617.404,2.221,49625.0,2.613,0.0307,32.6,tests performed,3241998.0,2145688.0,1096310.0,667902.0,35525.0,33192.0,17.07,11.3,5.77,6.5,1747.0,15701.0,0.083,62.96,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,37454.2,19.84,26.61,1971.796937
11,Kazakhstan,2021-06-03,49280,11770665.0,43106.0,619.673,34556.0,1.819,0.0428,KAZ,Asia,447275.0,1513.0,1477.714,7321.0,0.0,24.570999999999998,23547.037999999997,79.653,77.795,385.418,0.0,1.294,0.84,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11770665.0,43106.0,619.673,2.269,34556.0,1.819,0.0428,23.4,tests performed,3276918.0,2158946.0,1117972.0,667902.0,34920.0,25568.0,17.25,11.37,5.89,6.5,1346.0,11729.0,0.062,62.96,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,37454.2,19.84,26.61,1971.796937
12,Kazakhstan,2021-06-04,49281,11815815.0,45150.0,622.05,34400.0,1.811,0.0414,KAZ,Asia,448578.0,1303.0,1422.714,7321.0,0.0,24.570999999999998,23615.635,68.597,74.9,385.418,0.0,1.294,0.84,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11815815.0,45150.0,622.05,2.377,34400.0,1.811,0.0414,24.2,tests performed,3323620.0,2181389.0,1142231.0,667902.0,46702.0,29167.0,17.5,11.48,6.01,6.5,1536.0,13390.0,0.07,62.96,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,37454.2,19.84,26.61,1971.796937
13,Kazakhstan,2021-06-05,49282,11847598.0,31783.0,623.7230000000001,37849.0,1.993,0.0421,KAZ,Asia,449858.0,1280.0,1591.8570000000002,7321.0,0.0,24.570999999999998,23683.022,67.38600000000001,83.804,385.418,0.0,1.294,0.84,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11847598.0,31783.0,623.7230000000001,1.673,37849.0,1.993,0.0421,23.8,tests performed,3375005.0,2208974.0,1166031.0,667902.0,51385.0,33435.0,17.77,11.63,6.14,6.5,1760.0,15785.0,0.083,62.96,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,37454.2,19.84,26.61,1971.796937
14,Kazakhstan,2021-06-06,49283,11867284.0,19686.0,624.76,39569.0,2.083,0.0328,KAZ,Asia,450868.0,1010.0,1299.143,7465.0,144.0,20.570999999999998,23736.194,53.172,68.39399999999999,392.999,7.581,1.083,0.84,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11867284.0,19686.0,624.76,1.036,39569.0,2.083,0.0328,30.5,tests performed,3409522.0,2230018.0,1179504.0,667902.0,34517.0,36289.0,17.95,11.74,6.21,6.5,1910.0,17674.0,0.09300000000000001,62.96,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,37454.2,19.84,26.61,1971.796937
15,Kazakhstan,2021-06-07,49284,11912339.0,45055.0,627.132,39080.0,2.057,0.0318,KAZ,Asia,451641.0,773.0,1243.714,7465.0,0.0,20.570999999999998,23776.889,40.695,65.476,392.999,0.0,1.083,0.85,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11912339.0,45055.0,627.132,2.372,39080.0,2.057,0.0318,31.4,tests performed,3435240.0,2247776.0,1187464.0,667902.0,25718.0,37887.0,18.09,11.83,6.25,6.5,1995.0,19095.0,0.10099999999999999,62.96,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,37454.2,19.84,26.61,1971.796937
16,Kazakhstan,2021-06-08,49285,11965068.0,52729.0,629.908,39955.0,2.103,0.03,KAZ,Asia,452760.0,1119.0,1197.5710000000001,7465.0,0.0,20.570999999999998,23835.799,58.91,63.047,392.999,0.0,1.083,0.86,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11965068.0,52729.0,629.908,2.7760000000000002,39955.0,2.103,0.03,33.4,tests performed,3498939.0,2285898.0,1213041.0,667902.0,63699.0,41781.0,18.42,12.03,6.39,6.5,2200.0,22054.0,0.11599999999999999,62.96,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,37454.2,19.84,26.61,1971.796937
17,Lebanon,2021-06-17,52534,,,,12027.0,1.777,,LBN,Asia,543099.0,165.0,165.571,7811.0,3.0,4.428999999999999,80231.48,24.375,24.46,1153.911,0.44299999999999995,0.654,0.92,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4599186.0,14038.0,679.433,2.074,12027.0,1.777,0.1238,8.1,tests performed,1111588.0,747426.0,364162.0,528276.0,50138.0,23232.0,16.42,11.04,5.38,28.3,3432.0,16221.0,0.24,71.3,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,11110.2,30.43,16.97,1641.298887
18,Lebanon,2021-06-18,52535,,,,11936.0,1.7630000000000001,,LBN,Asia,543267.0,168.0,127.429,7815.0,4.0,3.571,80256.298,24.818,18.825,1154.502,0.591,0.528,0.93,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4599186.0,14038.0,679.433,2.074,11936.0,1.7630000000000001,0.1238,8.1,tests performed,1126981.0,758974.0,368007.0,528276.0,15393.0,23394.0,16.65,11.21,5.44,28.3,3456.0,16061.0,0.237,71.3,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,11110.2,30.43,16.97,1641.298887
19,Lebanon,2021-06-19,52536,,,,12853.0,1.899,,LBN,Asia,543371.0,104.0,142.286,7819.0,4.0,4.143,80271.662,15.364,21.02,1155.093,0.591,0.612,0.94,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4599186.0,14038.0,679.433,2.074,12853.0,1.899,0.1238,8.1,tests performed,1128719.0,760592.0,368127.0,528276.0,1738.0,20486.0,16.67,11.24,5.44,28.3,3026.0,13182.0,0.195,71.3,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,11110.2,30.43,16.97,1641.298887
20,Lebanon,2021-06-20,52537,,,,13770.0,2.0340000000000003,,LBN,Asia,543505.0,134.0,161.429,7822.0,3.0,4.571000000000001,80291.458,19.796,23.848000000000003,1155.536,0.44299999999999995,0.675,0.95,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4599186.0,14038.0,679.433,2.074,13770.0,2.0340000000000003,0.1238,8.1,tests performed,1130669.0,761818.0,368851.0,528276.0,1950.0,17115.0,16.7,11.25,5.45,28.3,2528.0,10330.0,0.153,71.3,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,11110.2,30.43,16.97,1641.298887
21,Lebanon,2021-06-21,52538,,,,14688.0,2.17,,LBN,Asia,543551.0,46.0,128.857,7825.0,3.0,3.429,80298.253,6.796,19.035999999999998,1155.98,0.44299999999999995,0.506,0.97,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4599186.0,14038.0,679.433,2.074,14688.0,2.17,0.1238,8.1,tests performed,1130669.0,761818.0,368851.0,528276.0,1950.0,16282.0,16.7,11.25,5.45,28.3,2405.0,10174.0,0.15,65.74,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,11110.2,30.43,16.97,1641.298887
22,Lebanon,2021-06-22,52539,,,,14688.0,2.17,,LBN,Asia,543698.0,147.0,125.571,7829.0,4.0,3.571,80319.969,21.715999999999998,18.551,1156.57,0.591,0.528,0.98,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4599186.0,14038.0,679.433,2.074,14688.0,2.17,0.1238,8.1,tests performed,1130669.0,761818.0,368851.0,528276.0,1950.0,14584.0,16.7,11.25,5.45,28.3,2154.0,9609.0,0.142,65.74,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,11110.2,30.43,16.97,1641.298887
23,Lebanon,2021-06-23,52540,4731376.0,,698.962,14688.0,2.17,,LBN,Asia,543865.0,167.0,133.0,7832.0,3.0,3.429,80344.64,24.671,19.648,1157.014,0.44299999999999995,0.506,1.0,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4731376.0,14038.0,698.962,2.074,14688.0,2.17,0.1238,8.1,tests performed,1175505.0,794834.0,380671.0,528276.0,1950.0,16294.0,17.37,11.74,5.62,28.3,2407.0,10948.0,0.162,65.74,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,11110.2,30.43,16.97,1641.298887
24,Cuba,2021-06-28,22340,5078499.0,30945.0,448.73,32328.0,2.8560000000000003,0.0688,CUB,North America,184943.0,2589.0,2225.429,1253.0,12.0,11.857000000000001,16341.333,228.761,196.636,110.714,1.06,1.048,1.41,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5078499.0,30945.0,448.73,2.734,32328.0,2.8560000000000003,0.0688,14.5,tests performed,5848491.0,2742615.0,1088898.0,594785.0,172170.0,124153.0,51.68,24.23,9.62,14.57,10970.0,66423.0,0.5870000000000001,65.28,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,7446.5,4.68,14.34,657.9634474
25,Aruba,2021-06-29,3805,365.0,365.0,3.405,,,,ABW,North America,11135.0,3.0,2.714,107.0,0.0,0.0,103876.114,27.986,25.320999999999998,998.181,0.0,0.0,-0.01,372.0,8.157,,,,,,,365.0,365.0,3.405,3.405,1467.0,0.494,0.003,333.3,tests performed,126387.0,67610.0,58777.0,40725.0,512.0,294.0,117.9,63.07,54.83,1.37,2743.0,87.0,0.081,33.33,107195.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,169.3,17.41,12.56,1579.364709
26,Cuba,2021-06-29,22341,5113084.0,34585.0,451.786,32917.0,2.909,0.0745,CUB,North America,188023.0,3080.0,2452.714,1270.0,17.0,12.857000000000001,16613.478,272.145,216.71900000000002,112.21600000000001,1.5019999999999998,1.136,1.41,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5113084.0,34585.0,451.786,3.056,32917.0,2.909,0.0745,13.4,tests performed,5988743.0,2758893.0,1169638.0,594785.0,140252.0,124974.0,52.92,24.38,10.33,14.57,11043.0,55235.0,0.488,65.28,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,7446.5,4.68,14.34,657.9634474
27,Cuba,2021-06-30,22342,5149286.0,36202.0,454.98400000000004,33307.0,2.943,0.0776,CUB,North America,190993.0,2970.0,2583.429,1284.0,14.0,13.0,16875.903000000002,262.425,228.269,113.45299999999999,1.237,1.149,1.39,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5149286.0,36202.0,454.98400000000004,3.199,33307.0,2.943,0.0776,12.9,tests performed,6132569.0,2774473.0,1252751.0,594785.0,143826.0,128950.0,54.19,24.51,11.07,14.57,11394.0,43885.0,0.38799999999999996,65.28,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,8691.2,5.16,13.25,767.9435861000001
28,Aruba,2021-06-30,3806,793.0,428.0,7.398,,,,ABW,North America,11138.0,3.0,2.8569999999999998,107.0,0.0,0.0,103904.1,27.986,26.654,998.181,0.0,0.0,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,127256.0,67827.0,59429.0,40725.0,869.0,343.0,118.71,63.27,55.44,1.37,3200.0,100.0,0.09300000000000001,33.33,107195.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,163.2,15.94,-11.94,1522.4590699999999
29,Cuba,2021-07-01,22343,5185286.0,36000.0,458.165,33824.0,2.989,0.0809,CUB,North America,193945.0,2952.0,2736.571,1302.0,18.0,13.286,17136.738,260.835,241.8,115.04299999999999,1.59,1.1740000000000002,1.37,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5185286.0,36000.0,458.165,3.181,33824.0,2.989,0.0809,12.4,tests performed,6394334.0,2797599.0,1450900.0,594785.0,261765.0,152292.0,56.5,24.72,12.82,14.57,13456.0,34905.0,0.308,65.28,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,8691.2,5.16,13.25,767.9435861000001
30,Cuba,2021-07-02,22344,5220135.0,34849.0,461.245,33859.0,2.992,0.0844,CUB,North America,197253.0,3308.0,2857.143,1322.0,20.0,14.714,17429.029,292.291,252.454,116.81,1.767,1.3,1.35,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5220135.0,34849.0,461.245,3.0789999999999997,33859.0,2.992,0.0844,11.9,tests performed,6572661.0,2832316.0,1559993.0,594785.0,178327.0,154329.0,58.08,25.03,13.78,14.57,13636.0,28271.0,0.25,65.28,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,8691.2,5.16,13.25,767.9435861000001
31,Cuba,2021-07-03,22345,5257936.0,37801.0,464.585,34404.0,3.04,0.0875,CUB,North America,200728.0,3475.0,3010.2859999999996,1337.0,15.0,15.142999999999999,17736.076,307.047,265.985,118.13600000000001,1.325,1.338,1.34,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5257936.0,37801.0,464.585,3.34,34404.0,3.04,0.0875,11.4,tests performed,6675818.0,2869501.0,1609454.0,594785.0,103157.0,154942.0,58.99,25.35,14.22,14.57,13690.0,25763.0,0.228,65.28,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,8691.2,5.16,13.25,767.9435861000001
32,Cuba,2021-07-04,22346,5296762.0,38826.0,468.015,35601.0,3.1460000000000004,0.0879,CUB,North America,204247.0,3519.0,3127.571,1351.0,14.0,15.714,18047.01,310.934,276.348,119.37299999999999,1.237,1.3880000000000001,1.33,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5296762.0,38826.0,468.015,3.431,35601.0,3.1460000000000004,0.0879,11.4,tests performed,6718887.0,2897404.0,1624481.0,594785.0,43069.0,148938.0,59.37,25.6,14.35,14.57,13160.0,28732.0,0.254,65.28,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,8691.2,5.16,13.25,767.9435861000001
33,Antigua and Barbuda,2021-07-07,2064,,,,26.0,0.263,0.011000000000000001,ATG,North America,1265.0,0.0,0.28600000000000003,42.0,0.0,0.0,12812.981000000002,0.0,2.8939999999999997,425.411,0.0,0.0,0.46,0.0,0.0,,,,,,,13613.0,1459.0,137.884,0.043,26.0,0.263,0.011000000000000001,90.9,tests performed,64823.0,36749.0,28074.0,2930.0,1686.0,104.0,65.66,37.22,28.44,19.37,1053.0,40.0,0.040999999999999995,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-67.8,-7.09,-26.14,-686.7352727000001
34,Antigua and Barbuda,2021-07-08,2065,,,,26.0,0.263,0.011000000000000001,ATG,North America,1266.0,1.0,0.28600000000000003,42.0,0.0,0.0,12823.11,10.129,2.8939999999999997,425.411,0.0,0.0,0.48,0.0,0.0,,,,,,,13613.0,1459.0,137.884,0.043,26.0,0.263,0.011000000000000001,90.9,tests performed,65077.0,36826.0,28251.0,2930.0,1686.0,89.0,65.92,37.3,28.61,19.37,901.0,35.0,0.035,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-67.8,-7.09,-26.14,-686.7352727000001
35,Antigua and Barbuda,2021-07-09,2066,,,,26.0,0.263,0.011000000000000001,ATG,North America,1266.0,0.0,0.28600000000000003,42.0,0.0,0.0,12823.11,0.0,2.8939999999999997,425.411,0.0,0.0,0.51,0.0,0.0,,,,,,,13613.0,1459.0,137.884,0.043,26.0,0.263,0.011000000000000001,90.9,tests performed,65337.0,36908.0,28429.0,2930.0,260.0,115.0,66.18,37.38,28.8,19.37,1165.0,41.0,0.042,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-67.8,-7.09,-26.14,-686.7352727000001
36,Antigua and Barbuda,2021-07-10,2067,,,,26.0,0.263,0.011000000000000001,ATG,North America,1266.0,0.0,0.28600000000000003,42.0,0.0,0.0,12823.11,0.0,2.8939999999999997,425.411,0.0,0.0,0.53,0.0,0.0,,,,,,,13613.0,1459.0,137.884,0.043,26.0,0.263,0.011000000000000001,90.9,tests performed,65337.0,36908.0,28429.0,2930.0,260.0,114.0,66.18,37.38,28.8,19.37,1155.0,41.0,0.042,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-67.8,-7.09,-26.14,-686.7352727000001
37,Antigua and Barbuda,2021-07-11,2068,,,,26.0,0.263,0.011000000000000001,ATG,North America,1266.0,0.0,0.28600000000000003,42.0,0.0,0.0,12823.11,0.0,2.8939999999999997,425.411,0.0,0.0,0.56,0.0,0.0,,,,,,,13613.0,1459.0,137.884,0.043,26.0,0.263,0.011000000000000001,90.9,tests performed,65337.0,36908.0,28429.0,2930.0,260.0,114.0,66.18,37.38,28.8,19.37,1155.0,41.0,0.042,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-67.8,-7.09,-26.14,-686.7352727000001
38,Antigua and Barbuda,2021-07-12,2069,,,,26.0,0.263,0.011000000000000001,ATG,North America,1266.0,0.0,0.28600000000000003,42.0,0.0,0.0,12823.11,0.0,2.8939999999999997,425.411,0.0,0.0,0.59,0.0,0.0,,,,,,,13613.0,1459.0,137.884,0.043,26.0,0.263,0.011000000000000001,90.9,tests performed,65337.0,36908.0,28429.0,2930.0,260.0,117.0,66.18,37.38,28.8,19.37,1185.0,41.0,0.042,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-67.8,-7.09,-26.14,-686.7352727000001
39,Antigua and Barbuda,2021-07-13,2070,16700.0,,169.15200000000002,26.0,0.263,0.0055,ATG,North America,1266.0,0.0,0.14300000000000002,42.0,0.0,0.0,12823.11,0.0,1.4469999999999998,425.411,0.0,0.0,0.62,0.0,0.0,,,,,,,16700.0,1459.0,169.15200000000002,0.043,26.0,0.263,0.0055,181.8,tests performed,65656.0,37045.0,28611.0,2930.0,260.0,119.0,66.5,37.52,28.98,19.37,1205.0,42.0,0.043,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-67.8,-7.09,-26.14,-686.7352727000001
40,Anguilla,2021-11-02,1775,,,,169.0,11.174000000000001,0.0719,AIA,North America,944.0,0.0,12.142999999999999,1.0,0.0,0.0,62413.223,0.0,802.834,66.116,0.0,0.0,0.01,0.0,0.0,,,,,,,31656.0,1459.0,2092.959,0.043,169.0,11.174000000000001,0.0719,13.9,tests performed,18705.0,9548.0,9156.0,737233.0,1421.0,0.0,123.67,63.13,60.54,2.17,0.0,0.0,0.0,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
41,Anguilla,2021-11-03,1776,,,,169.0,11.174000000000001,0.1057,AIA,North America,984.0,40.0,17.857,1.0,0.0,0.0,65057.850999999995,2644.6279999999997,1180.638,66.116,0.0,0.0,0.01,0.0,0.0,,,,,,,31656.0,1459.0,2092.959,0.043,169.0,11.174000000000001,0.1057,9.5,tests performed,18705.0,9548.0,9156.0,737233.0,1421.0,0.0,123.67,63.13,60.54,2.17,0.0,0.0,0.0,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
42,Anguilla,2021-11-04,1777,,,,169.0,11.174000000000001,0.1074,AIA,North America,1019.0,35.0,18.143,1.0,0.0,0.0,67371.901,2314.05,1199.528,66.116,0.0,0.0,0.01,0.0,0.0,,,,,,,31656.0,1459.0,2092.959,0.043,169.0,11.174000000000001,0.1074,9.3,tests performed,18705.0,9548.0,9156.0,737233.0,1421.0,0.0,123.67,63.13,60.54,2.17,0.0,0.0,0.0,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
43,Anguilla,2021-11-05,1778,,,,169.0,11.174000000000001,0.1074,AIA,North America,1019.0,0.0,18.143,1.0,0.0,0.0,67371.901,0.0,1199.528,66.116,0.0,0.0,0.01,0.0,0.0,,,,,,,31656.0,1459.0,2092.959,0.043,169.0,11.174000000000001,0.1074,9.3,tests performed,18706.0,9548.0,9156.0,737233.0,1421.0,0.0,123.68,63.13,60.54,2.17,0.0,0.0,0.0,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
44,Anguilla,2021-11-06,1779,,,,169.0,11.174000000000001,0.0803,AIA,North America,1039.0,20.0,13.571,1.0,0.0,0.0,68694.215,1322.3139999999999,897.285,66.116,0.0,0.0,0.01,0.0,0.0,,,,,,,31656.0,1459.0,2092.959,0.043,169.0,11.174000000000001,0.0803,12.5,tests performed,18706.0,9548.0,9156.0,737233.0,1421.0,2.0,123.68,63.13,60.54,2.17,132.0,2.0,0.013000000000000001,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
45,Anguilla,2021-11-07,1780,,,,169.0,11.174000000000001,0.0803,AIA,North America,1039.0,0.0,13.571,1.0,0.0,0.0,68694.215,0.0,897.285,66.116,0.0,0.0,0.01,0.0,0.0,,,,,,,31656.0,1459.0,2092.959,0.043,169.0,11.174000000000001,0.0803,12.5,tests performed,18706.0,9548.0,9156.0,737233.0,1421.0,3.0,123.68,63.13,60.54,2.17,198.0,3.0,0.02,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
46,Anguilla,2021-11-08,1781,51382.0,,3397.157,169.0,11.174000000000001,0.0803,AIA,North America,1039.0,0.0,13.571,1.0,0.0,0.0,68694.215,0.0,897.285,66.116,0.0,0.0,0.01,0.0,0.0,,,,,,,51382.0,1459.0,3397.157,0.043,169.0,11.174000000000001,0.0803,12.5,tests performed,18706.0,9548.0,9156.0,737233.0,1421.0,5.0,123.68,63.13,60.54,2.17,331.0,5.0,0.033,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
47,Northern Mariana Islands,2021-11-28,71987,58985.0,39.0,1018.563,55.0,0.95,0.799,MNP,Oceania,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,58985.0,39.0,1018.563,0.6729999999999999,55.0,0.95,0.799,1.3,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
48,Northern Mariana Islands,2021-11-29,71988,59035.0,50.0,1019.427,48.0,0.8290000000000001,0.7559999999999999,MNP,Oceania,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59035.0,50.0,1019.427,0.863,48.0,0.8290000000000001,0.7559999999999999,1.3,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
49,Northern Mariana Islands,2021-11-30,71989,59086.0,51.0,1020.307,49.0,0.846,0.789,MNP,Oceania,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59086.0,51.0,1020.307,0.8809999999999999,49.0,0.846,0.789,1.3,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
50,Northern Mariana Islands,2021-12-01,71990,59093.0,7.0,1020.428,46.0,0.794,0.831,MNP,Oceania,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59093.0,7.0,1020.428,0.121,46.0,0.794,0.831,1.2,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
51,Northern Mariana Islands,2021-12-02,71991,59099.0,6.0,1020.5319999999999,37.0,0.639,0.805,MNP,Oceania,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59099.0,6.0,1020.5319999999999,0.10400000000000001,37.0,0.639,0.805,1.2,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
52,Northern Mariana Islands,2021-12-03,71992,59103.0,4.0,1020.6010000000001,28.0,0.484,0.746,MNP,Oceania,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59103.0,4.0,1020.6010000000001,0.069,28.0,0.484,0.746,1.3,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
53,Northern Mariana Islands,2021-12-04,71993,59110.0,7.0,1020.722,23.0,0.397,0.701,MNP,Oceania,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59110.0,7.0,1020.722,0.121,23.0,0.397,0.701,1.4,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
54,Bosnia and Herzegovina,2021-12-30,12153,1479046.0,4261.0,453.214,2838.0,0.87,0.1852,BIH,Europe,290471.0,795.0,525.571,13428.0,31.0,26.429000000000002,89007.09300000001,243.607,161.047,4114.653,9.499,8.097999999999999,1.33,22.0,1.859,143.0,12.085,,,760.0,65.335,1479046.0,4261.0,453.214,1.306,2838.0,0.87,0.1852,5.4,tests performed,1553874.0,882641.0,720631.0,22572.0,66884.0,4315.0,47.61,27.05,22.08,0.69,1322.0,1020.0,0.031,35.19,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,17518.3,25.34,58.23,5368.015961
55,Bosnia and Herzegovina,2021-12-31,12154,1483234.0,4188.0,454.49800000000005,3089.0,0.9470000000000001,0.1867,BIH,Europe,291313.0,842.0,576.714,13442.0,14.0,24.714000000000002,89265.102,258.008,176.71900000000002,4118.943,4.29,7.5729999999999995,1.37,22.0,1.859,143.0,12.085,,,760.0,65.335,1483234.0,4188.0,454.49800000000005,1.2830000000000001,3089.0,0.9470000000000001,0.1867,5.4,tests performed,1553874.0,882641.0,720631.0,22572.0,66884.0,4315.0,47.61,27.05,22.08,0.69,1322.0,1020.0,0.031,35.19,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,19123.2,26.49,52.62,5859.794776
56,Bosnia and Herzegovina,2022-01-01,12155,,,,3289.0,1.008,0.1753,BIH,Europe,291313.0,0.0,576.714,13442.0,0.0,24.714000000000002,89265.102,0.0,176.71900000000002,4118.943,0.0,7.5729999999999995,1.4,22.0,1.859,143.0,12.085,,,760.0,65.335,1483234.0,4188.0,454.49800000000005,1.2830000000000001,3289.0,1.008,0.1753,5.7,tests performed,1553874.0,882641.0,720631.0,22572.0,66884.0,4315.0,47.61,27.05,22.08,0.69,1322.0,1020.0,0.031,35.19,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,19123.2,26.49,52.62,5859.794776
57,Bosnia and Herzegovina,2022-01-02,12156,,,,3488.0,1.069,0.1653,BIH,Europe,291313.0,0.0,576.714,13442.0,0.0,24.714000000000002,89265.102,0.0,176.71900000000002,4118.943,0.0,7.5729999999999995,1.44,22.0,1.859,143.0,12.085,,,760.0,65.335,1483234.0,4188.0,454.49800000000005,1.2830000000000001,3488.0,1.069,0.1653,6.0,tests performed,1553874.0,882641.0,720631.0,22572.0,66884.0,4315.0,47.61,27.05,22.08,0.69,1322.0,1020.0,0.031,35.19,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,19123.2,26.49,52.62,5859.794776
58,Bosnia and Herzegovina,2022-01-03,12157,,,,3688.0,1.13,0.1234,BIH,Europe,291313.0,0.0,455.0,13442.0,0.0,16.714000000000002,89265.102,0.0,139.423,4118.943,0.0,5.122000000000001,1.47,22.0,1.859,143.0,12.085,,,760.0,65.335,1483234.0,4188.0,454.49800000000005,1.2830000000000001,3688.0,1.13,0.1234,8.1,tests performed,1553874.0,882641.0,720631.0,22572.0,66884.0,4315.0,47.61,27.05,22.08,0.69,1322.0,1020.0,0.031,35.19,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,19123.2,26.49,52.62,5859.794776
59,Liechtenstein,2022-01-04,54074,89344.0,254.0,2335.547,198.0,5.176,0.29100000000000004,LIE,Europe,6348.0,112.0,41.286,71.0,0.0,0.28600000000000003,165943.43099999998,2927.798,1079.252,1856.015,0.0,7.468999999999999,1.22,1.0,0.536,294.0,157.477,10.0,5.282,10.0,256.04900000000004,89344.0,254.0,2335.547,6.64,198.0,5.176,0.29100000000000004,3.4,tests performed,64101.0,26224.0,25672.0,13128.0,534.0,156.0,167.57,68.55,67.11,34.32,4078.0,10.0,0.026000000000000002,54.63,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
60,Bosnia and Herzegovina,2022-01-04,12158,,,,3556.0,1.09,0.1932,BIH,Europe,293684.0,2371.0,686.857,13517.0,75.0,21.714000000000002,89991.632,726.53,210.46900000000002,4141.924,22.982,6.654,1.55,22.0,1.859,143.0,12.085,,,760.0,65.335,1483234.0,4188.0,454.49800000000005,1.2830000000000001,3556.0,1.09,0.1932,5.2,tests performed,1553874.0,882641.0,720631.0,22572.0,66884.0,4315.0,47.61,27.05,22.08,0.69,1322.0,1020.0,0.031,44.44,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,19123.2,26.49,52.62,5859.794776
61,Bosnia and Herzegovina,2022-01-05,12159,1499302.0,,459.421,3502.0,1.073,0.22699999999999998,BIH,Europe,295240.0,1556.0,794.857,13547.0,30.0,21.429000000000002,90468.42599999999,476.795,243.563,4151.117,9.193,6.566,1.58,22.0,1.859,143.0,12.085,,,760.0,65.335,1499302.0,4188.0,459.421,1.2830000000000001,3502.0,1.073,0.22699999999999998,4.4,tests performed,1553874.0,882641.0,720631.0,22572.0,66884.0,4315.0,47.61,27.05,22.08,0.69,1322.0,1020.0,0.031,44.44,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,19123.2,26.49,52.62,5859.794776
62,Liechtenstein,2022-01-05,54075,89599.0,255.0,2342.2129999999997,201.0,5.254,0.319,LIE,Europe,6406.0,58.0,39.286,71.0,0.0,0.28600000000000003,167459.612,1516.181,1026.97,1856.015,0.0,7.468999999999999,1.23,1.0,0.536,294.0,157.477,10.0,5.282,10.0,256.04900000000004,89599.0,255.0,2342.2129999999997,6.666,201.0,5.254,0.319,3.1,tests performed,64619.0,26230.0,25690.0,13626.0,518.0,230.0,168.92,68.57,67.16,35.62,6012.0,10.0,0.026000000000000002,54.63,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
63,Liechtenstein,2022-01-06,54076,89816.0,217.0,2347.885,202.0,5.28,0.316,LIE,Europe,6483.0,77.0,50.286,71.0,0.0,0.28600000000000003,169472.473,2012.861,1314.5220000000002,1856.015,0.0,7.468999999999999,1.24,1.0,0.536,294.0,157.477,10.0,5.282,10.0,256.04900000000004,89816.0,217.0,2347.885,5.672999999999999,202.0,5.28,0.316,3.2,tests performed,64619.0,26232.0,25692.0,13629.0,0.0,230.0,168.92,68.57,67.16,35.63,6012.0,11.0,0.028999999999999998,54.63,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
64,Liechtenstein,2022-01-07,54077,90010.0,194.0,2352.9570000000003,207.0,5.4110000000000005,0.32299999999999995,LIE,Europe,6597.0,114.0,66.571,71.0,0.0,0.28600000000000003,172452.55399999997,2980.0809999999997,1740.2479999999998,1856.015,0.0,7.468999999999999,1.25,1.0,0.536,294.0,157.477,10.0,5.282,10.0,256.04900000000004,90010.0,194.0,2352.9570000000003,5.071000000000001,207.0,5.4110000000000005,0.32299999999999995,3.1,tests performed,64657.0,26236.0,25704.0,13649.0,38.0,215.0,169.02,68.58,67.19,35.68,5620.0,10.0,0.026000000000000002,54.63,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
65,Liechtenstein,2022-01-08,54078,90205.0,195.0,2358.054,216.0,5.646,0.336,LIE,Europe,6597.0,0.0,61.428999999999995,71.0,0.0,0.28600000000000003,172452.55399999997,0.0,1605.808,1856.015,0.0,7.468999999999999,1.24,1.0,0.536,294.0,157.477,10.0,5.282,10.0,256.04900000000004,90205.0,195.0,2358.054,5.098,216.0,5.646,0.336,3.0,tests performed,64805.0,26384.0,25705.0,13649.0,148.0,217.0,169.41,68.97,67.2,35.68,5673.0,29.0,0.076,54.63,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
66,Liechtenstein,2022-01-09,54079,90384.0,179.0,2362.7329999999997,217.0,5.672999999999999,0.34600000000000003,LIE,Europe,6658.0,61.0,64.286,71.0,0.0,0.28600000000000003,174047.158,1594.604,1680.497,1856.015,0.0,7.468999999999999,1.25,1.0,0.536,294.0,157.477,10.0,5.282,5.0,128.025,90384.0,179.0,2362.7329999999997,4.678999999999999,217.0,5.672999999999999,0.34600000000000003,2.9,tests performed,64805.0,26384.0,25705.0,13649.0,148.0,233.0,169.41,68.97,67.2,35.68,6091.0,28.0,0.073,54.63,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
67,Liechtenstein,2022-01-10,54080,90632.0,248.0,2369.216,220.0,5.751,0.344,LIE,Europe,6716.0,58.0,68.571,71.0,0.0,0.0,175563.34,1516.181,1792.53,1856.015,0.0,0.0,1.24,1.0,0.536,294.0,157.477,10.0,5.282,5.0,128.025,90632.0,248.0,2369.216,6.483,220.0,5.751,0.344,2.9,tests performed,65319.0,26392.0,25741.0,14117.0,148.0,250.0,170.75,68.99,67.29,36.9,6535.0,27.0,0.071,47.22,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
68,Guyana,2022-01-15,38432,,,,2771.0,3.5060000000000002,0.3029,GUY,South America,50121.0,1065.0,839.429,1086.0,5.0,2.714,63417.893,1347.54,1062.125,1374.111,6.3260000000000005,3.4339999999999997,1.4,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,387266.0,390.0,490.006,0.19399999999999998,2771.0,3.5060000000000002,0.3029,3.3,tests performed,744876.0,416994.0,303373.0,24509.0,1523.0,2015.0,94.25,52.76,38.39,3.1,2550.0,441.0,0.055999999999999994,77.78,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
69,Guyana,2022-01-16,38433,,,,2771.0,3.5060000000000002,0.3248,GUY,South America,51203.0,1082.0,900.143,1095.0,9.0,3.571,64786.943,1369.05,1138.947,1385.499,11.388,4.519,1.35,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,387266.0,390.0,490.006,0.19399999999999998,2771.0,3.5060000000000002,0.3248,3.1,tests performed,744876.0,416994.0,303373.0,24509.0,1523.0,1978.0,94.25,52.76,38.39,3.1,2503.0,428.0,0.054000000000000006,77.78,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
70,Guyana,2022-01-17,38434,,,,2771.0,3.5060000000000002,0.3482,GUY,South America,52095.0,892.0,965.0,1096.0,1.0,3.714,65915.587,1128.644,1221.01,1386.764,1.265,4.7,1.29,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,387266.0,390.0,490.006,0.19399999999999998,2771.0,3.5060000000000002,0.3482,2.9,tests performed,744876.0,416994.0,303373.0,24509.0,1523.0,1942.0,94.25,52.76,38.39,3.1,2457.0,414.0,0.052000000000000005,77.78,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
71,Guyana,2022-01-18,38435,,,,2771.0,3.5060000000000002,0.3698,GUY,South America,53178.0,1083.0,1024.714,1101.0,5.0,4.0,67285.902,1370.315,1296.567,1393.0910000000001,6.3260000000000005,5.061,1.23,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,387266.0,390.0,490.006,0.19399999999999998,2771.0,3.5060000000000002,0.3698,2.7,tests performed,744876.0,416994.0,303373.0,24509.0,1523.0,1906.0,94.25,52.76,38.39,3.1,2412.0,400.0,0.051,77.78,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
72,Guyana,2022-01-19,38436,,,,2771.0,3.5060000000000002,0.3565,GUY,South America,53921.0,743.0,988.0,1108.0,7.0,4.7139999999999995,68226.017,940.115,1250.112,1401.9479999999999,8.857000000000001,5.965,1.17,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,387266.0,390.0,490.006,0.19399999999999998,2771.0,3.5060000000000002,0.3565,2.8,tests performed,744876.0,416994.0,303373.0,24509.0,1523.0,1870.0,94.25,52.76,38.39,3.1,2366.0,387.0,0.049,77.78,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
73,Guyana,2022-01-20,38437,,,,2771.0,3.5060000000000002,0.3374,GUY,South America,54736.0,815.0,935.0,1111.0,3.0,5.143,69257.233,1031.2160000000001,1183.052,1405.744,3.7960000000000003,6.507000000000001,1.11,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,387266.0,390.0,490.006,0.19399999999999998,2771.0,3.5060000000000002,0.3374,3.0,tests performed,744876.0,416994.0,303373.0,24509.0,1523.0,1834.0,94.25,52.76,38.39,3.1,2321.0,373.0,0.047,77.78,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
74,Guyana,2022-01-21,38438,442695.0,,560.14,2771.0,3.5060000000000002,0.3388,GUY,South America,55628.0,892.0,938.857,1122.0,11.0,5.857,70385.87700000001,1128.644,1187.932,1419.662,13.918,7.4110000000000005,1.06,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,442695.0,390.0,560.14,0.19399999999999998,2771.0,3.5060000000000002,0.3388,3.0,tests performed,757464.0,419509.0,306831.0,31124.0,1523.0,1798.0,95.84,53.08,38.82,3.94,2275.0,359.0,0.045,77.78,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
75,Benin,2022-02-08,9944,604310.0,,48.535,,,,BEN,Africa,26498.0,0.0,6.857,163.0,0.0,0.0,2128.177,0.0,0.551,13.091,0.0,0.0,0.32,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,604310.0,1351.0,48.535,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,2391396.0,2269942.0,1767745.0,49729.0,5470.0,18990.0,19.21,18.23,14.2,12.28,1525.0,16013.0,0.129,50.0,12451031.0,99.11,18.8,3.2439999999999998,1.942,2064.236,49.6,235.84799999999998,0.99,0.6,12.3,11.035,0.5,61.77,0.545,127.6,6.28,51.1,315.1278663
76,Tanzania,2022-02-12,95426,,,,1004.0,0.016,0.0293,TZA,Africa,33436.0,0.0,29.429000000000002,792.0,0.0,0.429,543.689,0.0,0.479,12.878,0.0,0.006999999999999999,0.52,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,427673.0,64492.0,6.954,2.7030000000000003,1004.0,0.016,0.0293,34.1,tests performed,3226750.0,2545391.0,1866830.0,3527355.0,113265.0,36789.0,5.25,4.14,3.04,36.18,598.0,20562.0,0.033,13.89,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
77,Ukraine,2022-02-12,100734,,,,70943.0,1.632,0.5155,UKR,Europe,4708604.0,40023.0,36570.286,109483.0,277.0,225.143,108326.39199999999,920.7710000000001,841.3380000000001,2518.772,6.372999999999999,5.18,1.02,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,18920897.0,96361.0,435.295,2.217,70943.0,1.632,0.5155,1.9,tests performed,31107958.0,15572034.0,14969913.0,586691.0,36453.0,58282.0,71.57,35.83,34.44,1.35,1341.0,17042.0,0.039,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
78,Tanzania,2022-02-13,95427,,,,1004.0,0.016,0.0293,TZA,Africa,33436.0,0.0,29.429000000000002,792.0,0.0,0.429,543.689,0.0,0.479,12.878,0.0,0.006999999999999999,0.52,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,427673.0,64492.0,6.954,2.7030000000000003,1004.0,0.016,0.0293,34.1,tests performed,3226750.0,2545391.0,1866830.0,3527355.0,113265.0,36789.0,5.25,4.14,3.04,36.18,598.0,20562.0,0.033,13.89,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
79,Ukraine,2022-02-13,100735,,,,68103.0,1.567,0.5314,UKR,Europe,4735258.0,26654.0,36191.429,109635.0,152.0,229.71400000000003,108939.595,613.203,832.622,2522.269,3.497,5.285,0.99,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,18920897.0,96361.0,435.295,2.217,68103.0,1.567,0.5314,1.9,tests performed,31126896.0,15577692.0,14978894.0,590990.0,18938.0,58327.0,71.61,35.84,34.46,1.36,1342.0,17030.0,0.039,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
80,Sudan,2022-02-13,92257,562941.0,,12.535,,,,SDN,Africa,59631.0,0.0,108.14299999999999,3831.0,0.0,34.714,1327.808,0.0,2.408,85.305,0.0,0.773,0.63,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,562941.0,1111.0,12.535,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,4991228.0,4408196.0,1983137.0,7989679.0,6534.0,55370.0,11.11,9.82,4.42,37.17,1233.0,55235.0,0.12300000000000001,16.67,44909351.0,23.258000000000003,19.7,3.548,2.0340000000000003,4466.5070000000005,0.7,431.38800000000003,15.67,0.3,27.0,23.436999999999998,0.8,65.31,0.51,104463.1,10.09,5.53,2234.733736
81,Tanzania,2022-02-14,95428,,,,1004.0,0.016,0.0293,TZA,Africa,33436.0,0.0,29.429000000000002,792.0,0.0,0.429,543.689,0.0,0.479,12.878,0.0,0.006999999999999999,0.52,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,427673.0,64492.0,6.954,2.7030000000000003,1004.0,0.016,0.0293,34.1,tests performed,3226750.0,2545391.0,1866830.0,3527355.0,113265.0,36789.0,5.25,4.14,3.04,36.18,598.0,20562.0,0.033,11.11,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
82,Ukraine,2022-02-14,100736,19060801.0,,438.514,65263.0,1.501,0.5412,UKR,Europe,4753922.0,18664.0,35321.857,109788.0,153.0,233.857,109368.98,429.385,812.617,2525.7889999999998,3.52,5.38,0.96,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19060801.0,96361.0,438.514,2.217,65263.0,1.501,0.5412,1.8,tests performed,31186066.0,15594936.0,15006256.0,605554.0,59170.0,57648.0,71.75,35.88,34.52,1.39,1326.0,16704.0,0.038,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
83,Tanzania,2022-02-15,95429,,,,1004.0,0.016,0.0454,TZA,Africa,33549.0,113.0,45.571000000000005,796.0,4.0,1.0,545.526,1.837,0.741,12.943,0.065,0.016,0.51,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,427673.0,64492.0,6.954,2.7030000000000003,1004.0,0.016,0.0454,22.0,tests performed,3226750.0,2545391.0,1866830.0,3527355.0,113265.0,36789.0,5.25,4.14,3.04,36.18,598.0,20562.0,0.033,11.11,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
84,Ukraine,2022-02-15,100737,,,,62203.0,1.431,0.5571,UKR,Europe,4785138.0,31216.0,34652.857,110105.0,317.0,241.143,110087.13699999999,718.1569999999999,797.225,2533.081,7.292999999999999,5.547999999999999,0.94,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19060801.0,96361.0,438.514,2.217,62203.0,1.431,0.5571,1.8,tests performed,31251871.0,15613183.0,15035563.0,623805.0,65805.0,56762.0,71.9,35.92,34.59,1.44,1306.0,16281.0,0.037000000000000005,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
85,Tanzania,2022-02-16,95430,,,,1004.0,0.016,0.0161,TZA,Africa,33549.0,0.0,16.143,796.0,0.0,0.5710000000000001,545.526,0.0,0.262,12.943,0.0,0.009000000000000001,0.5,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,427673.0,64492.0,6.954,2.7030000000000003,1004.0,0.016,0.0161,62.2,tests performed,3226750.0,2545391.0,1866830.0,3527355.0,113265.0,36789.0,5.25,4.14,3.04,36.18,598.0,20562.0,0.033,11.11,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
86,Ukraine,2022-02-16,100738,19176424.0,,441.17400000000004,59142.0,1.361,0.57,UKR,Europe,4818112.0,32974.0,33710.714,110427.0,322.0,251.28599999999997,110845.739,758.602,775.55,2540.489,7.4079999999999995,5.781000000000001,0.92,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19176424.0,96361.0,441.17400000000004,2.217,59142.0,1.361,0.57,1.8,tests performed,31317953.0,15631687.0,15064511.0,642435.0,66082.0,56106.0,72.05,35.96,34.66,1.48,1291.0,15872.0,0.037000000000000005,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
87,Papua New Guinea,2022-02-17,75270,249149.0,,27.322,,,,PNG,Oceania,39580.0,545.0,194.0,628.0,0.0,2.571,4340.3859999999995,59.765,21.274,68.867,0.0,0.282,1.06,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,249149.0,7609.0,27.322,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,people tested,534612.0,297688.0,236924.0,1764414.0,5925.0,855.0,5.86,3.26,2.6,40.27,94.0,424.0,0.005,57.87,9119005.0,18.22,22.6,3.8080000000000003,2.142,3823.1940000000004,2.2,561.494,17.65,23.5,48.8,59.607,2.3,64.5,0.555,7503.4,19.42,-1.22,1712.4861039999998
88,Tanzania,2022-02-17,95431,,,,1004.0,0.016,0.0161,TZA,Africa,33549.0,0.0,16.143,796.0,0.0,0.5710000000000001,545.526,0.0,0.262,12.943,0.0,0.009000000000000001,0.5,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,427673.0,64492.0,6.954,2.7030000000000003,1004.0,0.016,0.0161,62.2,tests performed,3226750.0,2545391.0,1866830.0,3527355.0,113265.0,36789.0,5.25,4.14,3.04,36.18,598.0,20562.0,0.033,11.11,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
89,Ukraine,2022-02-17,100739,,,,55852.0,1.285,0.5825,UKR,Europe,4853339.0,35227.0,32532.142999999996,110698.0,271.0,248.571,111656.17300000001,810.434,748.436,2546.724,6.235,5.718999999999999,0.9,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19176424.0,96361.0,441.17400000000004,2.217,55852.0,1.285,0.5825,1.7,tests performed,31383042.0,15649483.0,15092197.0,662042.0,65089.0,55082.0,72.2,36.0,34.72,1.52,1267.0,15439.0,0.036000000000000004,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
90,Andorra,2022-02-17,1517,299794.0,,3875.611,124.0,1.6030000000000002,0.5161,AND,Europe,37522.0,70.0,64.0,150.0,0.0,0.28600000000000003,485068.645,904.931,827.365,1939.1370000000002,0.0,3.694,0.71,0.0,0.0,,,,,,,299794.0,957.0,3875.611,0.33299999999999996,124.0,1.6030000000000002,0.5161,1.9,tests performed,142420.0,57797.0,53250.0,24732.0,1973.0,752.0,184.11,74.72,68.84,31.97,9722.0,1.0,0.001,23.15,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
91,Ukraine,2022-02-18,100740,19288823.0,,443.76,52561.0,1.209,0.6027,UKR,Europe,4890332.0,36993.0,31678.714,110989.0,291.0,254.71400000000003,112507.23599999999,851.063,728.802,2553.419,6.695,5.86,0.9,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19288823.0,96361.0,443.76,2.217,52561.0,1.209,0.6027,1.7,tests performed,31450678.0,15667266.0,15121673.0,682419.0,67636.0,54168.0,72.36,36.04,34.79,1.57,1246.0,15085.0,0.035,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
92,Andorra,2022-02-18,1518,,,,118.0,1.525,0.5436,AND,Europe,37589.0,67.0,64.143,150.0,0.0,0.28600000000000003,485934.79299999995,866.148,829.212,1939.1370000000002,0.0,3.694,0.71,0.0,0.0,,,,,,,299794.0,957.0,3875.611,0.33299999999999996,118.0,1.525,0.5436,1.8,tests performed,142420.0,57797.0,53250.0,24732.0,1973.0,923.0,184.11,74.72,68.84,31.97,11932.0,1.0,0.001,23.15,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
93,Tanzania,2022-02-18,95432,455776.0,,7.4110000000000005,1004.0,0.016,0.0161,TZA,Africa,33549.0,0.0,16.143,796.0,0.0,0.5710000000000001,545.526,0.0,0.262,12.943,0.0,0.009000000000000001,0.49,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,455776.0,64492.0,7.4110000000000005,2.7030000000000003,1004.0,0.016,0.0161,62.2,tests performed,3226750.0,2545391.0,2374800.0,3527355.0,113265.0,36789.0,5.25,4.14,3.86,36.18,598.0,20562.0,0.033,11.11,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
94,Andorra,2022-02-19,1519,,,,113.0,1.4609999999999999,0.5676,AND,Europe,37589.0,0.0,64.143,150.0,0.0,0.28600000000000003,485934.79299999995,0.0,829.212,1939.1370000000002,0.0,3.694,0.72,0.0,0.0,,,,,,,299794.0,957.0,3875.611,0.33299999999999996,113.0,1.4609999999999999,0.5676,1.8,tests performed,142420.0,57797.0,53250.0,24732.0,1973.0,1095.0,184.11,74.72,68.84,31.97,14156.0,1.0,0.001,23.15,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
95,Faeroe Islands,2022-02-20,30010,774591.0,,15790.9,939.0,19.143,0.5049,FRO,Europe,32044.0,952.0,474.14300000000003,24.0,0.0,0.14300000000000002,653252.6039999999,19407.58,9665.93,489.267,0.0,2.912,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,774591.0,2092.0,15790.9,42.648,939.0,19.143,0.5049,2.0,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,13.89,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-70.9,-7.84,-11.96,-1445.3754099999999
96,Andorra,2022-02-20,1520,,,,107.0,1.383,0.5995,AND,Europe,37589.0,0.0,64.143,150.0,0.0,0.28600000000000003,485934.79299999995,0.0,829.212,1939.1370000000002,0.0,3.694,0.72,0.0,0.0,,,,,,,299794.0,957.0,3875.611,0.33299999999999996,107.0,1.383,0.5995,1.7,tests performed,151284.0,57805.0,53301.0,24732.0,1973.0,1266.0,195.57,74.73,68.91,31.97,16366.0,1.0,0.001,23.15,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
97,Andorra,2022-02-21,1521,,,,102.0,1.319,0.43700000000000006,AND,Europe,37589.0,0.0,44.571000000000005,150.0,0.0,0.14300000000000002,485934.79299999995,0.0,576.201,1939.1370000000002,0.0,1.847,0.73,0.0,0.0,,,,,,,299794.0,957.0,3875.611,0.33299999999999996,102.0,1.319,0.43700000000000006,2.3,tests performed,151284.0,57805.0,53301.0,24732.0,1973.0,1090.0,195.57,74.73,68.91,31.97,14091.0,1.0,0.001,23.15,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
98,Faeroe Islands,2022-02-21,30011,775562.0,971.0,15810.695,903.0,18.409000000000002,0.4713,FRO,Europe,32044.0,0.0,425.57099999999997,24.0,0.0,0.0,653252.6039999999,0.0,8675.747,489.267,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,775562.0,971.0,15810.695,19.795,903.0,18.409000000000002,0.4713,2.1,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,13.89,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-70.9,-7.84,-11.96,-1445.3754099999999
99,Vanuatu,2022-02-21,104813,,,,,,,VUT,Oceania,15.0,4.0,1.143,1.0,0.0,0.0,47.7,12.72,3.634,3.18,0.0,0.0,1.29,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11457.0,2072.0,36.433,0.595,3188.0,0.915,0.0836,12.0,people tested,189138.0,110907.0,78231.0,10296725.0,145313.0,364.0,60.15,35.27,24.88,30.34,1158.0,48.0,0.015,22.22,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
100,Bhutan,2022-02-21,10682,1653982.0,1056.0,2120.762,9316.0,11.945,0.0375,BTN,Asia,10112.0,34.0,349.42900000000003,6.0,0.0,0.14300000000000002,12965.765,43.595,448.043,7.693,0.0,0.183,1.24,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1653982.0,1056.0,2120.762,1.354,9316.0,11.945,0.0375,26.7,samples tested,1584463.0,596419.0,574529.0,351962.0,414.0,9549.0,203.16,76.47,73.67,45.13,12244.0,192.0,0.025,75.46,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
101,Vanuatu,2022-02-22,104814,,,,,,,VUT,Oceania,15.0,0.0,1.143,1.0,0.0,0.0,47.7,0.0,3.634,3.18,0.0,0.0,1.29,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11457.0,2072.0,36.433,0.595,3188.0,0.915,0.0836,12.0,people tested,189138.0,110907.0,78231.0,10296725.0,145313.0,523.0,60.15,35.27,24.88,30.34,1663.0,110.0,0.035,22.22,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
102,Faeroe Islands,2022-02-22,30012,,,,808.0,16.472,0.3596,FRO,Europe,32044.0,0.0,290.57099999999997,24.0,0.0,0.0,653252.6039999999,0.0,5923.621999999999,489.267,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,775562.0,971.0,15810.695,19.795,808.0,16.472,0.3596,2.8,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,13.89,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-70.9,-7.84,-11.96,-1445.3754099999999
103,Andorra,2022-02-22,1522,,,,96.0,1.2409999999999999,0.6829999999999999,AND,Europe,37820.0,231.0,65.571,151.0,1.0,0.14300000000000002,488921.064,2986.2709999999997,847.68,1952.065,12.927999999999999,1.847,0.74,0.0,0.0,,,,,,,299794.0,957.0,3875.611,0.33299999999999996,96.0,1.2409999999999999,0.6829999999999999,1.5,tests performed,151284.0,57805.0,53301.0,24732.0,1973.0,914.0,195.57,74.73,68.91,31.97,11816.0,1.0,0.001,23.15,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
104,Bhutan,2022-02-22,10683,1657217.0,3235.0,2124.91,7958.0,10.204,0.0409,BTN,Asia,10196.0,84.0,325.714,6.0,0.0,0.14300000000000002,13073.471000000001,107.706,417.63599999999997,7.693,0.0,0.183,1.23,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1657217.0,3235.0,2124.91,4.148,7958.0,10.204,0.0409,24.4,samples tested,1584463.0,596419.0,574529.0,351962.0,414.0,8152.0,203.16,76.47,73.67,45.13,10453.0,164.0,0.021,73.61,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
105,Andorra,2022-02-23,1523,300307.0,,3882.243,91.0,1.176,0.7049,AND,Europe,37901.0,81.0,64.143,151.0,0.0,0.14300000000000002,489968.198,1047.134,829.212,1952.065,0.0,1.847,0.74,0.0,0.0,,,,,,,300307.0,957.0,3882.243,0.33299999999999996,91.0,1.176,0.7049,1.4,tests performed,151284.0,57805.0,53301.0,24732.0,1973.0,738.0,195.57,74.73,68.91,31.97,9541.0,1.0,0.001,23.15,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
106,Bhutan,2022-02-23,10684,1667657.0,10440.0,2138.2960000000003,7982.0,10.235,0.0397,BTN,Asia,10514.0,318.0,316.714,6.0,0.0,0.14300000000000002,13481.216,407.745,406.096,7.693,0.0,0.183,1.23,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1667657.0,10440.0,2138.2960000000003,13.386,7982.0,10.235,0.0397,25.2,samples tested,1584463.0,596419.0,574529.0,351962.0,414.0,6756.0,203.16,76.47,73.67,45.13,8663.0,135.0,0.017,73.61,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
107,Faeroe Islands,2022-02-23,30013,776693.0,,15833.751,706.0,14.392999999999999,0.4711,FRO,Europe,32899.0,855.0,332.57099999999997,25.0,1.0,0.14300000000000002,670682.731,17430.127,6779.839,509.653,20.386,2.912,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,776693.0,971.0,15833.751,19.795,706.0,14.392999999999999,0.4711,2.1,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,13.89,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-70.9,-7.84,-11.96,-1445.3754099999999
108,Vanuatu,2022-02-23,104815,,,,,,,VUT,Oceania,15.0,0.0,1.143,1.0,0.0,0.0,47.7,0.0,3.634,3.18,0.0,0.0,1.29,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11457.0,2072.0,36.433,0.595,3188.0,0.915,0.0836,12.0,people tested,189138.0,110907.0,78231.0,10296725.0,145313.0,681.0,60.15,35.27,24.88,30.34,2166.0,172.0,0.055,22.22,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
109,Bhutan,2022-02-24,10685,1675554.0,7897.0,2148.422,7320.0,9.386000000000001,0.0454,BTN,Asia,11010.0,496.0,332.42900000000003,6.0,0.0,0.14300000000000002,14117.195,635.979,426.245,7.693,0.0,0.183,1.23,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1675554.0,7897.0,2148.422,10.126,7320.0,9.386000000000001,0.0454,22.0,samples tested,1584463.0,596419.0,574529.0,351962.0,414.0,5359.0,203.16,76.47,73.67,45.13,6871.0,107.0,0.013999999999999999,73.61,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
110,Faeroe Islands,2022-02-24,30014,777084.0,391.0,15841.722,579.0,11.804,0.6445,FRO,Europe,33183.0,284.0,373.14300000000003,25.0,0.0,0.14300000000000002,676472.387,5789.656,7606.932,509.653,0.0,2.912,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777084.0,391.0,15841.722,7.971,579.0,11.804,0.6445,1.6,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,13.89,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-70.9,-7.84,-11.96,-1445.3754099999999
111,Vanuatu,2022-02-24,104816,,,,,,,VUT,Oceania,18.0,3.0,1.571,1.0,0.0,0.0,57.24,9.54,4.997,3.18,0.0,0.0,1.29,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11457.0,2072.0,36.433,0.595,3188.0,0.915,0.0836,12.0,people tested,189138.0,110907.0,78231.0,10296725.0,145313.0,840.0,60.15,35.27,24.88,30.34,2671.0,234.0,0.07400000000000001,22.22,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
112,Vanuatu,2022-02-25,104817,,,,,,,VUT,Oceania,18.0,0.0,1.571,1.0,0.0,0.0,57.24,0.0,4.997,3.18,0.0,0.0,1.29,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11457.0,2072.0,36.433,0.595,3188.0,0.915,0.0836,12.0,people tested,189138.0,110907.0,78231.0,10296725.0,145313.0,999.0,60.15,35.27,24.88,30.34,3177.0,296.0,0.094,22.22,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
113,Faeroe Islands,2022-02-25,30015,,,,559.0,11.395999999999999,0.6384,FRO,Europe,33590.0,407.0,356.85699999999997,26.0,1.0,0.28600000000000003,684769.535,8297.148000000001,7274.93,530.039,20.386,5.825,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777084.0,391.0,15841.722,7.971,559.0,11.395999999999999,0.6384,1.6,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,13.89,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-70.9,-7.84,-11.96,-1445.3754099999999
114,Bhutan,2022-02-25,10686,1689300.0,13746.0,2166.047,7792.0,9.991,0.0396,BTN,Asia,11369.0,359.0,308.42900000000003,6.0,0.0,0.14300000000000002,14577.51,460.315,395.472,7.693,0.0,0.183,1.23,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1689300.0,13746.0,2166.047,17.625,7792.0,9.991,0.0396,25.3,samples tested,1584463.0,596419.0,574529.0,351962.0,414.0,3963.0,203.16,76.47,73.67,45.13,5081.0,78.0,0.01,73.61,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
115,Vanuatu,2022-02-26,104818,,,,,,,VUT,Oceania,18.0,0.0,1.0,1.0,0.0,0.0,57.24,0.0,3.18,3.18,0.0,0.0,1.29,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11457.0,2072.0,36.433,0.595,3188.0,0.915,0.0836,12.0,people tested,189138.0,110907.0,78231.0,10296725.0,145313.0,1158.0,60.15,35.27,24.88,30.34,3682.0,358.0,0.114,22.22,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
116,Faeroe Islands,2022-02-26,30016,777845.0,,15857.236,539.0,10.988,0.6621,FRO,Europe,33590.0,0.0,356.85699999999997,26.0,0.0,0.28600000000000003,684769.535,0.0,7274.93,530.039,0.0,5.825,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,13.89,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-70.9,-7.84,-11.96,-1445.3754099999999
117,Bhutan,2022-02-26,10687,1698659.0,9359.0,2178.047,7690.0,9.86,0.042,BTN,Asia,11820.0,451.0,323.286,6.0,0.0,0.14300000000000002,15155.788999999999,578.279,414.522,7.693,0.0,0.183,1.22,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1698659.0,9359.0,2178.047,12.0,7690.0,9.86,0.042,23.8,samples tested,1584463.0,596419.0,574529.0,351962.0,414.0,2566.0,203.16,76.47,73.67,45.13,3290.0,50.0,0.006,73.61,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
118,Vanuatu,2022-02-27,104819,11989.0,,38.125,76.0,0.242,0.0132,VUT,Oceania,18.0,0.0,1.0,1.0,0.0,0.0,57.24,0.0,3.18,3.18,0.0,0.0,1.29,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,189138.0,110907.0,78231.0,10296725.0,145313.0,1316.0,60.15,35.27,24.88,30.34,4185.0,420.0,0.134,22.22,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
119,Bhutan,2022-02-27,10688,1711669.0,13010.0,2194.729,8392.0,10.76,0.036000000000000004,BTN,Asia,12194.0,374.0,302.286,6.0,0.0,0.0,15635.338,479.54900000000004,387.595,7.693,0.0,0.0,1.21,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1711669.0,13010.0,2194.729,16.682000000000002,8392.0,10.76,0.036000000000000004,27.8,samples tested,1592652.0,596568.0,574736.0,351962.0,414.0,1170.0,204.21,76.49,73.69,45.13,1500.0,21.0,0.003,73.61,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
120,Romania,2022-03-04,81202,,,,46845.0,2.449,0.1313,ROU,Europe,2760332.0,5602.0,6149.0,63849.0,67.0,93.714,144310.168,292.873,321.47,3338.026,3.503,4.899,0.58,795.0,41.563,5753.0,300.767,9.0,1.669,234.0,42.846000000000004,20730467.0,14144.0,1083.789,4.8260000000000005,46845.0,2.449,0.1313,7.6,tests performed,16695626.0,5474507.0,8068154.0,1688620.0,4819.0,4342.0,87.28,28.62,42.18,57.62,227.0,9930.0,0.052000000000000005,47.22,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,115617.1,20.2,21.36,6044.462471
121,Burkina Faso,2022-03-04,14477,,,,524.0,0.024,0.0,BFA,Africa,20751.0,0.0,0.0,375.0,0.0,0.0,965.293,0.0,0.0,17.444000000000003,0.0,0.0,0.2,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,317494.0,506.0,14.769,0.024,524.0,0.024,0.0,624.3,tests performed,2320456.0,2113440.0,1145006.0,768430.0,1242.0,1425.0,10.79,9.83,5.33,11.14,66.0,771.0,0.004,13.89,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
122,Brazil,2022-03-05,13614,,,,48569.0,0.22699999999999998,,BRA,South America,29040800.0,62748.0,41606.857,652216.0,694.0,433.14300000000003,135708.832,293.224,194.43099999999998,3047.8320000000003,3.2430000000000003,2.024,0.75,22.0,1.859,143.0,12.085,,,760.0,65.335,69951873.0,126242.0,326.888,0.59,48569.0,0.22699999999999998,0.0483,20.7,tests performed,395464826.0,178203894.0,155711613.0,66609966.0,651967.0,525686.0,184.8,83.28,72.76,31.13,2457.0,94157.0,0.044000000000000004,69.91,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,760118.5,25.64,32.21,3552.0644770000004
123,Burkina Faso,2022-03-05,14478,,,,524.0,0.024,0.0,BFA,Africa,20751.0,0.0,0.0,375.0,0.0,0.0,965.293,0.0,0.0,17.444000000000003,0.0,0.0,0.2,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,317494.0,506.0,14.769,0.024,524.0,0.024,0.0,624.3,tests performed,2320456.0,2113440.0,1145006.0,768430.0,1242.0,1398.0,10.79,9.83,5.33,11.14,65.0,711.0,0.003,13.89,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
124,Romania,2022-03-05,81203,,,,51654.0,2.7,0.1125,ROU,Europe,2765169.0,4837.0,5812.714,63931.0,82.0,91.0,144563.047,252.878,303.889,3342.313,4.287,4.757,0.59,778.0,40.674,5784.0,302.388,9.0,1.669,234.0,42.846000000000004,20730467.0,14144.0,1083.789,4.8260000000000005,51654.0,2.7,0.1125,8.9,tests performed,16699247.0,5474507.0,8069526.0,1688620.0,3621.0,4164.0,87.3,28.62,42.19,57.62,218.0,9930.0,0.052000000000000005,47.22,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,115617.1,20.2,21.36,6044.462471
125,Guatemala,2022-03-05,37835,4002654.0,4936.0,219.325,10530.0,0.5770000000000001,0.2128,GTM,North America,791944.0,2590.0,2240.286,17073.0,28.0,16.0,43394.505999999994,141.91899999999998,122.756,935.5139999999999,1.534,0.877,0.87,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4002654.0,4936.0,219.325,0.27,10530.0,0.5770000000000001,0.2128,4.7,people tested,14900511.0,7275131.0,5716727.0,1908653.0,48046.0,49265.0,81.65,39.86,31.32,10.46,2699.0,12228.0,0.067,61.57,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
126,Burkina Faso,2022-03-06,14479,324311.0,,15.085999999999999,524.0,0.024,0.0,BFA,Africa,20751.0,0.0,0.0,375.0,0.0,0.0,965.293,0.0,0.0,17.444000000000003,0.0,0.0,0.2,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324311.0,506.0,15.085999999999999,0.024,524.0,0.024,0.0,624.3,tests performed,2330052.0,2117997.0,1152574.0,768430.0,1242.0,1371.0,10.84,9.85,5.36,11.14,64.0,651.0,0.003,13.89,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
127,Guatemala,2022-03-06,37836,4005295.0,2641.0,219.47,10244.0,0.561,0.2163,GTM,North America,792503.0,559.0,2216.0,17077.0,4.0,15.142999999999999,43425.136,30.63,121.426,935.7330000000001,0.21899999999999997,0.83,0.86,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4005295.0,2641.0,219.47,0.145,10244.0,0.561,0.2163,4.6,people tested,14900511.0,7275131.0,5716727.0,1908653.0,48046.0,46382.0,81.65,39.86,31.32,10.46,2541.0,11566.0,0.063,61.57,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
128,Romania,2022-03-06,81204,,,,56463.0,2.952,0.1,ROU,Europe,2768261.0,3092.0,5647.714,63961.0,30.0,86.85700000000001,144724.697,161.65,295.263,3343.881,1.568,4.541,0.6,751.0,39.262,5866.0,306.675,9.0,1.669,234.0,42.846000000000004,20730467.0,14144.0,1083.789,4.8260000000000005,56463.0,2.952,0.1,10.0,tests performed,16701125.0,5474507.0,8070200.0,1688620.0,1878.0,3982.0,87.31,28.62,42.19,57.62,208.0,9930.0,0.052000000000000005,47.22,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,116272.9,20.11,11.6,6078.747697
129,Brazil,2022-03-06,13615,,,,63139.0,0.295,,BRA,South America,29056525.0,15725.0,39961.571,652438.0,222.0,428.714,135782.316,73.484,186.74200000000002,3048.869,1.037,2.003,0.76,22.0,1.859,143.0,12.085,,,760.0,65.335,69951873.0,126242.0,326.888,0.59,63139.0,0.295,0.0483,20.7,tests performed,395658972.0,178245534.0,155740455.0,66734054.0,194146.0,526934.0,184.89,83.29,72.78,31.19,2462.0,95118.0,0.044000000000000004,69.91,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,760118.5,25.64,32.21,3552.0644770000004
130,Guatemala,2022-03-07,37837,4019705.0,14410.0,220.25900000000001,10157.0,0.557,0.2246,GTM,North America,792961.0,458.0,2281.429,17083.0,6.0,16.0,43450.232,25.096,125.01100000000001,936.062,0.32899999999999996,0.877,0.86,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4019705.0,14410.0,220.25900000000001,0.79,10157.0,0.557,0.2246,4.5,people tested,14900511.0,7275131.0,5716727.0,1908653.0,48046.0,43499.0,81.65,39.86,31.32,10.46,2384.0,10904.0,0.06,61.57,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
131,Romania,2022-03-07,81205,,,,61272.0,3.2030000000000003,0.0885,ROU,Europe,2771449.0,3188.0,5423.571,63993.0,32.0,82.714,144891.365,166.669,283.54400000000004,3345.554,1.673,4.324,0.59,696.0,36.387,5458.0,285.344,9.0,1.669,234.0,42.846000000000004,20730467.0,14144.0,1083.789,4.8260000000000005,61272.0,3.2030000000000003,0.0885,11.3,tests performed,16704114.0,5474507.0,8071346.0,1688620.0,2989.0,3761.0,87.33,28.62,42.2,57.62,197.0,9930.0,0.052000000000000005,47.22,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,116272.9,20.11,11.6,6078.747697
132,Algeria,2022-03-07,995,230553.0,,5.167000000000001,,,,DZA,Africa,265297.0,32.0,51.571000000000005,6857.0,2.0,3.1430000000000002,5946.147,0.7170000000000001,1.156,153.687,0.045,0.07,0.31,11.0,0.247,,,,,,,230553.0,957.0,5.167000000000001,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,13631683.0,7456361.0,6076272.0,436274.0,147230.0,4307.0,30.55,16.71,13.62,0.98,97.0,328.0,0.001,58.33,44616626.0,17.348,29.1,6.211,3.8569999999999998,13913.839,0.5,278.36400000000003,6.73,0.7,30.4,83.741,1.9,76.88,0.748,49888.7,26.86,29.47,1118.163888
133,Brazil,2022-03-07,13616,,,,77709.0,0.363,,BRA,South America,29077831.0,21306.0,40180.0,652648.0,210.0,424.57099999999997,135881.88,99.564,187.763,3049.85,0.981,1.984,0.78,22.0,1.859,143.0,12.085,,,760.0,65.335,69951873.0,126242.0,326.888,0.59,77709.0,0.363,0.0483,20.7,tests performed,396537303.0,178366451.0,155930535.0,67303447.0,878331.0,539096.0,185.3,83.35,72.87,31.45,2519.0,89170.0,0.042,69.91,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,760118.5,25.64,32.21,3552.0644770000004
134,Burkina Faso,2022-03-07,14480,324352.0,41.0,15.088,455.0,0.021,0.0,BFA,Africa,20751.0,0.0,0.0,375.0,0.0,0.0,965.293,0.0,0.0,17.444000000000003,0.0,0.0,0.21,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324352.0,41.0,15.088,0.002,455.0,0.021,0.0,624.3,tests performed,2330052.0,2117997.0,1152574.0,768430.0,1242.0,1619.0,10.84,9.85,5.36,11.14,75.0,742.0,0.003,13.89,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
135,Eritrea,2022-03-07,28140,23693.0,,6.579,,,,ERI,Africa,9716.0,1.0,2.1430000000000002,103.0,0.0,0.0,2697.7929999999997,0.278,0.595,28.599,0.0,0.0,0.53,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,23693.0,501.0,6.579,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,56.48,3601462.0,44.303999999999995,19.3,3.6069999999999998,2.171,1510.4589999999998,2.2,311.11,6.05,0.2,11.4,24.64,0.7,66.32,0.45899999999999996,4739.0,16.28,49.24,727.0077472
136,Guatemala,2022-03-08,37838,4032919.0,13214.0,220.983,10162.0,0.557,0.2108,GTM,North America,795808.0,2847.0,2141.857,17106.0,23.0,13.714,43606.233,156.001,117.363,937.322,1.26,0.7509999999999999,0.85,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4032919.0,13214.0,220.983,0.7240000000000001,10162.0,0.557,0.2108,4.7,people tested,14900511.0,7275131.0,5716727.0,1908653.0,48046.0,40616.0,81.65,39.86,31.32,10.46,2226.0,10242.0,0.055999999999999994,61.57,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
137,Romania,2022-03-08,81206,,,,66082.0,3.455,0.0756,ROU,Europe,2776910.0,5461.0,4995.0,64094.0,101.0,73.714,145176.866,285.501,261.139,3350.835,5.28,3.8539999999999996,0.57,634.0,33.146,5036.0,263.282,9.0,1.669,234.0,42.846000000000004,20730467.0,14144.0,1083.789,4.8260000000000005,66082.0,3.455,0.0756,13.2,tests performed,16707166.0,5474507.0,8072538.0,1688620.0,3052.0,3551.0,87.35,28.62,42.2,57.62,186.0,9930.0,0.052000000000000005,47.22,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,116272.9,20.11,11.6,6078.747697
138,Brazil,2022-03-08,13617,,,,92278.0,0.431,,BRA,South America,29152318.0,74487.0,47638.28599999999,653134.0,486.0,458.85699999999997,136229.96,348.08099999999996,222.61599999999999,3052.1220000000003,2.271,2.144,0.79,22.0,1.859,143.0,12.085,,,760.0,65.335,69951873.0,126242.0,326.888,0.59,92278.0,0.431,0.0483,20.7,tests performed,397386286.0,178486274.0,156114741.0,67849960.0,848983.0,637237.0,185.7,83.41,72.95,31.71,2978.0,92772.0,0.043,69.91,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,760118.5,25.64,32.21,3552.0644770000004
139,Burkina Faso,2022-03-08,14481,,,,400.0,0.019,0.0,BFA,Africa,20751.0,0.0,0.0,375.0,0.0,0.0,965.293,0.0,0.0,17.444000000000003,0.0,0.0,0.21,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324352.0,41.0,15.088,0.002,400.0,0.019,0.0,624.3,tests performed,2330052.0,2117997.0,1152574.0,768430.0,1242.0,1867.0,10.84,9.85,5.36,11.14,87.0,832.0,0.004,13.89,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
140,Burkina Faso,2022-03-09,14482,,,,346.0,0.016,0.0,BFA,Africa,20751.0,0.0,0.0,375.0,0.0,0.0,965.293,0.0,0.0,17.444000000000003,0.0,0.0,0.22,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324352.0,41.0,15.088,0.002,346.0,0.016,0.0,624.3,tests performed,2330052.0,2117997.0,1152574.0,768430.0,1242.0,2115.0,10.84,9.85,5.36,11.14,98.0,923.0,0.004,13.89,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
141,Brazil,2022-03-09,13618,,,,106848.0,0.499,,BRA,South America,29198101.0,45783.0,50229.429000000004,653767.0,633.0,501.85699999999997,136443.906,213.946,234.72400000000002,3055.08,2.958,2.345,0.79,22.0,1.859,143.0,12.085,,,760.0,65.335,69951873.0,126242.0,326.888,0.59,106848.0,0.499,0.0483,20.7,tests performed,398449118.0,178657742.0,156339809.0,68529303.0,1062832.0,704344.0,186.2,83.49,73.06,32.02,3291.0,106491.0,0.05,69.91,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,760118.5,25.64,32.21,3552.0644770000004
142,Guatemala,2022-03-09,37839,4045782.0,12863.0,221.688,10060.0,0.551,0.2041,GTM,North America,798400.0,2592.0,2053.714,17116.0,10.0,14.0,43748.262,142.028,112.53299999999999,937.87,0.5479999999999999,0.767,0.85,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4045782.0,12863.0,221.688,0.705,10060.0,0.551,0.2041,4.9,people tested,15014105.0,7301166.0,5747658.0,1965281.0,48046.0,37734.0,82.27,40.01,31.49,10.77,2068.0,9579.0,0.052000000000000005,61.57,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
143,Romania,2022-03-09,81207,,,,70891.0,3.7060000000000004,0.0651,ROU,Europe,2781086.0,4176.0,4615.571,64156.0,62.0,69.714,145395.188,218.321,241.30200000000002,3354.0759999999996,3.241,3.645,0.56,631.0,32.989000000000004,4761.0,248.905,9.0,1.669,234.0,42.846000000000004,20730467.0,14144.0,1083.789,4.8260000000000005,70891.0,3.7060000000000004,0.0651,15.4,tests performed,16709785.0,5474507.0,8073606.0,1688620.0,2619.0,3349.0,87.36,28.62,42.21,57.62,175.0,9930.0,0.052000000000000005,13.89,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,116272.9,20.11,11.6,6078.747697
144,Guatemala,2022-03-10,37840,4057394.0,11612.0,222.325,10117.0,0.5539999999999999,0.1911,GTM,North America,800403.0,2003.0,1933.4289999999999,17127.0,11.0,14.0,43858.015999999996,109.75399999999999,105.94200000000001,938.4730000000001,0.603,0.767,0.84,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4057394.0,11612.0,222.325,0.636,10117.0,0.5539999999999999,0.1911,5.2,people tested,15014105.0,7301166.0,5747658.0,1965281.0,48046.0,36081.0,82.27,40.01,31.49,10.77,1977.0,8912.0,0.049,61.57,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
145,Romania,2022-03-10,81208,21260367.0,,1111.492,75700.0,3.958,0.0565,ROU,Europe,2784651.0,3565.0,4274.429,64226.0,70.0,63.428999999999995,145581.566,186.378,223.467,3357.736,3.66,3.3160000000000003,0.56,609.0,31.839000000000002,4571.0,238.972,9.0,1.669,234.0,42.846000000000004,21260367.0,14144.0,1111.492,4.8260000000000005,75700.0,3.958,0.0565,17.7,tests performed,16712425.0,5474507.0,8074690.0,1688620.0,2640.0,3088.0,87.37,28.62,42.21,57.62,161.0,9930.0,0.052000000000000005,13.89,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,116272.9,20.11,11.6,6078.747697
146,Brazil,2022-03-10,13619,,,,121418.0,0.5670000000000001,,BRA,South America,29259206.0,61105.0,50362.0,654380.0,613.0,508.0,136729.452,285.546,235.34400000000002,3057.9440000000004,2.865,2.374,0.79,22.0,1.859,143.0,12.085,,,760.0,65.335,69951873.0,126242.0,326.888,0.59,121418.0,0.5670000000000001,0.0483,20.7,tests performed,400536072.0,179288492.0,157250835.0,69072506.0,2086954.0,917754.0,187.17,83.78,73.48,32.28,4289.0,185821.0,0.087,69.91,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,760118.5,25.64,32.21,3552.0644770000004
147,Burkina Faso,2022-03-10,14483,324773.0,,15.107999999999999,291.0,0.013999999999999999,0.0,BFA,Africa,20751.0,0.0,0.0,375.0,0.0,0.0,965.293,0.0,0.0,17.444000000000003,0.0,0.0,0.22,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324773.0,41.0,15.107999999999999,0.002,291.0,0.013999999999999999,0.0,624.3,tests performed,2330052.0,2117997.0,1152574.0,768430.0,1242.0,2363.0,10.84,9.85,5.36,11.14,110.0,1014.0,0.005,13.89,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
148,Guatemala,2022-03-11,37841,4067775.0,10381.0,222.893,10008.0,0.5479999999999999,0.1911,GTM,North America,802744.0,2341.0,1912.8570000000002,17139.0,12.0,13.429,43986.291,128.275,104.815,939.13,0.6579999999999999,0.736,0.84,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,15141507.0,7332849.0,5783150.0,2025508.0,48046.0,34428.0,82.97,40.18,31.69,11.1,1886.0,8245.0,0.045,53.24,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
149,Brazil,2022-03-11,13620,70923215.0,,331.42699999999996,121418.0,0.5670000000000001,,BRA,South America,29313228.0,54022.0,47882.28599999999,654843.0,463.0,474.42900000000003,136981.899,252.447,223.75599999999997,3060.1079999999997,2.164,2.217,0.8,22.0,1.859,143.0,12.085,,,760.0,65.335,70923215.0,126242.0,331.42699999999996,0.59,121418.0,0.5670000000000001,0.0483,20.7,tests performed,401272006.0,179411783.0,157418571.0,69520035.0,735934.0,922735.0,187.52,83.84,73.56,32.49,4312.0,185539.0,0.087,69.91,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,760118.5,25.64,32.21,3552.0644770000004
150,Liberia,2022-03-12,52647,139824.0,,26.991999999999997,,,,LBR,Africa,7392.0,0.0,1.143,294.0,0.0,0.0,1426.97,0.0,0.221,56.754,0.0,0.0,0.39,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,553.0,26.991999999999997,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,880313.0,1018979.0,986975.0,600115.0,8242.0,2522.0,16.99,19.67,19.05,8.87,487.0,375.0,0.006999999999999999,48.15,5180208.0,49.126999999999995,19.2,3.057,1.756,752.788,38.6,272.509,2.42,1.5,18.1,1.188,0.8,64.1,0.48,15149.6,30.18,57.47,2238.035464
151,Indonesia,2022-03-15,42289,58850880.0,148036.0,212.949,124158.0,0.449,0.1315,IDN,Asia,5914532.0,14408.0,16325.571000000002,152745.0,308.0,273.42900000000003,21401.41,52.135,59.073,552.6990000000001,1.114,0.9890000000000001,0.53,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,58850880.0,148036.0,212.949,0.536,124158.0,0.449,0.1315,7.6,people tested,360250837.0,193658864.0,151821843.0,14770130.0,1025196.0,961310.0,130.35,70.07,54.94,5.34,3478.0,199309.0,0.07200000000000001,59.72,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
152,Indonesia,2022-03-16,42290,58983039.0,132159.0,213.42700000000002,116706.0,0.42200000000000004,0.1236,IDN,Asia,5927550.0,13018.0,14423.0,152975.0,230.0,262.857,21448.515,47.105,52.18899999999999,553.5319999999999,0.8320000000000001,0.951,0.52,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,58983039.0,132159.0,213.42700000000002,0.478,116706.0,0.42200000000000004,0.1236,8.1,people tested,362340334.0,193903477.0,152405191.0,15474618.0,1025196.0,869098.0,131.11,70.16,55.15,5.6,3145.0,212976.0,0.077,59.72,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
153,Indonesia,2022-03-17,42291,59108042.0,125003.0,213.87900000000002,114883.0,0.41600000000000004,0.1134,IDN,Asia,5939082.0,11532.0,13026.0,153212.0,237.0,257.0,21490.243,41.728,47.13399999999999,554.389,0.858,0.93,0.51,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59108042.0,125003.0,213.87900000000002,0.452,114883.0,0.41600000000000004,0.1134,8.8,people tested,363890835.0,194136128.0,152729588.0,16005165.0,1550501.0,940394.0,131.67,70.25,55.26,5.79,3403.0,194167.0,0.07,59.72,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
154,Indonesia,2022-03-18,42292,59223545.0,115503.0,214.297,119986.0,0.434,0.1007,IDN,Asia,5948610.0,9528.0,12085.714,153411.0,199.0,244.0,21524.72,34.477,43.731,555.109,0.72,0.883,0.5,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59223545.0,115503.0,214.297,0.418,119986.0,0.434,0.1007,9.9,people tested,363890835.0,194437519.0,153448151.0,16005165.0,1550501.0,820480.0,131.67,70.36,55.52,5.79,2969.0,203315.0,0.07400000000000001,56.94,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
155,Gambia,2022-03-18,33164,,,,122.0,0.049,0.0176,GMB,Africa,11978.0,5.0,2.1430000000000002,365.0,0.0,0.0,4816.366,2.011,0.862,146.767,0.0,0.0,0.24,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,154873.0,2256.0,62.275,0.99,122.0,0.049,0.0176,56.9,tests performed,362079.0,330027.0,316887.0,2381.0,429.0,3768.0,14.56,13.27,12.74,0.1,1515.0,554.0,0.022000000000000002,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
156,Indonesia,2022-03-19,42293,59323266.0,99721.0,214.658,120058.0,0.434,0.0924,IDN,Asia,5956561.0,7951.0,11093.0,153599.0,188.0,235.429,21553.49,28.77,40.139,555.79,0.68,0.852,0.49,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59323266.0,99721.0,214.658,0.361,120058.0,0.434,0.0924,10.8,people tested,364305498.0,194559612.0,153649398.0,16096488.0,1550501.0,703642.0,131.82,70.4,55.6,5.82,2546.0,190019.0,0.069,56.94,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
157,Gambia,2022-03-19,33165,,,,68.0,0.027000000000000003,0.0315,GMB,Africa,11978.0,0.0,2.1430000000000002,365.0,0.0,0.0,4816.366,0.0,0.862,146.767,0.0,0.0,0.24,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,154873.0,2256.0,62.275,0.99,68.0,0.027000000000000003,0.0315,31.7,tests performed,362079.0,330027.0,316887.0,2381.0,429.0,3768.0,14.56,13.27,12.74,0.1,1515.0,554.0,0.022000000000000002,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
158,Indonesia,2022-03-20,42294,59400556.0,77290.0,214.938,116788.0,0.423,0.0881,IDN,Asia,5962483.0,5922.0,10284.0,153738.0,139.0,224.571,21574.917999999998,21.428,37.211999999999996,556.293,0.503,0.813,0.47,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59400556.0,77290.0,214.938,0.28,116788.0,0.423,0.0881,11.4,people tested,364931091.0,194559612.0,154267349.0,16278674.0,625593.0,730810.0,132.05,70.4,55.82,5.89,2644.0,165588.0,0.06,56.94,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
159,Gambia,2022-03-20,33166,,,,68.0,0.027000000000000003,0.0315,GMB,Africa,11978.0,0.0,2.1430000000000002,365.0,0.0,0.0,4816.366,0.0,0.862,146.767,0.0,0.0,0.24,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,154873.0,2256.0,62.275,0.99,68.0,0.027000000000000003,0.0315,31.7,tests performed,362079.0,330027.0,316887.0,2381.0,429.0,3768.0,14.56,13.27,12.74,0.1,1515.0,554.0,0.022000000000000002,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
160,Indonesia,2022-03-21,42295,59503735.0,103179.0,215.31099999999998,114413.0,0.414,0.0837,IDN,Asia,5967182.0,4699.0,9579.714,153892.0,154.0,207.857,21591.921000000002,17.003,34.664,556.85,0.557,0.752,0.46,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,365473877.0,194785493.0,154370080.0,16318304.0,542786.0,746149.0,132.24,70.48,55.86,5.9,2700.0,187351.0,0.068,56.94,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
161,Paraguay,2022-03-21,76015,,,,1954.0,0.271,0.0888,PRY,South America,647268.0,169.0,173.429,18599.0,13.0,7.2860000000000005,89653.765,23.408,24.022,2576.167,1.801,1.0090000000000001,0.5,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2597479.0,1757.0,359.78,0.243,1954.0,0.271,0.0888,11.3,tests performed,8375280.0,3859037.0,3296570.0,1219673.0,10430.0,18815.0,116.01,53.45,45.66,16.89,2606.0,3580.0,0.05,32.41,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24787.8,33.26,38.92,3433.3840149999996
162,Gambia,2022-03-21,33167,,,,68.0,0.027000000000000003,0.0105,GMB,Africa,11978.0,0.0,0.7140000000000001,365.0,0.0,0.0,4816.366,0.0,0.287,146.767,0.0,0.0,0.23,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,154873.0,2256.0,62.275,0.99,68.0,0.027000000000000003,0.0105,95.2,tests performed,362079.0,330027.0,316887.0,2381.0,429.0,3768.0,14.56,13.27,12.74,0.1,1515.0,554.0,0.022000000000000002,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
163,Paraguay,2022-03-22,76016,,,,1925.0,0.267,0.085,PRY,South America,647428.0,160.0,163.571,18603.0,4.0,7.2860000000000005,89675.927,22.162,22.656,2576.721,0.5539999999999999,1.0090000000000001,0.5,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2597479.0,1757.0,359.78,0.243,1925.0,0.267,0.085,11.8,tests performed,8375280.0,3859037.0,3296570.0,1219673.0,10430.0,17605.0,116.01,53.45,45.66,16.89,2438.0,3302.0,0.046,32.41,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24787.8,33.26,38.92,3433.3840149999996
164,Gambia,2022-03-22,33168,,,,68.0,0.027000000000000003,0.0105,GMB,Africa,11978.0,0.0,0.7140000000000001,365.0,0.0,0.0,4816.366,0.0,0.287,146.767,0.0,0.0,0.23,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,154873.0,2256.0,62.275,0.99,68.0,0.027000000000000003,0.0105,95.2,tests performed,362079.0,330027.0,316887.0,2381.0,429.0,3768.0,14.56,13.27,12.74,0.1,1515.0,554.0,0.022000000000000002,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
165,Gambia,2022-03-23,33169,,,,68.0,0.027000000000000003,0.0105,GMB,Africa,11978.0,0.0,0.7140000000000001,365.0,0.0,0.0,4816.366,0.0,0.287,146.767,0.0,0.0,0.23,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,154873.0,2256.0,62.275,0.99,68.0,0.027000000000000003,0.0105,95.2,tests performed,362079.0,330027.0,316887.0,2381.0,429.0,3768.0,14.56,13.27,12.74,0.1,1515.0,554.0,0.022000000000000002,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
166,Paraguay,2022-03-23,76017,2602634.0,,360.494,1899.0,0.263,0.0785,PRY,South America,647538.0,110.0,149.0,18606.0,3.0,7.2860000000000005,89691.163,15.235999999999999,20.638,2577.136,0.41600000000000004,1.0090000000000001,0.49,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2602634.0,1757.0,360.494,0.243,1899.0,0.263,0.0785,12.7,tests performed,8375280.0,3859037.0,3296570.0,1219673.0,10430.0,16395.0,116.01,53.45,45.66,16.89,2271.0,3023.0,0.042,32.41,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24787.8,33.26,38.92,3433.3840149999996
167,Gambia,2022-03-24,33170,155686.0,,62.602,68.0,0.027000000000000003,0.0105,GMB,Africa,11978.0,0.0,0.7140000000000001,365.0,0.0,0.0,4816.366,0.0,0.287,146.767,0.0,0.0,0.23,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,155686.0,2256.0,62.602,0.99,68.0,0.027000000000000003,0.0105,95.2,tests performed,362079.0,330027.0,316887.0,2381.0,429.0,3768.0,14.56,13.27,12.74,0.1,1515.0,554.0,0.022000000000000002,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
168,Paraguay,2022-03-24,76018,,,,1855.0,0.257,0.0802,PRY,South America,647672.0,134.0,148.857,18608.0,2.0,7.0,89709.724,18.56,20.618000000000002,2577.413,0.27699999999999997,0.97,0.49,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2602634.0,1757.0,360.494,0.243,1855.0,0.257,0.0802,12.5,tests performed,8375280.0,3859037.0,3296570.0,1219673.0,10430.0,11978.0,116.01,53.45,45.66,16.89,1659.0,2161.0,0.03,32.41,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24787.8,33.26,38.92,3433.3840149999996
169,North Korea,2022-03-25,70562,,,,554.0,0.021,,PRK,Asia,103803939.0,52772.0,129926.0,1461229.0,96.0,347.14300000000003,173997.98100000003,88.45700000000001,217.78400000000002,2449.3379999999997,0.161,0.5820000000000001,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,175213.0,1558.0,6.768,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
170,Paraguay,2022-03-25,76019,,,,1791.0,0.248,0.0733,PRY,South America,647762.0,90.0,131.286,18662.0,54.0,13.0,89722.19,12.466,18.185,2584.893,7.48,1.801,0.48,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2602634.0,1757.0,360.494,0.243,1791.0,0.248,0.0733,13.6,tests performed,8428214.0,3868131.0,3316744.0,1243339.0,10430.0,7562.0,116.74,53.58,45.94,17.22,1047.0,1299.0,0.018000000000000002,32.41,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24787.8,33.26,38.92,3433.3840149999996
171,Gibraltar,2022-03-26,35336,,,,554.0,16.444000000000003,0.105,GIB,Europe,16660.0,0.0,58.143,101.0,0.0,0.0,494494.07899999997,0.0,1725.7679999999998,2997.833,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,528926.0,514.0,15699.326000000001,15.255999999999998,554.0,16.444000000000003,0.105,9.5,tests performed,116649.0,42034.0,41246.0,33369.0,291.0,247.0,346.23,124.76,122.42,99.04,7331.0,2.0,0.006,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
172,Paraguay,2022-03-26,76020,,,,1757.0,0.243,0.0706,PRY,South America,647836.0,74.0,124.0,18663.0,1.0,12.286,89732.44,10.25,17.175,2585.032,0.139,1.702,0.48,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2602634.0,1757.0,360.494,0.243,1757.0,0.243,0.0706,14.2,tests performed,8428214.0,3868131.0,3316744.0,1243339.0,10430.0,7387.0,116.74,53.58,45.94,17.22,1023.0,1260.0,0.017,32.41,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24787.8,33.26,38.92,3433.3840149999996
173,North Korea,2022-03-26,70563,,,,554.0,0.021,,PRK,Asia,103803939.0,52772.0,129926.0,1461229.0,96.0,347.14300000000003,173997.98100000003,88.45700000000001,217.78400000000002,2449.3379999999997,0.161,0.5820000000000001,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,175213.0,1558.0,6.768,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
174,North Korea,2022-03-27,70564,,,,554.0,0.021,,PRK,Asia,103803939.0,52772.0,129926.0,1461229.0,96.0,347.14300000000003,173997.98100000003,88.45700000000001,217.78400000000002,2449.3379999999997,0.161,0.5820000000000001,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,175213.0,1558.0,6.768,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
175,Paraguay,2022-03-27,76021,2609819.0,,361.48900000000003,1763.0,0.244,0.0654,PRY,South America,647906.0,70.0,115.286,18664.0,1.0,11.142999999999999,89742.135,9.696,15.968,2585.17,0.139,1.5430000000000001,0.47,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2609819.0,1757.0,361.48900000000003,0.243,1763.0,0.244,0.0654,15.3,tests performed,8428214.0,3868131.0,3316744.0,1243339.0,10430.0,7213.0,116.74,53.58,45.94,17.22,999.0,1221.0,0.017,32.41,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24787.8,33.26,38.92,3433.3840149999996
176,Gibraltar,2022-03-27,35337,,,,537.0,15.939,0.1083,GIB,Europe,16660.0,0.0,58.143,101.0,0.0,0.0,494494.07899999997,0.0,1725.7679999999998,2997.833,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,528926.0,514.0,15699.326000000001,15.255999999999998,537.0,15.939,0.1083,9.2,tests performed,116649.0,42034.0,41246.0,33369.0,291.0,259.0,346.23,124.76,122.42,99.04,7688.0,2.0,0.006,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
177,Gibraltar,2022-03-28,35338,530813.0,,15755.335,521.0,15.464,0.1481,GIB,Europe,16851.0,191.0,77.143,101.0,0.0,0.0,500163.24799999996,5669.17,2289.717,2997.833,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,530813.0,514.0,15755.335,15.255999999999998,521.0,15.464,0.1481,6.8,tests performed,116649.0,42034.0,41246.0,33369.0,291.0,270.0,346.23,124.76,122.42,99.04,8014.0,2.0,0.006,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
178,North Korea,2022-03-28,70565,,,,554.0,0.021,,PRK,Asia,103803939.0,52772.0,129926.0,1461229.0,96.0,347.14300000000003,173997.98100000003,88.45700000000001,217.78400000000002,2449.3379999999997,0.161,0.5820000000000001,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,175213.0,1558.0,6.768,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
179,North Korea,2022-03-29,70566,,,,554.0,0.021,,PRK,Asia,103803939.0,52772.0,129926.0,1461229.0,96.0,347.14300000000003,173997.98100000003,88.45700000000001,217.78400000000002,2449.3379999999997,0.161,0.5820000000000001,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,175213.0,1558.0,6.768,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
180,Gibraltar,2022-03-29,35339,,,,525.0,15.583,0.1129,GIB,Europe,16851.0,0.0,59.286,101.0,0.0,0.0,500163.24799999996,0.0,1759.69,2997.833,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,530813.0,514.0,15755.335,15.255999999999998,525.0,15.583,0.1129,8.9,tests performed,117336.0,42037.0,41285.0,34014.0,291.0,251.0,348.27,124.77,122.54,100.96,7450.0,2.0,0.006,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
181,Gibraltar,2022-03-30,35340,,,,529.0,15.702,0.0843,GIB,Europe,16854.0,3.0,44.571000000000005,101.0,0.0,0.0,500252.29299999995,89.045,1322.9479999999999,2997.833,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,530813.0,514.0,15755.335,15.255999999999998,529.0,15.702,0.0843,11.9,tests performed,117336.0,42037.0,41285.0,34014.0,291.0,256.0,348.27,124.77,122.54,100.96,7598.0,2.0,0.006,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
182,North Korea,2022-03-30,70567,,,,554.0,0.021,,PRK,Asia,103803939.0,52772.0,129926.0,1461229.0,96.0,347.14300000000003,173997.98100000003,88.45700000000001,217.78400000000002,2449.3379999999997,0.161,0.5820000000000001,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,175213.0,1558.0,6.768,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
183,Peru,2022-03-30,76743,28675909.0,,859.605,46468.0,1.393,0.011000000000000001,PER,South America,3546696.0,613.0,502.42900000000003,212207.0,28.0,32.286,106317.692,18.375999999999998,15.061,6361.233,0.8390000000000001,0.968,0.77,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28675909.0,1757.0,859.605,0.243,46468.0,1.393,0.011000000000000001,90.9,tests performed,68036139.0,28822788.0,26224001.0,12989350.0,161534.0,167520.0,203.95,86.4,78.61,38.94,5022.0,18642.0,0.055999999999999994,65.74,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,229527.5,78.99,6.45,6880.441398999999
184,Peru,2022-03-31,76744,28736342.0,,861.416,48159.0,1.444,0.01,PER,South America,3547125.0,429.0,476.42900000000003,212222.0,15.0,28.570999999999998,106330.552,12.86,14.282,6361.682,0.45,0.856,0.78,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28736342.0,1757.0,861.416,0.243,48159.0,1.444,0.01,100.0,tests performed,68206597.0,28835286.0,26251380.0,13119931.0,170458.0,172755.0,204.46,86.44,78.69,39.33,5179.0,17896.0,0.054000000000000006,65.74,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,229527.5,78.99,6.45,6880.441398999999
185,North Korea,2022-03-31,70568,182968.0,,7.068,554.0,0.021,,PRK,Asia,103803939.0,52772.0,129926.0,1461229.0,96.0,347.14300000000003,173997.98100000003,88.45700000000001,217.78400000000002,2449.3379999999997,0.161,0.5820000000000001,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,182968.0,1558.0,7.068,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
186,Gibraltar,2022-03-31,35341,,,,533.0,15.82,0.0721,GIB,Europe,16920.0,66.0,38.429,101.0,0.0,0.0,502211.273,1958.98,1140.618,2997.833,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,530813.0,514.0,15755.335,15.255999999999998,533.0,15.82,0.0721,13.9,tests performed,117937.0,42042.0,41310.0,34585.0,291.0,226.0,350.05,124.79,122.61,102.65,6708.0,1.0,0.003,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
187,Peru,2022-04-01,76745,28804457.0,,863.4580000000001,49333.0,1.479,0.008,PER,South America,3547606.0,481.0,466.85699999999997,212256.0,34.0,29.429000000000002,106344.97,14.419,13.995,6362.701999999999,1.0190000000000001,0.882,0.79,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28804457.0,1757.0,863.4580000000001,0.243,49333.0,1.479,0.008,125.0,tests performed,68402214.0,28852029.0,26282677.0,13267508.0,195617.0,178753.0,205.05,86.49,78.79,39.77,5358.0,17304.0,0.052000000000000005,65.74,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,229527.5,78.99,6.45,6880.441398999999
188,Gibraltar,2022-04-01,35342,533268.0,,15828.203000000001,553.0,16.414,0.0858,GIB,Europe,16992.0,72.0,47.428999999999995,101.0,0.0,0.0,504348.342,2137.069,1407.7520000000002,2997.833,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,533268.0,514.0,15828.203000000001,15.255999999999998,553.0,16.414,0.0858,11.7,tests performed,117937.0,42042.0,41310.0,34585.0,291.0,193.0,350.05,124.79,122.61,102.65,5729.0,1.0,0.003,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
189,Peru,2022-04-02,76746,28860933.0,,865.1510000000001,49875.0,1.495,0.009000000000000001,PER,South America,3548088.0,482.0,460.85699999999997,212299.0,43.0,28.143,106359.41900000001,14.449000000000002,13.815,6363.99,1.2890000000000001,0.8440000000000001,0.81,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28860933.0,1757.0,865.1510000000001,0.243,49875.0,1.495,0.009000000000000001,111.1,tests performed,68646122.0,28871608.0,26330416.0,13444098.0,243908.0,181288.0,205.78,86.55,78.93,40.3,5434.0,16176.0,0.048,65.74,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,229527.5,78.99,6.45,6880.441398999999
190,Peru,2022-04-03,76747,28904299.0,,866.451,48187.0,1.444,0.009000000000000001,PER,South America,3548559.0,471.0,450.85699999999997,212328.0,29.0,28.570999999999998,106373.538,14.119000000000002,13.515,6364.86,0.8690000000000001,0.856,0.82,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28904299.0,1757.0,866.451,0.243,48187.0,1.444,0.009000000000000001,111.1,tests performed,68859086.0,28887969.0,26365284.0,13605833.0,212964.0,185226.0,206.42,86.6,79.03,40.79,5552.0,15647.0,0.047,65.74,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,229714.7,78.36,7.28,6886.053008
191,Peru,2022-04-04,76748,28937071.0,,867.433,46063.0,1.381,0.01,PER,South America,3548717.0,158.0,441.286,212354.0,26.0,28.143,106378.274,4.736000000000001,13.228,6365.639,0.779,0.8440000000000001,0.83,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28937071.0,1757.0,867.433,0.243,46063.0,1.381,0.01,100.0,tests performed,68998577.0,28897582.0,26385547.0,13715448.0,139491.0,182964.0,206.83,86.62,79.09,41.11,5485.0,14887.0,0.045,65.74,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,229714.7,78.36,7.28,6886.053008
192,China,2022-04-05,18581,,,,14769984.0,10.227,0.0007,CHN,Asia,288963.0,16649.0,10992.857,4638.0,0.0,0.0,200.083,11.527999999999999,7.612,3.2110000000000003,0.0,0.0,1.13,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,160000000.0,58711.0,110.787,3.056,14769984.0,10.227,0.0007,1343.6,tests performed,3283586000.0,1278724000.0,1243226000.0,705693000.0,1982000.0,2922429.0,227.36,88.54,86.08,48.86,2024.0,233490.0,0.016,73.61,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
193,Peru,2022-04-05,76749,28971116.0,,868.454,49170.0,1.474,0.009000000000000001,PER,South America,3549028.0,311.0,420.714,212372.0,18.0,27.570999999999998,106387.597,9.323,12.612,6366.179,0.54,0.826,0.85,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28971116.0,1757.0,868.454,0.243,49170.0,1.474,0.009000000000000001,111.1,tests performed,69089283.0,28906080.0,26402136.0,13781067.0,90706.0,173525.0,207.11,86.65,79.14,41.31,5202.0,13901.0,0.042,65.74,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,229714.7,78.36,7.28,6886.053008
194,China,2022-04-06,18582,,,,14769984.0,10.227,0.0009,CHN,Asia,309341.0,20378.0,12626.428999999998,4638.0,0.0,0.0,214.19299999999998,14.11,8.743,3.2110000000000003,0.0,0.0,1.19,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,160000000.0,58711.0,110.787,3.056,14769984.0,10.227,0.0009,1169.8,tests performed,3286373000.0,1278724000.0,1243226000.0,705693000.0,2787000.0,2747571.0,227.55,88.54,86.08,48.86,1902.0,223340.0,0.015,73.61,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
195,China,2022-04-07,18583,,,,14769984.0,10.227,0.001,CHN,Asia,332596.0,23255.0,14942.571000000002,4638.0,0.0,0.0,230.295,16.102,10.345999999999998,3.2110000000000003,0.0,0.0,1.24,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,160000000.0,58711.0,110.787,3.056,14769984.0,10.227,0.001,988.4,tests performed,3289463000.0,1278724000.0,1243226000.0,705693000.0,3090000.0,2655571.0,227.77,88.54,86.08,48.86,1839.0,213190.0,0.015,73.61,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
196,China,2022-04-08,18584,,,,14769984.0,10.227,0.0012,CHN,Asia,356172.0,23576.0,17019.143,4638.0,0.0,0.0,246.62,16.324,11.784,3.2110000000000003,0.0,0.0,1.26,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,160000000.0,58711.0,110.787,3.056,14769984.0,10.227,0.0012,867.8,tests performed,3292643000.0,1278724000.0,1243226000.0,705693000.0,3180000.0,2646143.0,227.99,88.54,86.08,48.86,1832.0,218286.0,0.015,79.17,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
197,Cyprus,2022-04-08,23380,29112135.0,80771.0,32491.041,83034.0,92.671,0.0364,CYP,Europe,454362.0,2028.0,3020.7140000000004,979.0,22.0,5.2860000000000005,507097.617,2263.38,3371.3140000000003,1092.628,24.553,5.899,0.66,7.0,7.812,202.0,225.445,13.0,14.509,182.0,203.123,29112135.0,80771.0,32491.041,90.146,83034.0,92.671,0.0364,27.5,tests performed,1773485.0,659912.0,643846.0,440267.0,1437.0,28.0,197.93,73.65,71.86,49.14,31.0,80.0,0.009000000000000001,47.22,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1121.8,7.74,47.03,1252.001942
198,Cyprus,2022-04-09,23381,29172391.0,60256.0,32558.29,80262.0,89.57799999999999,0.0338,CYP,Europe,456126.0,1764.0,2716.429,980.0,1.0,5.0,509066.356,1968.739,3031.711,1093.744,1.1159999999999999,5.58,0.65,8.0,8.929,201.0,224.329,13.0,14.509,182.0,203.123,29172391.0,60256.0,32558.29,67.25,80262.0,89.57799999999999,0.0338,29.5,tests performed,1774676.0,659912.0,643846.0,465600.0,1437.0,28.0,198.07,73.65,71.86,51.96,31.0,80.0,0.009000000000000001,47.22,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1121.8,7.74,47.03,1252.001942
199,China,2022-04-09,18585,,,,14769984.0,10.227,0.0013,CHN,Asia,380841.0,24669.0,19213.429,4638.0,0.0,0.0,263.70099999999996,17.081,13.304,3.2110000000000003,0.0,0.0,1.26,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,160000000.0,58711.0,110.787,3.056,14769984.0,10.227,0.0013,768.7,tests performed,3295208000.0,1278724000.0,1243226000.0,705693000.0,2565000.0,2617429.0,228.17,88.54,86.08,48.86,1812.0,223381.0,0.015,79.17,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
200,Georgia,2022-04-09,33660,,,,4118.0,1.035,0.0804,GEO,Asia,1651322.0,341.0,331.0,16770.0,4.0,2.714,414928.691,85.68299999999999,83.171,4213.808,1.005,0.682,0.63,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13626698.0,22625.0,3423.989,5.685,4118.0,1.035,0.0804,12.4,tests performed,2865773.0,1607133.0,1258640.0,80818.0,402.0,579.0,72.01,40.38,31.63,2.03,145.0,383.0,0.01,21.3,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
201,Cyprus,2022-04-10,23382,29230119.0,57728.0,32622.718999999997,77249.0,86.215,0.0326,CYP,Europe,457585.0,1459.0,2517.286,982.0,2.0,5.0,510694.695,1628.339,2809.455,1095.976,2.2319999999999998,5.58,0.64,9.0,10.045,207.0,231.025,10.0,11.161,160.0,178.57,29230119.0,57728.0,32622.718999999997,64.428,77249.0,86.215,0.0326,30.7,tests performed,1774676.0,659912.0,643846.0,465600.0,1437.0,92.0,198.07,73.65,71.86,51.96,103.0,80.0,0.009000000000000001,47.22,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.9,7.9,25.48,1288.9437
202,Georgia,2022-04-10,33661,,,,4067.0,1.022,0.079,GEO,Asia,1651470.0,148.0,321.143,16771.0,1.0,2.1430000000000002,414965.87899999996,37.188,80.694,4214.059,0.251,0.5379999999999999,0.63,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13626698.0,22625.0,3423.989,5.685,4067.0,1.022,0.079,12.7,tests performed,2865985.0,1607267.0,1258718.0,80818.0,212.0,576.0,72.01,40.39,31.63,2.03,145.0,374.0,0.009000000000000001,21.3,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
203,China,2022-04-10,18586,,,,14769984.0,10.227,0.0014,CHN,Asia,406829.0,25988.0,21062.857000000004,4638.0,0.0,0.0,281.695,17.995,14.584000000000001,3.2110000000000003,0.0,0.0,1.25,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,160000000.0,58711.0,110.787,3.056,14769984.0,10.227,0.0014,701.2,tests performed,3297551000.0,1278724000.0,1243226000.0,705693000.0,2343000.0,2614571.0,228.33,88.54,86.08,48.86,1810.0,228476.0,0.016,79.17,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
204,China,2022-04-11,18587,9214000000.0,,6379.932,14769984.0,10.227,0.0016,CHN,Asia,434413.0,27584.0,23157.0,4638.0,0.0,0.0,300.795,19.1,16.034000000000002,3.2110000000000003,0.0,0.0,1.23,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,9214000000.0,58711.0,6379.932,3.056,14769984.0,10.227,0.0016,637.8,tests performed,3300328000.0,1280156000.0,1244923000.0,719324000.0,2777000.0,2674857.0,228.52,88.64,86.2,49.81,1852.0,233571.0,0.016,79.17,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
205,Uruguay,2022-04-11,104805,6068259.0,3743.0,1741.175,6315.0,1.8119999999999998,0.0934,URY,South America,894267.0,358.0,589.571,7183.0,1.0,2.0,256593.4,102.721,169.167,2061.029,0.287,0.574,0.51,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6068259.0,3743.0,1741.175,1.074,6315.0,1.8119999999999998,0.0934,10.7,people tested,8114215.0,2978246.0,2856141.0,2279828.0,511.0,4450.0,232.82,85.46,81.95,65.42,1277.0,291.0,0.008,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,5569.3,7.13,11.54,1598.007777
206,Georgia,2022-04-11,33662,13632187.0,5489.0,3425.368,4016.0,1.0090000000000001,0.0764,GEO,Asia,1651577.0,107.0,306.714,16777.0,6.0,2.714,414992.765,26.886,77.068,4215.567,1.508,0.682,0.64,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13632187.0,5489.0,3425.368,1.379,4016.0,1.0090000000000001,0.0764,13.1,tests performed,2867451.0,1608239.0,1259212.0,80818.0,1466.0,710.0,72.05,40.41,31.64,2.03,178.0,452.0,0.011000000000000001,21.3,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
207,Cyprus,2022-04-11,23383,29313336.0,83217.0,32715.593999999997,74116.0,82.71799999999999,0.0302,CYP,Europe,459839.0,2254.0,2237.857,985.0,3.0,4.857,513210.30600000004,2515.611,2497.594,1099.3239999999998,3.3480000000000003,5.421,0.63,9.0,10.045,204.0,227.67700000000002,10.0,11.161,160.0,178.57,29313336.0,83217.0,32715.593999999997,92.876,74116.0,82.71799999999999,0.0302,33.1,tests performed,1774676.0,659912.0,643846.0,465600.0,1437.0,156.0,198.07,73.65,71.86,51.96,174.0,80.0,0.009000000000000001,47.22,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.9,7.9,25.48,1288.9437
208,Cyprus,2022-04-12,23384,29380266.0,66930.0,32790.292,71575.0,79.882,0.0287,CYP,Europe,461531.0,1692.0,2052.857,987.0,2.0,4.7139999999999995,515098.68799999997,1888.382,2291.1220000000003,1101.556,2.2319999999999998,5.261,0.6,9.0,10.045,188.0,209.82,10.0,11.161,160.0,178.57,29380266.0,66930.0,32790.292,74.69800000000001,71575.0,79.882,0.0287,34.9,tests performed,1774676.0,659912.0,643846.0,465600.0,1437.0,219.0,198.07,73.65,71.86,51.96,244.0,80.0,0.009000000000000001,47.22,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.9,7.9,25.48,1288.9437
209,Uruguay,2022-04-12,104806,6073109.0,4850.0,1742.566,5753.0,1.651,0.0906,URY,South America,894630.0,363.0,521.429,7186.0,3.0,2.1430000000000002,256697.556,104.156,149.614,2061.89,0.861,0.615,0.47,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6073109.0,4850.0,1742.566,1.392,5753.0,1.651,0.0906,11.0,people tested,8114952.0,2978293.0,2856203.0,2280456.0,737.0,3770.0,232.84,85.46,81.95,65.43,1082.0,218.0,0.006,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,5569.3,7.13,11.54,1598.007777
210,Georgia,2022-04-12,33663,,,,3665.0,0.9209999999999999,0.0764,GEO,Asia,1651969.0,392.0,280.143,16779.0,2.0,2.571,415091.263,98.49799999999999,70.392,4216.07,0.503,0.6459999999999999,0.65,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13632187.0,5489.0,3425.368,1.379,3665.0,0.9209999999999999,0.0764,13.1,tests performed,2868689.0,1609063.0,1259626.0,80818.0,1238.0,855.0,72.08,40.43,31.65,2.03,215.0,544.0,0.013999999999999999,21.3,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
211,Georgia,2022-04-13,33664,,,,3313.0,0.8320000000000001,0.0798,GEO,Asia,1652235.0,266.0,264.42900000000003,16781.0,2.0,2.286,415158.101,66.83800000000001,66.443,4216.572,0.503,0.574,0.65,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13632187.0,5489.0,3425.368,1.379,3313.0,0.8320000000000001,0.0798,12.5,tests performed,2869848.0,1609803.0,1260045.0,80818.0,1159.0,923.0,72.11,40.45,31.66,2.03,232.0,590.0,0.015,21.3,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
212,Uruguay,2022-04-13,104807,6077113.0,4004.0,1743.715,5117.0,1.4680000000000002,0.0889,URY,South America,894984.0,354.0,454.85699999999997,7188.0,2.0,1.714,256799.13,101.574,130.513,2062.464,0.574,0.49200000000000005,0.45,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6077113.0,4004.0,1743.715,1.149,5117.0,1.4680000000000002,0.0889,11.2,people tested,8115943.0,2978360.0,2856279.0,2281304.0,991.0,3480.0,232.87,85.46,81.96,65.46,999.0,174.0,0.005,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,5569.3,7.13,11.54,1598.007777
213,Cyprus,2022-04-13,23385,29434565.0,54299.0,32850.894,68934.0,76.935,0.0271,CYP,Europe,462945.0,1414.0,1866.8570000000002,989.0,2.0,4.857,516676.804,1578.116,2083.534,1103.788,2.2319999999999998,5.421,0.56,11.0,12.277000000000001,183.0,204.24,10.0,11.161,160.0,178.57,29434565.0,54299.0,32850.894,60.601000000000006,68934.0,76.935,0.0271,36.9,tests performed,1774676.0,659912.0,643846.0,465600.0,1437.0,283.0,198.07,73.65,71.86,51.96,316.0,80.0,0.009000000000000001,47.22,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.9,7.9,25.48,1288.9437
214,Maldives,2022-04-14,58984,,,,57.0,0.105,,MDV,Asia,178320.0,0.0,93.571,298.0,0.0,0.0,328023.252,0.0,172.127,548.177,0.0,0.0,0.86,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2209010.0,2103.0,4063.5190000000002,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,939643.0,398539.0,383809.0,157295.0,1683.0,101.0,172.85,73.31,70.6,28.93,186.0,2.0,0.0,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
215,Cyprus,2022-04-14,23386,29501771.0,67206.0,32925.9,67201.0,75.001,0.0256,CYP,Europe,464366.0,1421.0,1718.8570000000002,993.0,4.0,5.143,518262.73299999995,1585.9289999999999,1918.3570000000002,1108.253,4.4639999999999995,5.74,0.52,9.0,10.045,157.0,175.222,10.0,11.161,160.0,178.57,29501771.0,67206.0,32925.9,75.006,67201.0,75.001,0.0256,39.1,tests performed,1774676.0,659912.0,643846.0,465600.0,1437.0,347.0,198.07,73.65,71.86,51.96,387.0,80.0,0.009000000000000001,47.22,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.9,7.9,25.48,1288.9437
216,Uruguay,2022-04-14,104808,6080291.0,3178.0,1744.6270000000002,4522.0,1.298,0.08800000000000001,URY,South America,895240.0,256.0,398.0,7190.0,2.0,1.571,256872.58399999997,73.454,114.199,2063.038,0.574,0.451,0.43,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6080291.0,3178.0,1744.6270000000002,0.912,4522.0,1.298,0.08800000000000001,11.4,people tested,8115944.0,2978360.0,2856279.0,2281305.0,1.0,3020.0,232.87,85.46,81.96,65.46,867.0,121.0,0.003,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,5569.3,7.13,11.54,1598.007777
217,Georgia,2022-04-14,33665,,,,2961.0,0.7440000000000001,0.0851,GEO,Asia,1652472.0,237.0,252.0,16783.0,2.0,2.571,415217.652,59.551,63.32,4217.075,0.503,0.6459999999999999,0.66,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13632187.0,5489.0,3425.368,1.379,2961.0,0.7440000000000001,0.0851,11.8,tests performed,2871126.0,1610614.0,1260512.0,80818.0,1278.0,975.0,72.14,40.47,31.67,2.03,245.0,628.0,0.016,21.3,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
218,Georgia,2022-04-15,33666,13652505.0,20318.0,3430.473,3491.0,0.877,0.0706,GEO,Asia,1652707.0,235.0,246.571,16788.0,5.0,3.1430000000000002,415276.7,59.049,61.956,4218.331,1.256,0.79,0.66,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13652505.0,20318.0,3430.473,5.105,3491.0,0.877,0.0706,14.2,tests performed,2871126.0,1610614.0,1260512.0,80818.0,1278.0,903.0,72.14,40.47,31.67,2.03,227.0,590.0,0.015,21.3,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
219,Uruguay,2022-04-15,104809,6082609.0,2318.0,1745.2920000000001,3971.0,1.139,0.0879,URY,South America,895451.0,211.0,348.85699999999997,7193.0,3.0,1.714,256933.12699999998,60.543,100.098,2063.899,0.861,0.49200000000000005,0.4,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6082609.0,2318.0,1745.2920000000001,0.665,3971.0,1.139,0.0879,11.4,people tested,8115944.0,2978360.0,2856279.0,2281305.0,1.0,324.0,232.87,85.46,81.96,65.46,93.0,25.0,0.001,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,5569.3,7.13,11.54,1598.007777
220,Moldova,2022-04-15,62535,,,,,,,MDA,Europe,516164.0,160.0,149.0,11480.0,3.0,2.8569999999999998,128270.575,39.760999999999996,37.028,2852.865,0.746,0.71,0.66,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,3091.0,119.524,0.768,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2137606.0,1083286.0,1058340.0,82869.0,1208.0,776.0,53.12,26.92,26.3,2.06,193.0,316.0,0.008,14.81,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
221,Maldives,2022-04-15,58985,,,,57.0,0.105,,MDV,Asia,178320.0,0.0,93.571,298.0,0.0,0.0,328023.252,0.0,172.127,548.177,0.0,0.0,0.87,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2209010.0,2103.0,4063.5190000000002,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,939643.0,398539.0,383809.0,157295.0,1683.0,107.0,172.85,73.31,70.6,28.93,197.0,2.0,0.0,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
222,Uruguay,2022-04-16,104810,6084763.0,2154.0,1745.91,3388.0,0.972,0.085,URY,South America,895592.0,141.0,288.143,7193.0,0.0,1.714,256973.58399999997,40.457,82.677,2063.899,0.0,0.49200000000000005,0.36,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6084763.0,2154.0,1745.91,0.618,3388.0,0.972,0.085,11.8,people tested,8115944.0,2978360.0,2856279.0,2281305.0,1.0,324.0,232.87,85.46,81.96,65.46,93.0,26.0,0.001,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,5569.3,7.13,11.54,1598.007777
223,Moldova,2022-04-16,62536,,,,,,,MDA,Europe,516316.0,152.0,143.429,11481.0,1.0,2.8569999999999998,128308.34800000001,37.773,35.643,2853.113,0.249,0.71,0.65,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,3091.0,119.524,0.768,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2137606.0,1083286.0,1058340.0,82869.0,1208.0,734.0,53.12,26.92,26.3,2.06,182.0,316.0,0.008,11.11,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
224,Maldives,2022-04-16,58986,,,,57.0,0.105,,MDV,Asia,178320.0,0.0,93.571,298.0,0.0,0.0,328023.252,0.0,172.127,548.177,0.0,0.0,0.88,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2209010.0,2103.0,4063.5190000000002,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,940433.0,398557.0,383876.0,158000.0,1683.0,113.0,172.99,73.32,70.61,29.06,208.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
225,Uruguay,2022-04-17,104811,6086835.0,2072.0,1746.505,3188.0,0.915,0.0836,URY,South America,895775.0,183.0,266.57099999999997,7197.0,4.0,2.1430000000000002,257026.092,52.508,76.488,2065.0460000000003,1.148,0.615,0.31,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,8115944.0,2978360.0,2856279.0,2281305.0,1.0,326.0,232.87,85.46,81.96,65.46,94.0,27.0,0.001,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,5569.3,7.13,11.54,1598.007777
226,Maldives,2022-04-17,58987,,,,57.0,0.105,,MDV,Asia,178320.0,0.0,93.571,298.0,0.0,0.0,328023.252,0.0,172.127,548.177,0.0,0.0,0.9,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2209010.0,2103.0,4063.5190000000002,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,940433.0,398557.0,383876.0,158000.0,1683.0,108.0,172.99,73.32,70.61,29.06,199.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
227,Moldova,2022-04-17,62537,,697.0,,,,,MDA,Europe,516431.0,115.0,140.857,11481.0,0.0,2.714,128336.92599999999,28.578000000000003,35.004,2853.113,0.0,0.675,0.63,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,697.0,119.524,0.17300000000000001,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2139183.0,1083286.0,1058761.0,82869.0,1208.0,800.0,53.16,26.92,26.31,2.06,199.0,316.0,0.008,11.11,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
228,Moldova,2022-04-18,62538,,,,,,,MDA,Europe,516444.0,13.0,136.571,11482.0,1.0,1.714,128340.15699999999,3.2310000000000003,33.939,2853.362,0.249,0.426,0.6,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,697.0,119.524,0.17300000000000001,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2139183.0,1083286.0,1058761.0,82869.0,1208.0,733.0,53.16,26.92,26.31,2.06,182.0,316.0,0.008,11.11,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
229,Maldives,2022-04-18,58988,,,,57.0,0.105,0.0,MDV,Asia,178320.0,0.0,0.0,298.0,0.0,0.0,328023.252,0.0,0.0,548.177,0.0,0.0,0.93,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2209010.0,2103.0,4063.5190000000002,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,940433.0,398557.0,383876.0,158000.0,1683.0,103.0,172.99,73.32,70.61,29.06,189.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
230,Maldives,2022-04-19,58989,,,,57.0,0.105,,MDV,Asia,178883.0,563.0,80.429,298.0,0.0,0.0,329058.901,1035.65,147.95,548.177,0.0,0.0,1.01,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2209010.0,2103.0,4063.5190000000002,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,940433.0,398557.0,383876.0,158000.0,1683.0,99.0,172.99,73.32,70.61,29.06,182.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
231,Moldova,2022-04-19,62539,,2984.0,,,,,MDA,Europe,516587.0,143.0,134.0,11485.0,3.0,2.0,128375.69300000001,35.537,33.3,2854.1079999999997,0.746,0.49700000000000005,0.58,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2984.0,119.524,0.742,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2140228.0,1083286.0,1058956.0,82869.0,1208.0,677.0,53.19,26.92,26.32,2.06,168.0,316.0,0.008,11.11,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
232,Western Sahara,2022-04-20,105100,3943.0,,6.444,,,,ESH,Africa,454.0,0.0,0.0,7.0,0.0,0.0,40923.021,0.0,0.0,630.972,0.0,0.0,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3943.0,56715.0,6.444,0.578,620.0,0.006,0.9523,1.1,tests performed,16426.0,6483.0,6457.0,3201.0,66330.0,7.0,148.06,58.44,58.2,28.85,631.0,2.0,0.018000000000000002,25.93,611872.0,308.127,28.4,7.15,1.38,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,70.26,0.7040000000000001,38486.9,10.93,1.96,1134.110282
233,Maldives,2022-04-20,58990,2211113.0,2103.0,4067.387,57.0,0.105,,MDV,Asia,178883.0,0.0,80.429,298.0,0.0,0.0,329058.901,0.0,147.95,548.177,0.0,0.0,0.95,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2211113.0,2103.0,4067.387,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,940433.0,398557.0,383876.0,158000.0,1683.0,94.0,172.99,73.32,70.61,29.06,173.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
234,Moldova,2022-04-20,62540,,,,,,,MDA,Europe,516699.0,112.0,127.85700000000001,11487.0,2.0,1.857,128403.526,27.833000000000002,31.773000000000003,2854.605,0.49700000000000005,0.462,0.56,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2984.0,119.524,0.742,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2141239.0,1083286.0,1059141.0,82869.0,1011.0,692.0,53.21,26.92,26.32,2.06,172.0,316.0,0.008,11.11,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
235,Moldova,2022-04-21,62541,,2711.0,,,,,MDA,Europe,516864.0,165.0,122.85700000000001,11487.0,0.0,1.429,128444.53,41.004,30.531,2854.605,0.0,0.355,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2142286.0,1083286.0,1059366.0,82869.0,1047.0,669.0,53.24,26.92,26.33,2.06,166.0,316.0,0.008,11.11,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
236,Egypt,2022-04-25,26986,,,,194420.0,1.865,0.0027,EGY,Africa,515645.0,0.0,524.0,24613.0,0.0,13.0,4945.84,0.0,5.026,236.077,0.0,0.125,0.02,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,6122287.0,2817.0,58.722,0.157,194420.0,1.865,0.0027,371.0,tests performed,81384156.0,46221961.0,34130697.0,2450111.0,729239.0,107224.0,78.06,44.33,32.74,2.35,1028.0,28830.0,0.027999999999999997,43.52,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
237,Congo,2022-04-25,19411,,,,,,,COG,Africa,24079.0,0.0,0.0,385.0,0.0,0.0,4256.484,0.0,0.0,68.057,0.0,0.0,0.16,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,388006.0,9497.0,68.58800000000001,0.185,1306.0,1.47,0.0002,4566.4,tests performed,818931.0,681597.0,135954.0,12964054.0,1486.0,216.0,14.48,12.05,2.4,25.29,38.0,215.0,0.004,28.7,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
238,Congo,2022-04-26,19412,,,,,,,COG,Africa,24079.0,0.0,0.0,385.0,0.0,0.0,4256.484,0.0,0.0,68.057,0.0,0.0,0.16,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,388006.0,9497.0,68.58800000000001,0.185,1306.0,1.47,0.0002,4566.4,tests performed,818931.0,681597.0,135954.0,12964054.0,1486.0,216.0,14.48,12.05,2.4,25.29,38.0,215.0,0.004,28.7,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
239,Egypt,2022-04-26,26987,,,,194420.0,1.865,0.0,EGY,Africa,515645.0,0.0,0.0,24613.0,0.0,0.0,4945.84,0.0,0.0,236.077,0.0,0.0,0.02,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,6122287.0,2817.0,58.722,0.157,194420.0,1.865,0.0,371.0,tests performed,81384156.0,46221961.0,34130697.0,2450111.0,729239.0,103871.0,78.06,44.33,32.74,2.35,996.0,27902.0,0.027000000000000003,43.52,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
240,Egypt,2022-04-27,26988,,,,194420.0,1.865,0.0,EGY,Africa,515645.0,0.0,0.0,24613.0,0.0,0.0,4945.84,0.0,0.0,236.077,0.0,0.0,0.03,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,6122287.0,2817.0,58.722,0.157,194420.0,1.865,0.0,371.0,tests performed,81384156.0,46221961.0,34130697.0,2450111.0,729239.0,100519.0,78.06,44.33,32.74,2.35,964.0,26973.0,0.026000000000000002,43.52,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
241,Congo,2022-04-27,19413,,,,639.0,0.113,0.0,COG,Africa,24079.0,0.0,0.0,385.0,0.0,0.0,4256.484,0.0,0.0,68.057,0.0,0.0,0.15,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,388006.0,9497.0,68.58800000000001,0.185,639.0,0.113,0.0,4566.4,tests performed,818931.0,681597.0,135954.0,12964054.0,1486.0,216.0,14.48,12.05,2.4,25.29,38.0,215.0,0.004,28.7,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
242,Egypt,2022-04-28,26989,,,,194420.0,1.865,0.0,EGY,Africa,515645.0,0.0,0.0,24613.0,0.0,0.0,4945.84,0.0,0.0,236.077,0.0,0.0,0.03,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,6122287.0,2817.0,58.722,0.157,194420.0,1.865,0.0,371.0,tests performed,81384156.0,46221961.0,34130697.0,2450111.0,729239.0,97167.0,78.06,44.33,32.74,2.35,932.0,26045.0,0.025,43.52,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
243,Congo,2022-04-28,19414,,,,639.0,0.113,0.0,COG,Africa,24079.0,0.0,0.0,385.0,0.0,0.0,4256.484,0.0,0.0,68.057,0.0,0.0,0.15,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,388006.0,9497.0,68.58800000000001,0.185,639.0,0.113,0.0,4566.4,tests performed,818931.0,681597.0,135954.0,12964054.0,1486.0,216.0,14.48,12.05,2.4,25.29,38.0,215.0,0.004,28.7,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
244,Congo,2022-04-29,19415,,,,639.0,0.113,0.0,COG,Africa,24079.0,0.0,0.0,385.0,0.0,0.0,4256.484,0.0,0.0,68.057,0.0,0.0,0.15,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,388006.0,9497.0,68.58800000000001,0.185,639.0,0.113,0.0,4566.4,tests performed,818931.0,681597.0,135954.0,12964054.0,1486.0,216.0,14.48,12.05,2.4,25.29,38.0,215.0,0.004,28.7,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
245,Egypt,2022-04-29,26990,,,,194420.0,1.865,0.0,EGY,Africa,515645.0,0.0,0.0,24613.0,0.0,0.0,4945.84,0.0,0.0,236.077,0.0,0.0,0.03,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,6122287.0,2817.0,58.722,0.157,194420.0,1.865,0.0,371.0,tests performed,81384156.0,46221961.0,34130697.0,2450111.0,729239.0,93815.0,78.06,44.33,32.74,2.35,900.0,25117.0,0.024,43.52,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
246,Senegal,2022-04-29,85273,1097611.0,776.0,63.828,813.0,0.047,0.0023,SEN,Africa,85995.0,1.0,1.857,1967.0,0.0,0.28600000000000003,5000.782999999999,0.057999999999999996,0.10800000000000001,114.385,0.0,0.017,0.89,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1097611.0,776.0,63.828,0.045,813.0,0.047,0.0023,437.8,tests performed,2469499.0,1465788.0,1045680.0,7027.0,7129.0,3457.0,14.36,8.52,6.08,0.04,201.0,118.0,0.001,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
247,Egypt,2022-04-30,26991,,,,194420.0,1.865,0.0,EGY,Africa,515645.0,0.0,0.0,24613.0,0.0,0.0,4945.84,0.0,0.0,236.077,0.0,0.0,0.02,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,6122287.0,2817.0,58.722,0.157,194420.0,1.865,0.0,371.0,tests performed,82017392.0,46391282.0,34431166.0,2626381.0,729239.0,90462.0,78.67,44.5,33.02,2.52,868.0,24189.0,0.023,43.52,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
248,Congo,2022-04-30,19416,,,,639.0,0.113,0.0,COG,Africa,24079.0,0.0,0.0,385.0,0.0,0.0,4256.484,0.0,0.0,68.057,0.0,0.0,0.14,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,388006.0,9497.0,68.58800000000001,0.185,639.0,0.113,0.0,4566.4,tests performed,818931.0,681597.0,135954.0,12964054.0,1486.0,216.0,14.48,12.05,2.4,25.29,38.0,215.0,0.004,28.7,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
249,Senegal,2022-04-30,85274,1098662.0,1051.0,63.888999999999996,796.0,0.046,0.0023,SEN,Africa,85997.0,2.0,1.857,1967.0,0.0,0.14300000000000002,5000.899,0.11599999999999999,0.10800000000000001,114.385,0.0,0.008,0.96,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1098662.0,1051.0,63.888999999999996,0.061,796.0,0.046,0.0023,428.6,tests performed,2469499.0,1465788.0,1045680.0,7027.0,7129.0,2593.0,14.36,8.52,6.08,0.04,151.0,88.0,0.001,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
250,Egypt,2022-05-01,26992,11954884.0,,114.666,194420.0,1.865,0.0,EGY,Africa,515645.0,0.0,0.0,24613.0,0.0,0.0,4945.84,0.0,0.0,236.077,0.0,0.0,0.01,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,11954884.0,2817.0,114.666,0.157,194420.0,1.865,0.0,371.0,tests performed,82017392.0,46391282.0,34431166.0,2626381.0,729239.0,81913.0,78.67,44.5,33.02,2.52,786.0,21987.0,0.021,43.52,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
251,Congo,2022-05-01,19417,395040.0,,69.832,639.0,0.113,0.0,COG,Africa,24079.0,0.0,0.0,385.0,0.0,0.0,4256.484,0.0,0.0,68.057,0.0,0.0,0.14,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,818931.0,681597.0,135954.0,12964054.0,1486.0,216.0,14.48,12.05,2.4,25.29,38.0,215.0,0.004,28.7,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
252,Senegal,2022-05-01,85275,1099446.0,784.0,63.935,783.0,0.046,0.0016,SEN,Africa,85997.0,0.0,1.286,1967.0,0.0,0.0,5000.899,0.0,0.075,114.385,0.0,0.0,1.02,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1099446.0,784.0,63.935,0.046,783.0,0.046,0.0016,608.9,tests performed,2469499.0,1465788.0,1045680.0,7027.0,7129.0,1728.0,14.36,8.52,6.08,0.04,100.0,59.0,0.0,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
253,Senegal,2022-05-02,85276,1100111.0,665.0,63.974,762.0,0.044000000000000004,0.003,SEN,Africa,86005.0,8.0,2.286,1966.0,0.0,0.0,5001.3640000000005,0.465,0.133,114.32700000000001,0.0,0.0,1.11,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1100111.0,665.0,63.974,0.039,762.0,0.044000000000000004,0.003,333.3,tests performed,2469499.0,1465788.0,1045680.0,7027.0,7129.0,864.0,14.36,8.52,6.08,0.04,50.0,29.0,0.0,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
254,Senegal,2022-05-03,85277,1100659.0,548.0,64.006,757.0,0.044000000000000004,0.003,SEN,Africa,86007.0,2.0,2.286,1966.0,0.0,0.0,5001.481,0.11599999999999999,0.133,114.32700000000001,0.0,0.0,1.07,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1100659.0,548.0,64.006,0.032,757.0,0.044000000000000004,0.003,331.1,tests performed,2469499.0,1465788.0,1045680.0,7027.0,7129.0,0.0,14.36,8.52,6.08,0.04,0.0,0.0,0.0,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
255,Senegal,2022-05-04,85278,1101285.0,626.0,64.042,734.0,0.043,0.0033,SEN,Africa,86010.0,3.0,2.4290000000000003,1966.0,0.0,0.0,5001.655,0.174,0.141,114.32700000000001,0.0,0.0,1.03,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1101285.0,626.0,64.042,0.036000000000000004,734.0,0.043,0.0033,302.2,tests performed,2469499.0,1465788.0,1045680.0,7027.0,7129.0,0.0,14.36,8.52,6.08,0.04,0.0,0.0,0.0,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
256,Belarus,2022-05-04,8709,,,,6528.0,0.691,0.0503,BLR,Europe,981070.0,202.0,328.14300000000003,6958.0,4.0,3.1430000000000002,103895.353,21.392,34.75,736.852,0.424,0.33299999999999996,0.68,50.0,5.529,874.0,96.649,,,,,13157373.0,9650.0,1393.366,1.022,6528.0,0.691,0.0503,19.9,tests performed,12495345.0,6235073.0,5851853.0,691479.0,31.0,21812.0,132.33,66.03,61.97,7.32,2310.0,7331.0,0.078,16.67,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
257,Belarus,2022-05-05,8710,13180098.0,,1395.773,5901.0,0.625,0.0463,BLR,Europe,981259.0,189.0,273.286,6963.0,5.0,3.286,103915.368,20.015,28.941,737.382,0.53,0.348,0.7,50.0,5.529,874.0,96.649,,,,,13180098.0,9650.0,1395.773,1.022,5901.0,0.625,0.0463,21.6,tests performed,12495345.0,6235073.0,5851853.0,691479.0,31.0,21937.0,132.33,66.03,61.97,7.32,2323.0,7066.0,0.075,16.67,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
258,Senegal,2022-05-05,85279,1102099.0,814.0,64.089,752.0,0.044000000000000004,0.0034,SEN,Africa,86012.0,2.0,2.571,1966.0,0.0,0.0,5001.771,0.11599999999999999,0.15,114.32700000000001,0.0,0.0,1.0,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1102099.0,814.0,64.089,0.047,752.0,0.044000000000000004,0.0034,292.5,tests performed,2469499.0,1465788.0,1045680.0,7027.0,7129.0,0.0,14.36,8.52,6.08,0.04,0.0,0.0,0.0,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
259,Hungary,2022-05-05,40242,,,,5292.0,0.5489999999999999,0.0963,HUN,Europe,1903200.0,0.0,509.57099999999997,46266.0,0.0,11.0,197547.021,0.0,52.891999999999996,4802.286,0.0,1.1420000000000001,0.41,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10904626.0,16016.0,1131.871,1.662,5292.0,0.5489999999999999,0.0963,10.4,tests performed,16522050.0,6407042.0,6193238.0,4155360.0,93527.0,1299.0,171.49,66.5,64.28,43.13,135.0,133.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37232.2,12.03,3.07,3864.6018200000003
260,Belarus,2022-05-06,8711,,,,6254.0,0.662,0.0441,BLR,Europe,981838.0,579.0,275.57099999999997,6966.0,3.0,3.286,103976.68400000001,61.316,29.183000000000003,737.7,0.318,0.348,0.74,50.0,5.529,874.0,96.649,,,,,13180098.0,9650.0,1395.773,1.022,6254.0,0.662,0.0441,22.7,tests performed,12495345.0,6235073.0,5851853.0,691479.0,31.0,22061.0,132.33,66.03,61.97,7.32,2336.0,6802.0,0.07200000000000001,16.67,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
261,Hungary,2022-05-06,40243,,,,4770.0,0.495,0.0654,HUN,Europe,1903200.0,0.0,311.857,46266.0,0.0,9.286,197547.021,0.0,32.37,4802.286,0.0,0.9640000000000001,0.46,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10904626.0,16016.0,1131.871,1.662,4770.0,0.495,0.0654,15.3,tests performed,16522050.0,6407042.0,6193238.0,4155360.0,93527.0,1179.0,171.49,66.5,64.28,43.13,122.0,121.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37232.2,12.03,3.07,3864.6018200000003
262,Mongolia,2022-05-06,63083,,,,487.0,0.146,0.0323,MNG,Asia,920781.0,0.0,15.714,2179.0,0.0,0.0,276570.44399999996,0.0,4.72,654.495,0.0,0.0,0.39,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7400494.0,4118.0,2222.85,1.237,487.0,0.146,0.0323,31.0,samples tested,5490832.0,2272965.0,2175617.0,1042250.0,1100.0,321.0,164.93,68.27,65.35,31.31,96.0,0.0,0.0,2.78,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,640.8,1.56,6.55,192.47393280000003
263,Belarus,2022-05-07,8712,13202907.0,,1398.1879999999999,6505.0,0.6890000000000001,0.0436,BLR,Europe,982331.0,493.0,283.714,6966.0,0.0,2.714,104028.89300000001,52.208999999999996,30.045,737.7,0.0,0.287,0.72,50.0,5.529,874.0,96.649,,,,,13202907.0,9650.0,1398.1879999999999,1.022,6505.0,0.6890000000000001,0.0436,22.9,tests performed,12495345.0,6235073.0,5851853.0,691479.0,31.0,22186.0,132.33,66.03,61.97,7.32,2349.0,6538.0,0.069,16.67,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
264,Hungary,2022-05-07,40244,,,,4628.0,0.48,0.0674,HUN,Europe,1903200.0,0.0,311.857,46266.0,0.0,9.286,197547.021,0.0,32.37,4802.286,0.0,0.9640000000000001,0.52,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10904626.0,16016.0,1131.871,1.662,4628.0,0.48,0.0674,14.8,tests performed,16522050.0,6407042.0,6193238.0,4155360.0,93527.0,1058.0,171.49,66.5,64.28,43.13,110.0,109.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37232.2,12.03,3.07,3864.6018200000003
265,Mongolia,2022-05-07,63084,,,,487.0,0.146,0.0323,MNG,Asia,920781.0,0.0,15.714,2179.0,0.0,0.0,276570.44399999996,0.0,4.72,654.495,0.0,0.0,0.37,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7400494.0,4118.0,2222.85,1.237,487.0,0.146,0.0323,31.0,samples tested,5490832.0,2272965.0,2175617.0,1042250.0,1100.0,297.0,164.93,68.27,65.35,31.31,89.0,0.0,0.0,2.78,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,640.8,1.56,6.55,192.47393280000003
266,Mongolia,2022-05-08,63085,,,,487.0,0.146,0.0323,MNG,Asia,920781.0,0.0,15.714,2179.0,0.0,0.0,276570.44399999996,0.0,4.72,654.495,0.0,0.0,0.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7400494.0,4118.0,2222.85,1.237,487.0,0.146,0.0323,31.0,samples tested,5490832.0,2272965.0,2175617.0,1042250.0,1100.0,274.0,164.93,68.27,65.35,31.31,82.0,0.0,0.0,2.78,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,640.8,1.56,6.55,192.47393280000003
267,Hungary,2022-05-08,40245,,,,4486.0,0.466,0.0695,HUN,Europe,1903200.0,0.0,311.857,46266.0,0.0,9.286,197547.021,0.0,32.37,4802.286,0.0,0.9640000000000001,0.56,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10904626.0,16016.0,1131.871,1.662,4486.0,0.466,0.0695,14.4,tests performed,16522050.0,6407042.0,6193238.0,4155360.0,93527.0,938.0,171.49,66.5,64.28,43.13,97.0,97.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37165.7,11.92,-2.81,3857.6993
268,Belarus,2022-05-08,8713,,,,6693.0,0.7090000000000001,0.0421,BLR,Europe,982654.0,323.0,282.0,6969.0,3.0,3.1430000000000002,104063.099,34.205999999999996,29.864,738.0169999999999,0.318,0.33299999999999996,0.64,50.0,5.529,874.0,96.649,,,,,13202907.0,9650.0,1398.1879999999999,1.022,6693.0,0.7090000000000001,0.0421,23.7,tests performed,12495345.0,6235073.0,5851853.0,691479.0,31.0,22310.0,132.33,66.03,61.97,7.32,2363.0,6273.0,0.066,16.67,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
269,Nicaragua,2022-05-09,68931,,,,205.0,0.031,0.0188,NIC,North America,14422.0,0.0,3.8569999999999998,235.0,0.0,0.14300000000000002,2151.7729999999997,0.0,0.575,35.062,0.0,0.021,0.81,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,193508.0,1761.0,28.872,0.344,205.0,0.031,0.0188,53.2,tests performed,10404774.0,5714698.0,4690076.0,2756062.0,7377.0,4907.0,155.24,85.26,69.98,53.76,732.0,1611.0,0.024,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
270,Timor,2022-05-09,96616,,,,143.0,0.106,0.011000000000000001,TLS,Asia,22885.0,0.0,1.571,130.0,0.0,0.0,17029.113999999998,0.0,1.169,96.735,0.0,0.0,0.75,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,263677.0,504.0,196.206,0.375,143.0,0.106,0.011000000000000001,91.0,tests performed,1475539.0,786929.0,629125.0,59485.0,7881.0,6804.0,109.8,58.56,46.81,4.43,5063.0,1068.0,0.079,19.44,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
271,Belarus,2022-05-09,8714,,,,6880.0,0.7290000000000001,0.0411,BLR,Europe,982809.0,155.0,283.0,6969.0,0.0,3.1430000000000002,104079.513,16.415,29.97,738.0169999999999,0.0,0.33299999999999996,0.52,50.0,5.529,874.0,96.649,,,,,13202907.0,9650.0,1398.1879999999999,1.022,6880.0,0.7290000000000001,0.0411,24.3,tests performed,12495345.0,6235073.0,5851853.0,691479.0,31.0,22310.0,132.33,66.03,61.97,7.32,2363.0,6273.0,0.066,16.67,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
272,Hungary,2022-05-09,40246,,,,4344.0,0.451,0.0,HUN,Europe,1903200.0,0.0,0.0,46266.0,0.0,0.0,197547.021,0.0,0.0,4802.286,0.0,0.0,0.58,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10904626.0,16016.0,1131.871,1.662,4344.0,0.451,0.0,14.4,tests performed,16522050.0,6407042.0,6193238.0,4155360.0,93527.0,938.0,171.49,66.5,64.28,43.13,97.0,97.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37165.7,11.92,-2.81,3857.6993
273,Mongolia,2022-05-09,63086,,,,487.0,0.146,0.0,MNG,Asia,920781.0,0.0,0.0,2179.0,0.0,0.0,276570.44399999996,0.0,0.0,654.495,0.0,0.0,0.31,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7400494.0,4118.0,2222.85,1.237,487.0,0.146,0.0,31.0,samples tested,5490832.0,2272965.0,2175617.0,1042250.0,1100.0,251.0,164.93,68.27,65.35,31.31,75.0,0.0,0.0,2.78,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,640.8,1.56,6.55,192.47393280000003
274,Hungary,2022-05-10,40247,,,,4344.0,0.451,0.0,HUN,Europe,1903200.0,0.0,0.0,46266.0,0.0,0.0,197547.021,0.0,0.0,4802.286,0.0,0.0,0.63,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10904626.0,16016.0,1131.871,1.662,4344.0,0.451,0.0,14.4,tests performed,16530488.0,6407918.0,6194102.0,4162198.0,93527.0,938.0,171.58,66.51,64.29,43.2,97.0,97.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37165.7,11.92,-2.81,3857.6993
275,Belarus,2022-05-10,8715,13220483.0,,1400.05,7068.0,0.7490000000000001,0.0404,BLR,Europe,982867.0,58.0,285.57099999999997,6978.0,9.0,3.429,104085.655,6.142,30.241999999999997,738.97,0.953,0.363,0.4,50.0,5.529,874.0,96.649,,,,,13220483.0,9650.0,1400.05,1.022,7068.0,0.7490000000000001,0.0404,24.8,tests performed,12495345.0,6235073.0,5851853.0,691479.0,31.0,22310.0,132.33,66.03,61.97,7.32,2363.0,6273.0,0.066,16.67,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
276,Nicaragua,2022-05-10,68932,,,,205.0,0.031,0.0188,NIC,North America,14422.0,0.0,3.8569999999999998,235.0,0.0,0.14300000000000002,2151.7729999999997,0.0,0.575,35.062,0.0,0.021,0.8,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,193508.0,1761.0,28.872,0.344,205.0,0.031,0.0188,53.2,tests performed,10404774.0,5714698.0,4690076.0,2756062.0,7377.0,5241.0,155.24,85.26,69.98,53.76,782.0,1758.0,0.026000000000000002,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
277,Timor,2022-05-10,96617,,,,143.0,0.106,0.011000000000000001,TLS,Asia,22886.0,1.0,1.571,130.0,0.0,0.0,17029.858,0.7440000000000001,1.169,96.735,0.0,0.0,0.74,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,263677.0,504.0,196.206,0.375,143.0,0.106,0.011000000000000001,91.0,tests performed,1527044.0,794675.0,655184.0,77185.0,7881.0,7358.0,113.63,59.13,48.75,5.74,5475.0,1107.0,0.08199999999999999,19.44,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
278,Mongolia,2022-05-10,63087,,,,487.0,0.146,0.0,MNG,Asia,920781.0,0.0,0.0,2179.0,0.0,0.0,276570.44399999996,0.0,0.0,654.495,0.0,0.0,0.31,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7400494.0,4118.0,2222.85,1.237,487.0,0.146,0.0,31.0,samples tested,5490832.0,2272965.0,2175617.0,1042250.0,1100.0,227.0,164.93,68.27,65.35,31.31,68.0,0.0,0.0,2.78,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,640.8,1.56,6.55,192.47393280000003
279,Mongolia,2022-05-11,63088,,,,487.0,0.146,0.4242,MNG,Asia,922227.0,1446.0,206.571,2179.0,0.0,0.0,277004.772,434.32800000000003,62.047,654.495,0.0,0.0,0.32,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7400494.0,4118.0,2222.85,1.237,487.0,0.146,0.4242,2.4,samples tested,5491917.0,2272965.0,2175617.0,1043335.0,1100.0,204.0,164.96,68.27,65.35,31.34,61.0,0.0,0.0,2.78,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,640.8,1.56,6.55,192.47393280000003
280,Nicaragua,2022-05-11,68933,,,,205.0,0.031,0.0174,NIC,North America,14447.0,25.0,3.571,236.0,1.0,0.14300000000000002,2155.5029999999997,3.73,0.5329999999999999,35.211,0.149,0.021,0.78,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,193508.0,1761.0,28.872,0.344,205.0,0.031,0.0174,57.4,tests performed,10404774.0,5714698.0,4690076.0,2756062.0,7377.0,5575.0,155.24,85.26,69.98,53.76,832.0,1904.0,0.027999999999999997,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
281,Timor,2022-05-11,96618,,,,144.0,0.107,0.0089,TLS,Asia,22888.0,2.0,1.286,130.0,0.0,0.0,17031.346,1.4880000000000002,0.9570000000000001,96.735,0.0,0.0,0.74,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,263677.0,504.0,196.206,0.375,144.0,0.107,0.0089,112.0,tests performed,1527044.0,794675.0,655184.0,77185.0,7881.0,6518.0,113.63,59.13,48.75,5.74,4850.0,994.0,0.07400000000000001,19.44,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
282,Hungary,2022-05-11,40248,10943720.0,39094.0,1135.9289999999999,4344.0,0.451,0.2219,HUN,Europe,1909948.0,6748.0,964.0,46343.0,77.0,11.0,198247.445,700.424,100.061,4810.278,7.992000000000001,1.1420000000000001,0.68,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10943720.0,39094.0,1135.9289999999999,4.058,4344.0,0.451,0.2219,4.5,tests performed,16530488.0,6407918.0,6194102.0,4162198.0,93527.0,938.0,171.58,66.51,64.29,43.2,97.0,100.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37165.7,11.92,-2.81,3857.6993
283,Botswana,2022-05-12,12929,,,,989.0,0.413,0.0179,BWA,Africa,306324.0,0.0,17.714000000000002,2690.0,0.0,0.0,127781.94900000001,0.0,7.388999999999999,1122.124,0.0,0.0,0.37,22.0,1.859,143.0,12.085,,,760.0,65.335,2276591.0,2647.0,949.672,1.104,989.0,0.413,0.0179,55.8,tests performed,1920000.0,1479625.0,1339651.0,311490.0,10435.0,16761.0,80.09,61.72,55.88,12.99,6992.0,515.0,0.021,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
284,Mongolia,2022-05-12,63089,7408778.0,,2225.3379999999997,487.0,0.146,0.4242,MNG,Asia,922227.0,0.0,206.571,2179.0,0.0,0.0,277004.772,0.0,62.047,654.495,0.0,0.0,0.32,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,5491917.0,2272965.0,2175617.0,1043335.0,1100.0,175.0,164.96,68.27,65.35,31.34,53.0,0.0,0.0,2.78,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,640.8,1.56,6.55,192.47393280000003
285,Comoros,2022-05-12,19399,,,,1306.0,1.47,0.0001,COM,Africa,8108.0,0.0,0.14300000000000002,160.0,0.0,0.0,9125.944,0.0,0.161,180.088,0.0,0.0,0.29,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,6227.0,9497.0,7.0089999999999995,0.185,1306.0,1.47,0.0001,9132.9,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
286,Nicaragua,2022-05-12,68934,,,,205.0,0.031,0.0174,NIC,North America,14447.0,0.0,3.571,236.0,0.0,0.14300000000000002,2155.5029999999997,0.0,0.5329999999999999,35.211,0.0,0.021,0.76,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,193508.0,1761.0,28.872,0.344,205.0,0.031,0.0174,57.4,tests performed,10404774.0,5714698.0,4690076.0,2756062.0,7377.0,5908.0,155.24,85.26,69.98,53.76,881.0,2051.0,0.031,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
287,Timor,2022-05-12,96619,,,,144.0,0.107,0.005,TLS,Asia,22888.0,0.0,0.7140000000000001,130.0,0.0,0.0,17031.346,0.0,0.532,96.735,0.0,0.0,0.73,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,263677.0,504.0,196.206,0.375,144.0,0.107,0.005,201.7,tests performed,1527044.0,794675.0,655184.0,77185.0,7881.0,5678.0,113.63,59.13,48.75,5.74,4225.0,882.0,0.066,19.44,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
288,United Kingdom,2022-05-13,102391,501743040.0,287995.0,7356.169,254393.0,3.73,0.0373,GBR,Europe,22255282.0,6587.0,9483.286,177425.0,151.0,148.714,326289.747,96.574,139.037,2601.268,2.214,2.18,0.85,189.0,2.7710000000000004,8202.0,120.251,241.0,5.156000000000001,5399.0,79.156,501743040.0,287995.0,7356.169,4.2219999999999995,254393.0,3.73,0.0373,26.8,tests performed,147365638.0,53352396.0,49859243.0,39511695.0,86459.0,95966.0,216.06,78.22,73.1,57.93,1407.0,10008.0,0.015,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,134552.9,9.21,-0.92,1972.7106469999999
289,Niger,2022-05-13,69027,,,,238.0,0.009000000000000001,0.0336,NER,Africa,9013.0,3.0,8.0,310.0,0.0,0.14300000000000002,358.64300000000003,0.11900000000000001,0.318,12.335,0.0,0.006,0.39,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,252609.0,374.0,10.052,0.015,238.0,0.009000000000000001,0.0336,29.8,tests performed,2692524.0,2190790.0,1549279.0,2756062.0,7377.0,90.0,10.71,8.72,6.16,53.76,4.0,0.0,0.0,29.63,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
290,Nicaragua,2022-05-13,68935,,,,205.0,0.031,0.0174,NIC,North America,14447.0,0.0,3.571,236.0,0.0,0.14300000000000002,2155.5029999999997,0.0,0.5329999999999999,35.211,0.0,0.021,0.75,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,193508.0,1761.0,28.872,0.344,205.0,0.031,0.0174,57.4,tests performed,10448467.0,5730078.0,4718389.0,2756062.0,7377.0,6242.0,155.89,85.49,70.4,53.76,931.0,2197.0,0.033,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
291,Botswana,2022-05-13,12930,,,,945.0,0.39399999999999996,0.0187,BWA,Africa,306324.0,0.0,17.714000000000002,2690.0,0.0,0.0,127781.94900000001,0.0,7.388999999999999,1122.124,0.0,0.0,0.37,22.0,1.859,143.0,12.085,,,760.0,65.335,2276591.0,2647.0,949.672,1.104,945.0,0.39399999999999996,0.0187,53.3,tests performed,1920000.0,1479625.0,1339651.0,311490.0,10435.0,20950.0,80.09,61.72,55.88,12.99,8739.0,497.0,0.021,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
292,Timor,2022-05-13,96620,,,,145.0,0.10800000000000001,0.0039,TLS,Asia,22888.0,0.0,0.5710000000000001,131.0,1.0,0.14300000000000002,17031.346,0.0,0.425,97.479,0.7440000000000001,0.106,0.73,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,263677.0,504.0,196.206,0.375,145.0,0.10800000000000001,0.0039,253.9,tests performed,1527044.0,794675.0,655184.0,77185.0,7881.0,4837.0,113.63,59.13,48.75,5.74,3599.0,769.0,0.057,19.44,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
293,Comoros,2022-05-13,19400,,,,1306.0,1.47,0.0001,COM,Africa,8108.0,0.0,0.14300000000000002,160.0,0.0,0.0,9125.944,0.0,0.161,180.088,0.0,0.0,0.28,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,6227.0,9497.0,7.0089999999999995,0.185,1306.0,1.47,0.0001,9132.9,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
294,Comoros,2022-05-14,19401,,,,1306.0,1.47,0.0001,COM,Africa,8108.0,0.0,0.14300000000000002,160.0,0.0,0.0,9125.944,0.0,0.161,180.088,0.0,0.0,0.27,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,6227.0,9497.0,7.0089999999999995,0.185,1306.0,1.47,0.0001,9132.9,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
295,Jordan,2022-05-14,48826,,,,2852.0,0.278,0.0042,JOR,Asia,1696054.0,0.0,12.0,14066.0,0.0,0.0,165162.174,0.0,1.169,1369.751,0.0,0.0,0.3,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16785446.0,42668.0,1634.5710000000001,4.155,2852.0,0.278,0.0042,237.7,tests performed,9922666.0,4774468.0,4494834.0,657492.0,19111.0,2636.0,96.63,46.49,43.77,6.4,257.0,1183.0,0.012,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
296,Curacao,2022-05-14,22632,,,,306.0,1.857,0.2101,CUW,North America,43017.0,0.0,64.286,275.0,0.0,0.0,261031.82100000003,0.0,390.093,1668.73,0.0,0.0,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,19797.0,2119.0,120.13,12.857999999999999,306.0,1.857,0.2101,4.8,tests performed,251934.0,107997.0,99104.0,44833.0,67.0,83.0,152.88,65.53,60.14,27.21,504.0,5.0,0.003,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
297,Timor,2022-05-14,96621,,,,145.0,0.10800000000000001,0.0039,TLS,Asia,22889.0,1.0,0.5710000000000001,131.0,0.0,0.14300000000000002,17032.09,0.7440000000000001,0.425,97.479,0.0,0.106,0.77,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,263677.0,504.0,196.206,0.375,145.0,0.10800000000000001,0.0039,253.9,tests performed,1527044.0,794675.0,655184.0,77185.0,7881.0,3997.0,113.63,59.13,48.75,5.74,2974.0,657.0,0.049,19.44,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
298,Botswana,2022-05-14,12931,,,,901.0,0.376,0.0197,BWA,Africa,306324.0,0.0,17.714000000000002,2690.0,0.0,0.0,127781.94900000001,0.0,7.388999999999999,1122.124,0.0,0.0,0.36,22.0,1.859,143.0,12.085,,,760.0,65.335,2276591.0,2647.0,949.672,1.104,901.0,0.376,0.0197,50.9,tests performed,1920000.0,1479625.0,1339651.0,311490.0,10435.0,25139.0,80.09,61.72,55.88,12.99,10487.0,479.0,0.02,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
299,United Kingdom,2022-05-14,102392,501898010.0,154970.0,7358.441,251096.0,3.681,0.0378,GBR,Europe,22255282.0,0.0,9483.286,177425.0,0.0,148.714,326289.747,0.0,139.037,2601.268,0.0,2.18,0.86,197.0,2.888,7862.0,115.26700000000001,241.0,5.156000000000001,5307.0,77.807,501898010.0,154970.0,7358.441,2.272,251096.0,3.681,0.0378,26.5,tests performed,147466205.0,53372858.0,49872067.0,39527593.0,100567.0,90470.0,216.2,78.25,73.12,57.95,1326.0,9437.0,0.013999999999999999,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,134552.9,9.21,-0.92,1972.7106469999999
300,Nicaragua,2022-05-14,68936,,,,205.0,0.031,0.0174,NIC,North America,14447.0,0.0,3.571,236.0,0.0,0.14300000000000002,2155.5029999999997,0.0,0.5329999999999999,35.211,0.0,0.021,0.73,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,193508.0,1761.0,28.872,0.344,205.0,0.031,0.0174,57.4,tests performed,10448467.0,5730078.0,4718389.0,2756062.0,7377.0,6155.0,155.89,85.49,70.4,53.76,918.0,1989.0,0.03,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
301,Niger,2022-05-14,69028,,,,220.0,0.009000000000000001,0.0364,NER,Africa,9013.0,0.0,8.0,310.0,0.0,0.14300000000000002,358.64300000000003,0.0,0.318,12.335,0.0,0.006,0.37,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,252609.0,374.0,10.052,0.015,220.0,0.009000000000000001,0.0364,27.5,tests performed,2692524.0,2190790.0,1549279.0,2756062.0,7377.0,90.0,10.71,8.72,6.16,53.76,4.0,0.0,0.0,29.63,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
302,United Kingdom,2022-05-15,102393,502057183.0,159173.0,7360.774,248423.0,3.642,0.0382,GBR,Europe,22255282.0,0.0,9483.286,177425.0,0.0,148.714,326289.747,0.0,139.037,2601.268,0.0,2.18,0.86,199.0,2.918,7846.0,115.03200000000001,241.0,5.156000000000001,5185.0,76.018,502057183.0,159173.0,7360.774,2.334,248423.0,3.642,0.0382,26.2,tests performed,147509967.0,53382948.0,49877776.0,39535712.0,43762.0,89469.0,216.27,78.27,73.13,57.96,1312.0,9355.0,0.013999999999999999,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137172.7,9.32,23.83,2011.12013
303,Botswana,2022-05-15,12932,,,,857.0,0.35700000000000004,0.0207,BWA,Africa,306324.0,0.0,17.714000000000002,2690.0,0.0,0.0,127781.94900000001,0.0,7.388999999999999,1122.124,0.0,0.0,0.36,22.0,1.859,143.0,12.085,,,760.0,65.335,2276591.0,2647.0,949.672,1.104,857.0,0.35700000000000004,0.0207,48.4,tests performed,1920000.0,1479625.0,1339651.0,311490.0,10435.0,29328.0,80.09,61.72,55.88,12.99,12234.0,461.0,0.019,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
304,Curacao,2022-05-15,22633,,,,310.0,1.881,0.2074,CUW,North America,43017.0,0.0,64.286,275.0,0.0,0.0,261031.82100000003,0.0,390.093,1668.73,0.0,0.0,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,19797.0,2119.0,120.13,12.857999999999999,310.0,1.881,0.2074,4.8,tests performed,252103.0,108038.0,99211.0,44854.0,169.0,93.0,152.98,65.56,60.2,27.22,564.0,11.0,0.006999999999999999,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
305,Jordan,2022-05-15,48827,,,,2800.0,0.273,0.0043,JOR,Asia,1696054.0,0.0,12.0,14066.0,0.0,0.0,165162.174,0.0,1.169,1369.751,0.0,0.0,0.26,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16785446.0,42668.0,1634.5710000000001,4.155,2800.0,0.273,0.0043,233.3,tests performed,9922666.0,4774468.0,4494834.0,657492.0,19111.0,2566.0,96.63,46.49,43.77,6.4,250.0,1180.0,0.011000000000000001,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
306,Nicaragua,2022-05-15,68937,196380.0,,29.3,205.0,0.031,0.0174,NIC,North America,14447.0,0.0,3.571,236.0,0.0,0.14300000000000002,2155.5029999999997,0.0,0.5329999999999999,35.211,0.0,0.021,0.71,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,196380.0,1761.0,29.3,0.344,205.0,0.031,0.0174,57.4,tests performed,10448467.0,5730078.0,4718389.0,2756062.0,7377.0,6069.0,155.89,85.49,70.4,53.76,905.0,1781.0,0.027000000000000003,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
307,Comoros,2022-05-15,19402,,,,1306.0,1.47,0.0001,COM,Africa,8108.0,0.0,0.14300000000000002,160.0,0.0,0.0,9125.944,0.0,0.161,180.088,0.0,0.0,0.26,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,6227.0,9497.0,7.0089999999999995,0.185,1306.0,1.47,0.0001,9132.9,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
308,Niger,2022-05-15,69029,253043.0,,10.068999999999999,202.0,0.008,0.0396,NER,Africa,9013.0,0.0,8.0,310.0,0.0,0.14300000000000002,358.64300000000003,0.0,0.318,12.335,0.0,0.006,0.35,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,253043.0,374.0,10.068999999999999,0.015,202.0,0.008,0.0396,25.2,tests performed,2692524.0,2190790.0,1549987.0,2756062.0,7377.0,90.0,10.71,8.72,6.17,53.76,4.0,0.0,0.0,29.63,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
309,Timor,2022-05-15,96622,264839.0,,197.071,145.0,0.10800000000000001,0.0039,TLS,Asia,22889.0,0.0,0.5710000000000001,131.0,0.0,0.14300000000000002,17032.09,0.0,0.425,97.479,0.0,0.106,0.79,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,264839.0,504.0,197.071,0.375,145.0,0.10800000000000001,0.0039,253.9,tests performed,1527044.0,794675.0,655184.0,77185.0,7881.0,3157.0,113.63,59.13,48.75,5.74,2349.0,545.0,0.040999999999999995,19.44,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
310,Niger,2022-05-16,69030,,,,209.0,0.008,0.0185,NER,Africa,9013.0,0.0,3.8569999999999998,310.0,0.0,0.14300000000000002,358.64300000000003,0.0,0.153,12.335,0.0,0.006,0.33,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,253043.0,374.0,10.068999999999999,0.015,209.0,0.008,0.0185,54.2,tests performed,2692524.0,2190790.0,1549987.0,2756062.0,7377.0,90.0,10.71,8.72,6.17,53.76,4.0,28.0,0.0,29.63,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
311,United Kingdom,2022-05-16,102394,502356584.0,299401.0,7365.164000000001,245417.0,3.5980000000000003,0.0372,GBR,Europe,22279102.0,23820.0,9135.714,177583.0,158.0,141.0,326638.978,349.23,133.941,2603.585,2.316,2.0669999999999997,0.87,189.0,2.7710000000000004,7661.0,112.32,241.0,5.156000000000001,5026.0,73.687,502356584.0,299401.0,7365.164000000001,4.39,245417.0,3.5980000000000003,0.0372,26.9,tests performed,147577271.0,53387722.0,49883377.0,39551325.0,67304.0,86528.0,216.37,78.27,73.14,57.99,1269.0,9193.0,0.013000000000000001,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137172.7,9.32,23.83,2011.12013
312,Jordan,2022-05-16,48828,,,,2749.0,0.268,0.0202,JOR,Asia,1696359.0,305.0,55.571000000000005,14066.0,0.0,0.0,165191.875,29.701,5.412000000000001,1369.751,0.0,0.0,0.23,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16785446.0,42668.0,1634.5710000000001,4.155,2749.0,0.268,0.0202,49.5,tests performed,9922666.0,4774468.0,4494834.0,657492.0,19111.0,2496.0,96.63,46.49,43.77,6.4,243.0,1177.0,0.011000000000000001,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
313,Comoros,2022-05-16,19403,,,,1306.0,1.47,0.0001,COM,Africa,8108.0,0.0,0.14300000000000002,160.0,0.0,0.0,9125.944,0.0,0.161,180.088,0.0,0.0,0.25,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,6227.0,9497.0,7.0089999999999995,0.185,1306.0,1.47,0.0001,9132.9,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
314,Botswana,2022-05-16,12933,,,,857.0,0.35700000000000004,0.0207,BWA,Africa,306324.0,0.0,17.714000000000002,2690.0,0.0,0.0,127781.94900000001,0.0,7.388999999999999,1122.124,0.0,0.0,0.36,22.0,1.859,143.0,12.085,,,760.0,65.335,2276591.0,2647.0,949.672,1.104,857.0,0.35700000000000004,0.0207,48.4,tests performed,1920000.0,1479625.0,1339651.0,311490.0,10435.0,29328.0,80.09,61.72,55.88,12.99,12234.0,461.0,0.019,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
315,Curacao,2022-05-16,22634,,,,314.0,1.905,0.2047,CUW,North America,43017.0,0.0,64.286,275.0,0.0,0.0,261031.82100000003,0.0,390.093,1668.73,0.0,0.0,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,19797.0,2119.0,120.13,12.857999999999999,314.0,1.905,0.2047,4.9,tests performed,252104.0,108038.0,99211.0,44855.0,1.0,80.0,152.98,65.56,60.2,27.22,485.0,10.0,0.006,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
316,Botswana,2022-05-17,12934,,,,857.0,0.35700000000000004,0.0483,BWA,Africa,306614.0,290.0,41.428999999999995,2692.0,2.0,0.28600000000000003,127902.92199999999,120.97200000000001,17.282,1122.958,0.8340000000000001,0.11900000000000001,0.35,22.0,1.859,143.0,12.085,,,760.0,65.335,2276591.0,2647.0,949.672,1.104,857.0,0.35700000000000004,0.0483,20.7,tests performed,1920000.0,1479625.0,1339651.0,311490.0,10435.0,29328.0,80.09,61.72,55.88,12.99,12234.0,461.0,0.019,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
317,Jordan,2022-05-17,48829,,,,2697.0,0.263,0.0162,JOR,Asia,1696359.0,0.0,43.571000000000005,14066.0,0.0,0.0,165191.875,0.0,4.243,1369.751,0.0,0.0,0.2,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16785446.0,42668.0,1634.5710000000001,4.155,2697.0,0.263,0.0162,61.9,tests performed,9922666.0,4774468.0,4494834.0,657492.0,19111.0,2426.0,96.63,46.49,43.77,6.4,236.0,1174.0,0.011000000000000001,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
318,Niger,2022-05-17,69031,,,,215.0,0.009000000000000001,0.0053,NER,Africa,9013.0,0.0,1.143,310.0,0.0,0.14300000000000002,358.64300000000003,0.0,0.045,12.335,0.0,0.006,0.31,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,253043.0,374.0,10.068999999999999,0.015,215.0,0.009000000000000001,0.0053,188.1,tests performed,2692524.0,2190790.0,1549987.0,2756062.0,7377.0,90.0,10.71,8.72,6.17,53.76,4.0,56.0,0.0,29.63,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
319,United Kingdom,2022-05-17,102395,502803664.0,447080.0,7371.719,265280.0,3.889,0.0335,GBR,Europe,22287698.0,8596.0,8876.143,177768.0,185.0,126.85700000000001,326765.006,126.02799999999999,130.135,2606.297,2.7119999999999997,1.86,0.87,201.0,2.947,7316.0,107.262,241.0,5.156000000000001,4830.0,70.814,502803664.0,447080.0,7371.719,6.555,265280.0,3.889,0.0335,29.9,tests performed,147655047.0,53393153.0,49889298.0,39568655.0,77776.0,82925.0,216.48,78.28,73.14,58.01,1216.0,8937.0,0.013000000000000001,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137172.7,9.32,23.83,2011.12013
320,Curacao,2022-05-17,22635,,,,318.0,1.93,0.2022,CUW,North America,43017.0,0.0,64.286,275.0,0.0,0.0,261031.82100000003,0.0,390.093,1668.73,0.0,0.0,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,19797.0,2119.0,120.13,12.857999999999999,318.0,1.93,0.2022,4.9,tests performed,252245.0,108049.0,99220.0,44976.0,141.0,87.0,153.07,65.57,60.21,27.29,528.0,11.0,0.006999999999999999,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
321,Comoros,2022-05-17,19404,,,,1306.0,1.47,0.0002,COM,Africa,8110.0,2.0,0.28600000000000003,160.0,0.0,0.0,9128.195,2.251,0.322,180.088,0.0,0.0,0.24,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,6227.0,9497.0,7.0089999999999995,0.185,1306.0,1.47,0.0002,4566.4,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
322,Oman,2022-05-18,72887,,,,622.0,0.11900000000000001,0.0266,OMN,Asia,389460.0,13.0,16.570999999999998,4260.0,0.0,0.14300000000000002,74560.974,2.489,3.173,815.564,0.0,0.027000000000000003,0.43,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,1986264.0,1943.0,380.264,0.355,622.0,0.11900000000000001,0.0266,37.5,tests performed,7039789.0,3263006.0,3030281.0,751888.0,3650.0,530.0,134.77,62.47,58.01,14.39,101.0,84.0,0.002,55.56,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4342.0,19.53,-8.96,831.2631524
323,Curacao,2022-05-18,22636,,,,321.0,1.9480000000000002,0.2114,CUW,North America,43149.0,132.0,67.857,276.0,1.0,0.14300000000000002,261832.81100000002,800.99,411.765,1674.7979999999998,6.068,0.867,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,19797.0,2119.0,120.13,12.857999999999999,321.0,1.9480000000000002,0.2114,4.7,tests performed,252326.0,108052.0,99229.0,45045.0,81.0,85.0,153.11,65.57,60.21,27.33,516.0,11.0,0.006999999999999999,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
324,Comoros,2022-05-18,19405,100289.0,,112.88,1306.0,1.47,0.0002,COM,Africa,8110.0,0.0,0.28600000000000003,160.0,0.0,0.0,9128.195,0.0,0.322,180.088,0.0,0.0,0.23,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,100289.0,9497.0,112.88,0.185,1306.0,1.47,0.0002,4566.4,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
325,Botswana,2022-05-18,12935,2285160.0,,953.2460000000001,857.0,0.35700000000000004,0.0483,BWA,Africa,306614.0,0.0,41.428999999999995,2692.0,0.0,0.28600000000000003,127902.92199999999,0.0,17.282,1122.958,0.0,0.11900000000000001,0.35,22.0,1.859,143.0,12.085,,,760.0,65.335,2285160.0,2647.0,953.2460000000001,1.104,857.0,0.35700000000000004,0.0483,20.7,tests performed,1920000.0,1479625.0,1339651.0,311490.0,10435.0,29328.0,80.09,61.72,55.88,12.99,12234.0,461.0,0.019,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
326,Jordan,2022-05-18,48830,,,,2645.0,0.258,0.0165,JOR,Asia,1696359.0,0.0,43.571000000000005,14066.0,0.0,0.0,165191.875,0.0,4.243,1369.751,0.0,0.0,0.18,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16785446.0,42668.0,1634.5710000000001,4.155,2645.0,0.258,0.0165,60.7,tests performed,9922666.0,4774468.0,4494834.0,657492.0,19111.0,2356.0,96.63,46.49,43.77,6.4,229.0,1171.0,0.011000000000000001,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
327,Iraq,2022-05-18,43855,,,,11852.0,0.28800000000000003,0.0099,IRQ,Asia,2326852.0,126.0,117.0,25216.0,0.0,0.14300000000000002,56505.31,3.06,2.841,612.346,0.0,0.003,1.03,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,18137544.0,20703.0,440.452,0.503,11852.0,0.28800000000000003,0.0099,101.3,tests performed,18190992.0,10580198.0,7438208.0,172586.0,16843.0,10638.0,44.18,25.69,18.06,0.42,258.0,5685.0,0.013999999999999999,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
328,Kuwait,2022-05-18,51252,,,,6104.0,1.41,0.0094,KWT,Asia,632474.0,400.0,57.143,2555.0,0.0,0.0,146116.728,92.41,13.200999999999999,590.2669999999999,0.0,0.0,0.55,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,7763313.0,8163.0,1793.5120000000002,1.886,6104.0,1.41,0.0094,106.8,tests performed,8002689.0,3422607.0,3303573.0,1276509.0,4709.0,2522.0,184.88,79.07,76.32,29.49,583.0,208.0,0.005,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
329,United Kingdom,2022-05-18,102396,503024387.0,220723.0,7374.955,262344.0,3.846,0.0337,GBR,Europe,22295739.0,8041.0,8834.857,177895.0,127.0,115.286,326882.897,117.891,129.53,2608.159,1.8619999999999999,1.69,0.89,188.0,2.7560000000000002,6939.0,101.734,241.0,5.156000000000001,4768.0,69.905,503024387.0,220723.0,7374.955,3.236,262344.0,3.846,0.0337,29.7,tests performed,147734156.0,53398518.0,49895254.0,39585631.0,79109.0,79372.0,216.6,78.29,73.15,58.04,1164.0,8732.0,0.013000000000000001,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137172.7,9.32,23.83,2011.12013
330,Niger,2022-05-18,69032,,,,222.0,0.009000000000000001,0.0167,NER,Africa,9031.0,18.0,3.714,310.0,0.0,0.14300000000000002,359.36,0.716,0.14800000000000002,12.335,0.0,0.006,0.29,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,253043.0,374.0,10.068999999999999,0.015,222.0,0.009000000000000001,0.0167,59.8,tests performed,2692524.0,2190790.0,1549987.0,2756062.0,7377.0,90.0,10.71,8.72,6.17,53.76,4.0,84.0,0.0,29.63,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
331,Yemen,2022-05-18,105182,,,,84.0,0.003,0.0,YEM,Asia,11819.0,0.0,0.0,2149.0,0.0,0.0,387.62699999999995,0.0,0.0,70.48100000000001,0.0,0.0,0.04,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,329592.0,56715.0,10.81,0.578,84.0,0.003,0.0,587.4,tests performed,828687.0,663004.0,425619.0,2136305401.0,7669290.0,777.0,2.72,2.17,1.4,27.13,25.0,764.0,0.003,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
332,Syria,2022-05-18,94508,,,,221.0,0.012,0.0052,SYR,Asia,55873.0,1.0,1.143,3150.0,0.0,0.0,3057.228,0.055,0.063,172.36,0.0,0.0,0.61,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,167560.0,9789.0,9.168,1.123,221.0,0.012,0.0052,193.4,tests performed,3801752.0,2512115.0,1598343.0,16064.0,1091.0,6156.0,20.8,13.75,8.75,0.09,337.0,2925.0,0.016,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
333,Hong Kong,2022-05-18,39445,,,,72419.0,9.588,,HKG,Asia,1209397.0,329.0,289.42900000000003,9365.0,4.0,1.429,160125.649,43.56,38.321,1239.938,0.53,0.18899999999999997,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,47688630.0,263.0,6314.033,0.023,72419.0,9.588,0.0186,53.7,tests performed,16542726.0,6675994.0,6267280.0,3599452.0,28440.0,29324.0,219.03,88.39,82.98,47.66,3883.0,2219.0,0.028999999999999998,56.48,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
334,Oman,2022-05-19,72888,,,,622.0,0.11900000000000001,0.0237,OMN,Asia,389473.0,13.0,14.714,4260.0,0.0,0.14300000000000002,74563.462,2.489,2.8169999999999997,815.564,0.0,0.027000000000000003,0.39,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,1986264.0,1943.0,380.264,0.355,622.0,0.11900000000000001,0.0237,42.3,tests performed,7039789.0,3263006.0,3030281.0,751888.0,3650.0,530.0,134.77,62.47,58.01,14.39,101.0,92.0,0.002,55.56,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4342.0,19.53,-8.96,831.2631524
335,Syria,2022-05-19,94509,,,,221.0,0.012,0.0052,SYR,Asia,55875.0,2.0,1.143,3150.0,0.0,0.0,3057.3379999999997,0.109,0.063,172.36,0.0,0.0,0.64,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,167560.0,9789.0,9.168,1.123,221.0,0.012,0.0052,193.4,tests performed,3801752.0,2512115.0,1598343.0,16064.0,1091.0,5625.0,20.8,13.75,8.75,0.09,308.0,2673.0,0.015,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
336,United Kingdom,2022-05-19,102397,503270347.0,245960.0,7378.561,259329.0,3.802,0.0326,GBR,Europe,22307938.0,12199.0,8463.286,178064.0,169.0,112.85700000000001,327061.749,178.852,124.08200000000001,2610.637,2.478,1.655,0.91,191.0,2.8,6789.0,99.535,241.0,5.156000000000001,4632.0,67.911,503270347.0,245960.0,7378.561,3.6060000000000003,259329.0,3.802,0.0326,30.6,tests performed,147818312.0,53407449.0,49903328.0,39604509.0,84156.0,77019.0,216.72,78.3,73.16,58.07,1129.0,8938.0,0.013000000000000001,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137172.7,9.32,23.83,2011.12013
337,Kuwait,2022-05-19,51253,,,,6104.0,1.41,0.0094,KWT,Asia,632474.0,0.0,57.143,2555.0,0.0,0.0,146116.728,0.0,13.200999999999999,590.2669999999999,0.0,0.0,0.57,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,7763313.0,8163.0,1793.5120000000002,1.886,6104.0,1.41,0.0094,106.8,tests performed,8002689.0,3422607.0,3303573.0,1276509.0,4709.0,2519.0,184.88,79.07,76.32,29.49,582.0,219.0,0.005,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
338,Niger,2022-05-19,69033,254538.0,,10.129,260.0,0.01,0.0115,NER,Africa,9031.0,0.0,3.0,310.0,0.0,0.0,359.36,0.0,0.11900000000000001,12.335,0.0,0.0,0.28,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,254538.0,374.0,10.129,0.015,260.0,0.01,0.0115,86.7,tests performed,2692524.0,2190790.0,1549987.0,2756062.0,7377.0,90.0,10.71,8.72,6.17,53.76,4.0,112.0,0.0,29.63,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
339,Iraq,2022-05-19,43856,,,,11852.0,0.28800000000000003,0.0097,IRQ,Asia,2326965.0,113.0,114.714,25216.0,0.0,0.0,56508.054000000004,2.7439999999999998,2.786,612.346,0.0,0.0,1.02,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,18137544.0,20703.0,440.452,0.503,11852.0,0.28800000000000003,0.0097,103.3,tests performed,18190992.0,10580198.0,7438208.0,172586.0,16843.0,10833.0,44.18,25.69,18.06,0.42,263.0,5930.0,0.013999999999999999,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
340,Hong Kong,2022-05-19,39446,,,,72419.0,9.588,,HKG,Asia,1209688.0,291.0,289.0,9366.0,1.0,1.429,160164.178,38.529,38.264,1240.07,0.132,0.18899999999999997,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,47688630.0,263.0,6314.033,0.023,72419.0,9.588,0.0186,53.7,tests performed,16574023.0,6678240.0,6272029.0,3623754.0,31297.0,30055.0,219.44,88.42,83.04,47.98,3979.0,2310.0,0.031,56.48,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
341,Curacao,2022-05-19,22637,,,,325.0,1.972,0.2088,CUW,North America,43149.0,0.0,67.857,276.0,0.0,0.14300000000000002,261832.81100000002,0.0,411.765,1674.7979999999998,0.0,0.867,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,19797.0,2119.0,120.13,12.857999999999999,325.0,1.972,0.2088,4.8,tests performed,252440.0,108068.0,99232.0,45140.0,114.0,91.0,153.18,65.58,60.22,27.39,552.0,12.0,0.006999999999999999,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
342,Yemen,2022-05-19,105183,,,,84.0,0.003,0.0,YEM,Asia,11819.0,0.0,0.0,2149.0,0.0,0.0,387.62699999999995,0.0,0.0,70.48100000000001,0.0,0.0,0.04,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,329592.0,56715.0,10.81,0.578,84.0,0.003,0.0,587.4,tests performed,828687.0,663004.0,425619.0,2136305401.0,7669290.0,777.0,2.72,2.17,1.4,27.13,25.0,764.0,0.003,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
343,Jordan,2022-05-19,48831,,,,2593.0,0.253,0.0168,JOR,Asia,1696359.0,0.0,43.571000000000005,14066.0,0.0,0.0,165191.875,0.0,4.243,1369.751,0.0,0.0,0.17,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16785446.0,42668.0,1634.5710000000001,4.155,2593.0,0.253,0.0168,59.5,tests performed,9922666.0,4774468.0,4494834.0,657492.0,19111.0,2286.0,96.63,46.49,43.77,6.4,223.0,1168.0,0.011000000000000001,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
344,Yemen,2022-05-20,105184,,,,84.0,0.003,0.0,YEM,Asia,11819.0,0.0,0.0,2149.0,0.0,0.0,387.62699999999995,0.0,0.0,70.48100000000001,0.0,0.0,0.04,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,329592.0,56715.0,10.81,0.578,84.0,0.003,0.0,587.4,tests performed,828687.0,663004.0,425619.0,2136305401.0,7669290.0,777.0,2.72,2.17,1.4,27.13,25.0,764.0,0.003,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
345,Syria,2022-05-20,94510,,,,221.0,0.012,0.0058,SYR,Asia,55877.0,2.0,1.286,3150.0,0.0,0.0,3057.447,0.109,0.07,172.36,0.0,0.0,0.66,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,167560.0,9789.0,9.168,1.123,221.0,0.012,0.0058,171.9,tests performed,3801752.0,2512115.0,1598343.0,16064.0,1091.0,5093.0,20.8,13.75,8.75,0.09,279.0,2421.0,0.013000000000000001,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
346,Iraq,2022-05-20,43857,,,,11852.0,0.28800000000000003,0.01,IRQ,Asia,2327114.0,149.0,118.0,25216.0,0.0,0.0,56511.672999999995,3.6180000000000003,2.866,612.346,0.0,0.0,1.02,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,18137544.0,20703.0,440.452,0.503,11852.0,0.28800000000000003,0.01,100.4,tests performed,18190992.0,10580198.0,7438208.0,172586.0,16843.0,11028.0,44.18,25.69,18.06,0.42,268.0,6176.0,0.015,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
347,Kuwait,2022-05-20,51254,,,,6104.0,1.41,0.0094,KWT,Asia,632474.0,0.0,57.143,2555.0,0.0,0.0,146116.728,0.0,13.200999999999999,590.2669999999999,0.0,0.0,0.6,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,7763313.0,8163.0,1793.5120000000002,1.886,6104.0,1.41,0.0094,106.8,tests performed,8002689.0,3422607.0,3303573.0,1276509.0,4709.0,2515.0,184.88,79.07,76.32,29.49,581.0,230.0,0.005,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
348,Jordan,2022-05-20,48832,16803235.0,,1636.3029999999999,2541.0,0.247,0.0171,JOR,Asia,1696359.0,0.0,43.571000000000005,14066.0,0.0,0.0,165191.875,0.0,4.243,1369.751,0.0,0.0,0.16,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16803235.0,42668.0,1636.3029999999999,4.155,2541.0,0.247,0.0171,58.3,tests performed,9938176.0,4782622.0,4502190.0,657492.0,19111.0,2216.0,96.78,46.57,43.84,6.4,216.0,1165.0,0.011000000000000001,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
349,Oman,2022-05-20,72889,,,,622.0,0.11900000000000001,0.0237,OMN,Asia,389473.0,0.0,14.714,4260.0,0.0,0.14300000000000002,74563.462,0.0,2.8169999999999997,815.564,0.0,0.027000000000000003,0.34,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,1986264.0,1943.0,380.264,0.355,622.0,0.11900000000000001,0.0237,42.3,tests performed,7039789.0,3263006.0,3030281.0,751888.0,3650.0,530.0,134.77,62.47,58.01,14.39,101.0,99.0,0.002,55.56,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4342.0,19.53,-8.96,831.2631524
350,Hong Kong,2022-05-20,39447,,,,72419.0,9.588,,HKG,Asia,1209931.0,243.0,281.143,9370.0,4.0,1.571,160196.351,32.173,37.224000000000004,1240.6,0.53,0.20800000000000002,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,47688630.0,263.0,6314.033,0.023,72419.0,9.588,0.0186,53.7,tests performed,16617637.0,6681177.0,6279901.0,3656559.0,43614.0,31278.0,220.02,88.46,83.15,48.41,4141.0,2385.0,0.032,56.48,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
351,Curacao,2022-05-20,22638,22100.0,2303.0,134.105,329.0,1.996,0.2193,CUW,North America,43522.0,373.0,72.143,276.0,0.0,0.14300000000000002,264096.216,2263.404,437.77099999999996,1674.7979999999998,0.0,0.867,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,22100.0,2303.0,134.105,13.975,329.0,1.996,0.2193,4.6,tests performed,252518.0,108074.0,99238.0,45206.0,78.0,93.0,153.23,65.58,60.22,27.43,564.0,12.0,0.006999999999999999,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
352,Cayman Islands,2022-05-20,16786,,,,371.0,5.579,0.3462,CYM,North America,24477.0,0.0,128.429,28.0,0.0,0.0,368086.258,0.0,1931.315,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,6667.0,2585.0,100.259,38.873000000000005,371.0,5.579,0.3462,2.9,tests performed,144209.0,60995.0,59105.0,23264.0,226.0,61.0,216.86,91.72,88.88,34.98,917.0,9.0,0.013999999999999999,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
353,Yemen,2022-05-21,105185,,,,84.0,0.003,0.0,YEM,Asia,11819.0,0.0,0.0,2149.0,0.0,0.0,387.62699999999995,0.0,0.0,70.48100000000001,0.0,0.0,0.04,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,329592.0,56715.0,10.81,0.578,84.0,0.003,0.0,587.4,tests performed,836455.0,670646.0,429048.0,2136305401.0,7669290.0,777.0,2.74,2.2,1.41,27.13,25.0,764.0,0.003,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
354,Cayman Islands,2022-05-21,16787,,,,374.0,5.624,0.3434,CYM,North America,24477.0,0.0,128.429,28.0,0.0,0.0,368086.258,0.0,1931.315,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,6667.0,2585.0,100.259,38.873000000000005,374.0,5.624,0.3434,2.9,tests performed,144209.0,60995.0,59105.0,23264.0,226.0,60.0,216.86,91.72,88.88,34.98,902.0,9.0,0.013999999999999999,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
355,Hong Kong,2022-05-21,39448,,,,72419.0,9.588,,HKG,Asia,1210159.0,228.0,273.143,9370.0,0.0,1.429,160226.539,30.186999999999998,36.164,1240.6,0.0,0.18899999999999997,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,47688630.0,263.0,6314.033,0.023,72419.0,9.588,0.0186,53.7,tests performed,16658911.0,6683536.0,6287889.0,3687486.0,41274.0,32249.0,220.57,88.49,83.25,48.82,4270.0,2290.0,0.03,56.48,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
356,Iraq,2022-05-21,43858,,,,11852.0,0.28800000000000003,0.0101,IRQ,Asia,2327192.0,78.0,119.429,25216.0,0.0,0.0,56513.567,1.8940000000000001,2.9,612.346,0.0,0.0,0.99,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,18137544.0,20703.0,440.452,0.503,11852.0,0.28800000000000003,0.0101,99.2,tests performed,18279217.0,10629608.0,7473223.0,176386.0,16843.0,11028.0,44.39,25.81,18.15,0.43,268.0,6176.0,0.015,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
357,Oman,2022-05-21,72890,,,,622.0,0.11900000000000001,0.0237,OMN,Asia,389473.0,0.0,14.714,4260.0,0.0,0.14300000000000002,74563.462,0.0,2.8169999999999997,815.564,0.0,0.027000000000000003,0.29,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,1986264.0,1943.0,380.264,0.355,622.0,0.11900000000000001,0.0237,42.3,tests performed,7039789.0,3263006.0,3030281.0,751888.0,3650.0,530.0,134.77,62.47,58.01,14.39,101.0,106.0,0.002,55.56,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4342.0,19.53,-8.96,831.2631524
358,Kuwait,2022-05-21,51255,,,,6104.0,1.41,0.0094,KWT,Asia,632474.0,0.0,57.143,2555.0,0.0,0.0,146116.728,0.0,13.200999999999999,590.2669999999999,0.0,0.0,0.64,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,7763313.0,8163.0,1793.5120000000002,1.886,6104.0,1.41,0.0094,106.8,tests performed,8002689.0,3422607.0,3303573.0,1276509.0,4709.0,2512.0,184.88,79.07,76.32,29.49,580.0,241.0,0.006,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
359,Syria,2022-05-21,94511,,,,221.0,0.012,0.0058,SYR,Asia,55878.0,1.0,1.286,3150.0,0.0,0.0,3057.502,0.055,0.07,172.36,0.0,0.0,0.67,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,167560.0,9789.0,9.168,1.123,221.0,0.012,0.0058,171.9,tests performed,3801752.0,2512115.0,1598343.0,16064.0,1091.0,4561.0,20.8,13.75,8.75,0.09,250.0,2168.0,0.012,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
360,Cayman Islands,2022-05-22,16788,,,,376.0,5.654,0.3416,CYM,North America,24477.0,0.0,128.429,28.0,0.0,0.0,368086.258,0.0,1931.315,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,6667.0,2585.0,100.259,38.873000000000005,376.0,5.654,0.3416,2.9,tests performed,144209.0,60995.0,59105.0,23264.0,226.0,59.0,216.86,91.72,88.88,34.98,887.0,9.0,0.013999999999999999,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
361,Yemen,2022-05-22,105186,,,,84.0,0.003,0.0,YEM,Asia,11819.0,0.0,0.0,2149.0,0.0,0.0,387.62699999999995,0.0,0.0,70.48100000000001,0.0,0.0,0.03,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,329592.0,56715.0,10.81,0.578,84.0,0.003,0.0,587.4,tests performed,836455.0,670646.0,429048.0,2136305401.0,7669290.0,743.0,2.74,2.2,1.41,27.13,24.0,732.0,0.002,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
362,Kuwait,2022-05-22,51256,,,,6104.0,1.41,0.0165,KWT,Asia,632781.0,307.0,101.0,2555.0,0.0,0.0,146187.652,70.92399999999999,23.333000000000002,590.2669999999999,0.0,0.0,0.69,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,7763313.0,8163.0,1793.5120000000002,1.886,6104.0,1.41,0.0165,60.4,tests performed,8002689.0,3422607.0,3303573.0,1276509.0,4709.0,2508.0,184.88,79.07,76.32,29.49,579.0,252.0,0.006,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
363,Hong Kong,2022-05-22,39449,,,,72419.0,9.588,,HKG,Asia,1210396.0,237.0,270.0,9370.0,0.0,1.286,160257.918,31.379,35.748000000000005,1240.6,0.0,0.17,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,47688630.0,263.0,6314.033,0.023,72419.0,9.588,0.0186,53.7,tests performed,16685964.0,6684787.0,6292075.0,3709102.0,27053.0,33139.0,220.92,88.51,83.31,49.11,4388.0,2309.0,0.031,56.48,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
364,Iraq,2022-05-22,43859,,,,11852.0,0.28800000000000003,0.0098,IRQ,Asia,2327269.0,77.0,115.85700000000001,25216.0,0.0,0.0,56515.437000000005,1.87,2.813,612.346,0.0,0.0,0.94,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,18137544.0,20703.0,440.452,0.503,11852.0,0.28800000000000003,0.0098,102.3,tests performed,18279217.0,10629608.0,7473223.0,176386.0,16843.0,10974.0,44.39,25.81,18.15,0.43,266.0,6211.0,0.015,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
365,Oman,2022-05-22,72891,,,,622.0,0.11900000000000001,0.0149,OMN,Asia,389473.0,0.0,9.286,4260.0,0.0,0.0,74563.462,0.0,1.778,815.564,0.0,0.0,0.24,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,1986264.0,1943.0,380.264,0.355,622.0,0.11900000000000001,0.0149,67.0,tests performed,7039789.0,3263006.0,3030281.0,751888.0,3650.0,530.0,134.77,62.47,58.01,14.39,101.0,113.0,0.002,55.56,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4342.0,19.53,-8.96,831.2631524
366,Syria,2022-05-22,94512,,,,221.0,0.012,0.0058,SYR,Asia,55879.0,1.0,1.286,3150.0,0.0,0.0,3057.5570000000002,0.055,0.07,172.36,0.0,0.0,0.66,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,167560.0,9789.0,9.168,1.123,221.0,0.012,0.0058,171.9,tests performed,3801752.0,2512115.0,1598343.0,16064.0,1091.0,4561.0,20.8,13.75,8.75,0.09,250.0,2168.0,0.012,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
367,Syria,2022-05-23,94513,,,,221.0,0.012,0.0058,SYR,Asia,55880.0,1.0,1.286,3150.0,0.0,0.0,3057.611,0.055,0.07,172.36,0.0,0.0,0.64,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,167560.0,9789.0,9.168,1.123,221.0,0.012,0.0058,171.9,tests performed,3801752.0,2512115.0,1598343.0,16064.0,1091.0,4561.0,20.8,13.75,8.75,0.09,250.0,2168.0,0.012,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
368,Costa Rica,2022-05-23,20226,3601705.0,6920.0,700.85,11500.0,2.238,0.151,CRI,North America,877533.0,0.0,1624.1429999999998,8472.0,0.0,4.0,170757.725,0.0,316.039,1648.5529999999999,0.0,0.778,0.03,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3601705.0,6920.0,700.85,1.347,11500.0,2.238,0.151,6.6,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
369,Cayman Islands,2022-05-23,16789,,,,378.0,5.684,0.3398,CYM,North America,24477.0,0.0,128.429,28.0,0.0,0.0,368086.258,0.0,1931.315,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,6667.0,2585.0,100.259,38.873000000000005,378.0,5.684,0.3398,2.9,tests performed,144209.0,60995.0,59105.0,23264.0,226.0,58.0,216.86,91.72,88.88,34.98,872.0,9.0,0.013999999999999999,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
370,Iraq,2022-05-23,43860,,,,11852.0,0.28800000000000003,0.0098,IRQ,Asia,2327387.0,118.0,115.714,25218.0,2.0,0.28600000000000003,56518.302,2.866,2.81,612.394,0.049,0.006999999999999999,0.9,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,18137544.0,20703.0,440.452,0.503,11852.0,0.28800000000000003,0.0098,102.4,tests performed,18279217.0,10629608.0,7473223.0,176386.0,16843.0,10921.0,44.39,25.81,18.15,0.43,265.0,6245.0,0.015,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
371,Oman,2022-05-23,72892,,,,622.0,0.11900000000000001,0.0106,OMN,Asia,389473.0,0.0,6.571000000000001,4260.0,0.0,0.0,74563.462,0.0,1.258,815.564,0.0,0.0,0.2,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,1986264.0,1943.0,380.264,0.355,622.0,0.11900000000000001,0.0106,94.7,tests performed,7039789.0,3263849.0,3030281.0,753713.0,3650.0,530.0,134.77,62.49,58.01,14.43,101.0,120.0,0.002,14.81,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4342.0,19.53,-8.96,831.2631524
372,Kuwait,2022-05-23,51257,,,,6104.0,1.41,0.0165,KWT,Asia,632781.0,0.0,101.0,2555.0,0.0,0.0,146187.652,0.0,23.333000000000002,590.2669999999999,0.0,0.0,0.63,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,7763313.0,8163.0,1793.5120000000002,1.886,6104.0,1.41,0.0165,60.4,tests performed,8022755.0,3424619.0,3307357.0,1290779.0,4709.0,2508.0,185.34,79.12,76.41,29.82,579.0,252.0,0.006,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
373,Hong Kong,2022-05-23,39450,,,,72419.0,9.588,,HKG,Asia,1210586.0,190.0,263.714,9370.0,0.0,1.286,160283.074,25.156,34.916,1240.6,0.0,0.17,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,47688630.0,263.0,6314.033,0.023,72419.0,9.588,0.0186,53.7,tests performed,16723525.0,6687321.0,6297006.0,3739198.0,37561.0,34122.0,221.42,88.54,83.37,49.51,4518.0,2308.0,0.031,56.48,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
374,Yemen,2022-05-23,105187,,,,84.0,0.003,0.0,YEM,Asia,11819.0,0.0,0.0,2149.0,0.0,0.0,387.62699999999995,0.0,0.0,70.48100000000001,0.0,0.0,0.03,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,329592.0,56715.0,10.81,0.578,84.0,0.003,0.0,587.4,tests performed,836455.0,670646.0,429048.0,2136305401.0,7669290.0,710.0,2.74,2.2,1.41,27.13,23.0,699.0,0.002,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
375,Djibouti,2022-05-23,25213,,,,167.0,0.16699999999999998,0.0376,DJI,Africa,15675.0,0.0,6.2860000000000005,189.0,0.0,0.0,15640.638,0.0,6.272,188.58599999999998,0.0,0.0,0.01,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,307578.0,912.0,306.904,0.91,167.0,0.16699999999999998,0.0376,26.6,tests performed,191649.0,171077.0,131018.0,3650643.0,525.0,914.0,19.12,17.07,13.07,62.8,912.0,798.0,0.08,58.33,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
376,Cayman Islands,2022-05-24,16790,,,,380.0,5.7139999999999995,0.33799999999999997,CYM,North America,24477.0,0.0,128.429,28.0,0.0,0.0,368086.258,0.0,1931.315,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,6667.0,2585.0,100.259,38.873000000000005,380.0,5.7139999999999995,0.33799999999999997,3.0,tests performed,144209.0,60995.0,59105.0,23264.0,226.0,57.0,216.86,91.72,88.88,34.98,857.0,9.0,0.013999999999999999,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
377,Costa Rica,2022-05-24,20227,3614586.0,12881.0,703.3560000000001,11587.0,2.255,0.153,CRI,North America,891038.0,13505.0,3553.429,8495.0,23.0,7.2860000000000005,173385.641,2627.9159999999997,691.456,1653.0279999999998,4.476,1.4180000000000001,0.02,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3614586.0,12881.0,703.3560000000001,2.506,11587.0,2.255,0.153,6.5,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
378,Syria,2022-05-24,94514,175957.0,,9.628,221.0,0.012,0.0052,SYR,Asia,55880.0,0.0,1.143,3150.0,0.0,0.0,3057.611,0.0,0.063,172.36,0.0,0.0,0.67,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,175957.0,9789.0,9.628,1.123,221.0,0.012,0.0052,193.4,tests performed,3801752.0,2512115.0,1598343.0,16064.0,1091.0,4561.0,20.8,13.75,8.75,0.09,250.0,2168.0,0.012,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
379,Kuwait,2022-05-24,51258,8208880.0,,1896.4489999999998,6104.0,1.41,0.0165,KWT,Asia,632781.0,0.0,101.0,2555.0,0.0,0.0,146187.652,0.0,23.333000000000002,590.2669999999999,0.0,0.0,0.56,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,8022755.0,3424619.0,3307357.0,1290779.0,4709.0,2487.0,185.34,79.12,76.41,29.82,575.0,245.0,0.006,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
380,Armenia,2022-05-24,3798,3093519.0,1523.0,1042.246,1529.0,0.515,0.002,ARM,Asia,422939.0,0.0,3.1430000000000002,8624.0,0.0,0.14300000000000002,142493.518,0.0,1.0590000000000002,2905.535,0.0,0.048,-0.01,372.0,8.157,,,,,,,3093519.0,1523.0,1042.246,0.513,1529.0,0.515,0.002,500.0,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
381,Oman,2022-05-24,72893,2031675.0,,388.958,622.0,0.11900000000000001,0.006,OMN,Asia,389473.0,0.0,3.714,4260.0,0.0,0.0,74563.462,0.0,0.711,815.564,0.0,0.0,0.17,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2031675.0,1943.0,388.958,0.355,622.0,0.11900000000000001,0.006,167.5,tests performed,7039789.0,3263849.0,3030281.0,753713.0,3650.0,530.0,134.77,62.49,58.01,14.43,101.0,118.0,0.002,14.81,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4342.0,19.53,-8.96,831.2631524
382,Yemen,2022-05-24,105188,336937.0,,11.050999999999998,84.0,0.003,0.0,YEM,Asia,11819.0,0.0,0.0,2149.0,0.0,0.0,387.62699999999995,0.0,0.0,70.48100000000001,0.0,0.0,0.03,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,336937.0,56715.0,11.050999999999998,0.578,84.0,0.003,0.0,587.4,tests performed,836455.0,670646.0,429048.0,2136305401.0,7669290.0,676.0,2.74,2.2,1.41,27.13,22.0,667.0,0.002,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
383,Iraq,2022-05-24,43861,19002710.0,,461.462,11852.0,0.28800000000000003,0.0092,IRQ,Asia,2327486.0,99.0,108.571,25218.0,0.0,0.28600000000000003,56520.706,2.404,2.637,612.394,0.0,0.006999999999999999,0.84,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,19002710.0,20703.0,461.462,0.503,11852.0,0.28800000000000003,0.0092,109.2,tests performed,18279217.0,10629608.0,7473223.0,176386.0,16843.0,10867.0,44.39,25.81,18.15,0.43,264.0,6279.0,0.015,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
384,Djibouti,2022-05-24,25214,,,,182.0,0.182,0.0345,DJI,Africa,15675.0,0.0,6.2860000000000005,189.0,0.0,0.0,15640.638,0.0,6.272,188.58599999999998,0.0,0.0,0.01,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,307578.0,912.0,306.904,0.91,182.0,0.182,0.0345,29.0,tests performed,191649.0,171077.0,131018.0,3650643.0,525.0,897.0,19.12,17.07,13.07,62.8,895.0,665.0,0.066,58.33,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
385,Hong Kong,2022-05-24,39451,49426686.0,,6544.154,72419.0,9.588,0.0038,HKG,Asia,1210836.0,250.0,252.571,9370.0,0.0,1.286,160316.174,33.1,33.441,1240.6,0.0,0.17,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,49426686.0,263.0,6544.154,0.023,72419.0,9.588,0.0038,262.5,tests performed,16754954.0,6689382.0,6301352.0,3764220.0,31429.0,34381.0,221.84,88.57,83.43,49.84,4552.0,2239.0,0.03,52.78,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
386,Costa Rica,2022-05-25,20228,3628644.0,14058.0,706.092,11743.0,2.285,0.151,CRI,North America,891038.0,0.0,1929.286,8495.0,0.0,3.286,173385.641,0.0,375.417,1653.0279999999998,0.0,0.639,0.02,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3628644.0,14058.0,706.092,2.736,11743.0,2.285,0.151,6.6,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
387,Cayman Islands,2022-05-25,16791,,,,382.0,5.745,0.3362,CYM,North America,24477.0,0.0,128.429,28.0,0.0,0.0,368086.258,0.0,1931.315,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,6667.0,2585.0,100.259,38.873000000000005,382.0,5.745,0.3362,3.0,tests performed,144209.0,60995.0,59105.0,23264.0,226.0,57.0,216.86,91.72,88.88,34.98,857.0,9.0,0.013999999999999999,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
388,Armenia,2022-05-25,3799,3095122.0,1603.0,1042.786,1572.0,0.53,0.002,ARM,Asia,422939.0,0.0,3.1430000000000002,8624.0,0.0,0.14300000000000002,142493.518,0.0,1.0590000000000002,2905.535,0.0,0.048,-0.02,372.0,8.157,,,,,,,3095122.0,1603.0,1042.786,0.54,1572.0,0.53,0.002,500.0,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
389,Turkey,2022-05-25,99240,162359880.0,137573.0,1909.156,131765.0,1.5490000000000002,0.0088,TUR,Asia,15066784.0,1260.0,1165.286,98943.0,4.0,4.143,177167.207,14.815999999999999,13.702,1163.45,0.047,0.049,0.88,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,162359880.0,137573.0,1909.156,1.618,131765.0,1.5490000000000002,0.0088,113.1,tests performed,147705146.0,57839717.0,53061776.0,36803653.0,8136.0,6302.0,173.68,68.01,62.39,43.28,74.0,773.0,0.001,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
390,Djibouti,2022-05-25,25215,,,,196.0,0.196,0.0321,DJI,Africa,15675.0,0.0,6.2860000000000005,189.0,0.0,0.0,15640.638,0.0,6.272,188.58599999999998,0.0,0.0,0.01,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,307578.0,912.0,306.904,0.91,196.0,0.196,0.0321,31.2,tests performed,191649.0,171077.0,131018.0,3650643.0,525.0,880.0,19.12,17.07,13.07,62.8,878.0,532.0,0.053,58.33,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
391,Iran,2022-05-26,43077,,,,29765.0,0.35,0.0084,IRN,Asia,7231099.0,217.0,249.28599999999997,141296.0,3.0,6.143,85042.978,2.552,2.932,1661.744,0.035,0.07200000000000001,0.7,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52090424.0,76234.0,612.621,0.897,29765.0,0.35,0.0084,119.4,tests performed,149796958.0,64509636.0,57810690.0,27476632.0,31765.0,27433.0,176.17,75.87,67.99,32.31,323.0,5572.0,0.006999999999999999,62.04,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
392,Armenia,2022-05-26,3800,3096641.0,1519.0,1043.298,1557.0,0.525,0.002,ARM,Asia,422939.0,0.0,3.1430000000000002,8624.0,0.0,0.14300000000000002,142493.518,0.0,1.0590000000000002,2905.535,0.0,0.048,-0.01,372.0,8.157,,,,,,,3096641.0,1519.0,1043.298,0.512,1557.0,0.525,0.002,500.0,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
393,Costa Rica,2022-05-26,20229,3642458.0,13814.0,708.78,11782.0,2.293,0.162,CRI,North America,891038.0,0.0,1929.286,8495.0,0.0,3.286,173385.641,0.0,375.417,1653.0279999999998,0.0,0.639,0.02,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3642458.0,13814.0,708.78,2.688,11782.0,2.293,0.162,6.2,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
394,Cayman Islands,2022-05-26,16792,9358.0,2691.0,140.726,384.0,5.775,0.0,CYM,North America,24477.0,0.0,0.0,28.0,0.0,0.0,368086.258,0.0,0.0,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,9358.0,2691.0,140.726,40.467,384.0,5.775,0.0,3.0,tests performed,144209.0,60995.0,59105.0,23264.0,226.0,56.0,216.86,91.72,88.88,34.98,842.0,9.0,0.013999999999999999,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
395,Portugal,2022-05-26,79183,42536539.0,52655.0,4183.405,50542.0,4.971,0.4343,PRT,Europe,4544317.0,0.0,21949.286,22926.0,0.0,29.143,446926.77200000006,0.0,2158.679,2254.738,0.0,2.866,1.16,99.0,9.737,1842.0,181.158,9.0,1.669,234.0,42.846000000000004,42536539.0,52655.0,4183.405,5.178999999999999,50542.0,4.971,0.4343,2.3,tests performed,23992150.0,9718762.0,8865912.0,6480245.0,79.0,17254.0,235.96,95.58,87.19,63.73,1697.0,391.0,0.004,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,21606.2,7.75,14.58,2124.937413
396,Turkey,2022-05-26,99241,162499362.0,139482.0,1910.796,132015.0,1.5519999999999998,0.0086,TUR,Asia,15068094.0,1310.0,1140.286,98948.0,5.0,4.2860000000000005,177182.611,15.404000000000002,13.408,1163.509,0.059000000000000004,0.05,0.87,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,162499362.0,139482.0,1910.796,1.64,132015.0,1.5519999999999998,0.0086,115.8,tests performed,147711493.0,57840555.0,53062844.0,36808094.0,6347.0,6866.0,173.69,68.01,62.4,43.28,81.0,841.0,0.001,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
397,Philippines,2022-05-26,77533,,,,19245.0,0.17300000000000001,0.0101,PHL,Asia,3689656.0,199.0,194.429,60455.0,0.0,0.429,33226.102,1.7919999999999998,1.751,544.41,0.0,0.004,1.08,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,27837797.0,21192.0,250.685,0.191,19245.0,0.17300000000000001,0.0101,99.0,people tested,149520786.0,70173137.0,69084132.0,13899727.0,227791.0,146305.0,134.65,63.19,62.21,12.52,1318.0,55766.0,0.05,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
398,Dominica,2022-05-26,25277,203318.0,,2817.131,444.0,6.152,0.3436,DMA,North America,14184.0,0.0,152.571,65.0,0.0,0.28600000000000003,196530.51,0.0,2113.998,900.6260000000001,0.0,3.9589999999999996,0.45,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,203318.0,441.0,2817.131,6.11,444.0,6.152,0.3436,2.9,tests performed,66558.0,32659.0,30253.0,3646.0,270.0,19.0,92.22,45.25,41.92,5.05,263.0,11.0,0.015,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
399,Djibouti,2022-05-26,25216,,,,196.0,0.196,0.0321,DJI,Africa,15675.0,0.0,6.2860000000000005,189.0,0.0,0.0,15640.638,0.0,6.272,188.58599999999998,0.0,0.0,0.02,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,307578.0,912.0,306.904,0.91,196.0,0.196,0.0321,31.2,tests performed,191649.0,171077.0,131018.0,3650643.0,525.0,862.0,19.12,17.07,13.07,62.8,860.0,399.0,0.04,58.33,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
400,Iran,2022-05-27,43078,,,,29166.0,0.34299999999999997,0.0083,IRN,Asia,7231284.0,185.0,243.143,141302.0,6.0,5.7139999999999995,85045.15400000001,2.176,2.86,1661.8139999999999,0.071,0.067,0.7,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52090424.0,76234.0,612.621,0.897,29166.0,0.34299999999999997,0.0083,120.0,tests performed,149796958.0,64509636.0,57810690.0,27476632.0,31765.0,28234.0,176.17,75.87,67.99,32.31,332.0,5788.0,0.006999999999999999,62.04,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
401,Djibouti,2022-05-27,25217,,,,196.0,0.196,0.0,DJI,Africa,15675.0,0.0,0.0,189.0,0.0,0.0,15640.638,0.0,0.0,188.58599999999998,0.0,0.0,0.03,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,307578.0,912.0,306.904,0.91,196.0,0.196,0.0,31.2,tests performed,191649.0,171077.0,131018.0,3650643.0,525.0,845.0,19.12,17.07,13.07,62.8,843.0,266.0,0.027000000000000003,58.33,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
402,British Virgin Islands,2022-05-27,13621,96630.0,,3176.215,,,,VGB,North America,6765.0,75.0,10.714,62.0,0.0,0.0,222364.658,2465.24,352.17699999999996,2037.932,0.0,0.0,1.41,22.0,1.859,143.0,12.085,,,760.0,65.335,96630.0,126242.0,3176.215,0.59,121418.0,0.5670000000000001,0.0483,20.7,people tested,40969.0,19323.0,17920.0,3726.0,802024.0,10.0,134.66,63.51,58.9,12.25,329.0,2.0,0.006999999999999999,39.81,30423.0,207.97299999999998,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,13.67,10.1,17.9,97.164,2.2,79.07,0.765,781197.4,23.53,5.87,3650.567028
403,Dominica,2022-05-27,25278,,,,428.0,5.93,0.3565,DMA,North America,14184.0,0.0,152.571,65.0,0.0,0.28600000000000003,196530.51,0.0,2113.998,900.6260000000001,0.0,3.9589999999999996,0.44,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,203318.0,441.0,2817.131,6.11,428.0,5.93,0.3565,2.8,tests performed,66709.0,32747.0,30316.0,3646.0,270.0,22.0,92.43,45.37,42.01,5.05,305.0,13.0,0.018000000000000002,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
404,Armenia,2022-05-27,3801,3098405.0,1764.0,1043.892,1581.0,0.5329999999999999,0.002,ARM,Asia,422939.0,0.0,3.1430000000000002,8624.0,0.0,0.14300000000000002,142493.518,0.0,1.0590000000000002,2905.535,0.0,0.048,-0.01,372.0,8.157,,,,,,,3098405.0,1764.0,1043.892,0.594,1581.0,0.5329999999999999,0.002,500.0,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
405,Costa Rica,2022-05-27,20230,3655735.0,13277.0,711.3639999999999,11837.0,2.303,0.168,CRI,North America,891038.0,0.0,1929.286,8495.0,0.0,3.286,173385.641,0.0,375.417,1653.0279999999998,0.0,0.639,0.02,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3655735.0,13277.0,711.3639999999999,2.5839999999999996,11837.0,2.303,0.168,6.0,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
406,Portugal,2022-05-27,79184,42588488.0,51949.0,4188.514,49611.0,4.879,0.5284,PRT,Europe,4606051.0,61734.0,26216.857000000004,22981.0,55.0,32.429,452998.218,6071.446,2578.389,2260.147,5.409,3.1889999999999996,1.17,99.0,9.737,1842.0,181.158,9.0,1.669,234.0,42.846000000000004,42588488.0,51949.0,4188.514,5.109,49611.0,4.879,0.5284,1.9,tests performed,24119633.0,9721502.0,8871270.0,6509616.0,79.0,18212.0,237.21,95.61,87.25,64.02,1791.0,391.0,0.004,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,21606.2,7.75,14.58,2124.937413
407,Turkey,2022-05-27,99242,162633614.0,134252.0,1912.375,132630.0,1.56,0.0096,TUR,Asia,15069034.0,940.0,1274.5710000000001,98952.0,4.0,4.857,177193.664,11.052999999999999,14.987,1163.556,0.047,0.057,0.83,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,162633614.0,134252.0,1912.375,1.579,132630.0,1.56,0.0096,104.1,tests performed,147717865.0,57841428.0,53063994.0,36812443.0,6372.0,6784.0,173.7,68.01,62.4,43.29,80.0,845.0,0.001,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
408,Philippines,2022-05-27,77534,,,,19245.0,0.17300000000000001,0.0101,PHL,Asia,3689865.0,209.0,193.857,60455.0,0.0,0.0,33227.984,1.882,1.746,544.41,0.0,0.0,1.04,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,27837797.0,21192.0,250.685,0.191,19245.0,0.17300000000000001,0.0101,99.3,people tested,149520786.0,70173137.0,69084132.0,14027031.0,227791.0,149332.0,134.65,63.19,62.21,12.63,1345.0,55766.0,0.05,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
409,Angola,2022-05-27,1657,,,,2279.0,0.067,0.015,AGO,Africa,99527.0,0.0,34.286,1900.0,0.0,0.0,2932.992,0.0,1.01,55.992,0.0,0.0,0.3,0.0,0.0,,,,,,,1499795.0,1459.0,44.198,0.043,2279.0,0.067,0.015,66.5,tests performed,18431807.0,12337467.0,6555241.0,431381.0,1973.0,59404.0,54.32,36.36,19.32,1.27,1751.0,21594.0,0.064,40.74,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
410,Armenia,2022-05-28,3802,3099693.0,1288.0,1044.326,1479.0,0.498,0.002,ARM,Asia,422939.0,0.0,3.1430000000000002,8624.0,0.0,0.14300000000000002,142493.518,0.0,1.0590000000000002,2905.535,0.0,0.048,-0.0,372.0,8.157,,,,,,,3099693.0,1288.0,1044.326,0.434,1479.0,0.498,0.002,500.0,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
411,Iran,2022-05-28,43079,,,,28567.0,0.336,0.0082,IRN,Asia,7231387.0,103.0,235.143,141306.0,4.0,5.0,85046.365,1.2109999999999999,2.765,1661.861,0.047,0.059000000000000004,0.72,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52090424.0,76234.0,612.621,0.897,28567.0,0.336,0.0082,121.5,tests performed,149839257.0,64518897.0,57824686.0,27495674.0,31765.0,25393.0,176.22,75.88,68.01,32.34,299.0,5683.0,0.006999999999999999,62.04,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
412,Turkey,2022-05-28,99243,162772366.0,138752.0,1914.007,132683.0,1.56,0.0082,TUR,Asia,15070000.0,966.0,1086.714,98955.0,3.0,4.2860000000000005,177205.02300000002,11.359000000000002,12.777999999999999,1163.5910000000001,0.035,0.05,0.78,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,162772366.0,138752.0,1914.007,1.632,132683.0,1.56,0.0082,122.1,tests performed,147719809.0,57841732.0,53064473.0,36813604.0,1944.0,6069.0,173.7,68.01,62.4,43.29,71.0,768.0,0.001,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
413,Philippines,2022-05-28,77535,,,,19245.0,0.17300000000000001,0.0097,PHL,Asia,3690055.0,190.0,186.28599999999997,60455.0,0.0,0.0,33229.695,1.7109999999999999,1.6780000000000002,544.41,0.0,0.0,1.02,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,27837797.0,21192.0,250.685,0.191,19245.0,0.17300000000000001,0.0097,103.3,people tested,149520786.0,70173137.0,69084132.0,14027031.0,227791.0,137365.0,134.65,63.19,62.21,12.63,1237.0,55766.0,0.05,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
414,Angola,2022-05-28,1658,,,,2279.0,0.067,0.015,AGO,Africa,99527.0,0.0,34.286,1900.0,0.0,0.0,2932.992,0.0,1.01,55.992,0.0,0.0,0.25,0.0,0.0,,,,,,,1499795.0,1459.0,44.198,0.043,2279.0,0.067,0.015,66.5,tests performed,18431807.0,12337467.0,6555241.0,431381.0,1973.0,67168.0,54.32,36.36,19.32,1.27,1979.0,23778.0,0.07,40.74,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
415,Dominica,2022-05-28,25279,,,,412.0,5.709,0.3703,DMA,North America,14184.0,0.0,152.571,65.0,0.0,0.28600000000000003,196530.51,0.0,2113.998,900.6260000000001,0.0,3.9589999999999996,0.44,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,203318.0,441.0,2817.131,6.11,412.0,5.709,0.3703,2.7,tests performed,66709.0,32747.0,30316.0,3646.0,270.0,19.0,92.43,45.37,42.01,5.05,263.0,11.0,0.015,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
416,Djibouti,2022-05-28,25218,,,,196.0,0.196,0.0,DJI,Africa,15675.0,0.0,0.0,189.0,0.0,0.0,15640.638,0.0,0.0,188.58599999999998,0.0,0.0,0.03,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,307578.0,912.0,306.904,0.91,196.0,0.196,0.0,31.2,tests performed,191649.0,171077.0,131018.0,3650643.0,525.0,828.0,19.12,17.07,13.07,62.8,826.0,133.0,0.013000000000000001,58.33,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
417,Costa Rica,2022-05-28,20231,3668909.0,13174.0,713.927,11895.0,2.315,0.172,CRI,North America,891038.0,0.0,1929.286,8495.0,0.0,3.286,173385.641,0.0,375.417,1653.0279999999998,0.0,0.639,0.02,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3668909.0,13174.0,713.927,2.5639999999999996,11895.0,2.315,0.172,5.8,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
418,Portugal,2022-05-28,79185,42624557.0,36069.0,4192.061,49744.0,4.8919999999999995,0.527,PRT,Europe,4606051.0,0.0,26216.857000000004,22981.0,0.0,32.429,452998.218,0.0,2578.389,2260.147,0.0,3.1889999999999996,1.14,99.0,9.737,1842.0,181.158,9.0,1.669,234.0,42.846000000000004,42624557.0,36069.0,4192.061,3.5469999999999997,49744.0,4.8919999999999995,0.527,1.9,tests performed,24119633.0,9721502.0,8871270.0,6509616.0,79.0,18935.0,237.21,95.61,87.25,64.02,1862.0,377.0,0.004,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,21606.2,7.75,14.58,2124.937413
419,Turkey,2022-05-29,99244,162902327.0,129961.0,1915.535,134270.0,1.579,0.008,TUR,Asia,15070864.0,864.0,1080.857,98957.0,2.0,3.8569999999999998,177215.18300000002,10.16,12.71,1163.615,0.024,0.045,0.7,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,162902327.0,129961.0,1915.535,1.528,134270.0,1.579,0.008,124.2,tests performed,147720907.0,57841876.0,53064752.0,36814279.0,1098.0,6047.0,173.7,68.02,62.4,43.29,71.0,764.0,0.001,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
420,Dominica,2022-05-29,25280,,,,396.0,5.487,0.3853,DMA,North America,14184.0,0.0,152.571,65.0,0.0,0.28600000000000003,196530.51,0.0,2113.998,900.6260000000001,0.0,3.9589999999999996,0.43,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,203318.0,441.0,2817.131,6.11,396.0,5.487,0.3853,2.6,tests performed,66709.0,32747.0,30316.0,3646.0,270.0,16.0,92.43,45.37,42.01,5.05,222.0,9.0,0.012,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
421,Argentina,2022-05-29,2950,36418189.0,8760.0,798.543,20056.0,0.44,0.303,ARG,South America,9230573.0,51778.0,7396.857,128889.0,64.0,9.142999999999999,202399.00100000002,1135.337,162.191,2826.152,1.403,0.2,0.28,372.0,8.157,,,,,,,36418189.0,8760.0,798.543,0.192,20056.0,0.44,0.303,3.3,tests performed,102881426.0,41120624.0,37480830.0,24595581.0,57415.0,150265.0,225.59,90.17,82.18,53.93,3295.0,1977.0,0.004,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
422,Portugal,2022-05-29,79186,42644919.0,20362.0,4194.064,49454.0,4.864,0.5301,PRT,Europe,4606051.0,0.0,26216.857000000004,22981.0,0.0,32.429,452998.218,0.0,2578.389,2260.147,0.0,3.1889999999999996,1.11,99.0,9.737,1842.0,181.158,9.0,1.669,234.0,42.846000000000004,42644919.0,20362.0,4194.064,2.003,49454.0,4.864,0.5301,1.9,tests performed,24119633.0,9721502.0,8871270.0,6509616.0,79.0,19659.0,237.21,95.61,87.25,64.02,1933.0,362.0,0.004,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,21924.2,7.81,15.88,2156.212237
423,Costa Rica,2022-05-29,20232,3677525.0,8616.0,715.6039999999999,11820.0,2.3,0.17600000000000002,CRI,North America,891038.0,0.0,1929.286,8495.0,0.0,3.286,173385.641,0.0,375.417,1653.0279999999998,0.0,0.639,0.02,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3677525.0,8616.0,715.6039999999999,1.6769999999999998,11820.0,2.3,0.17600000000000002,5.7,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
424,Angola,2022-05-29,1659,1618311.0,,47.691,2279.0,0.067,0.015,AGO,Africa,99527.0,0.0,34.286,1900.0,0.0,0.0,2932.992,0.0,1.01,55.992,0.0,0.0,0.22,0.0,0.0,,,,,,,1618311.0,1459.0,47.691,0.043,2279.0,0.067,0.015,66.5,tests performed,18956333.0,12337467.0,6555241.0,444914.0,1973.0,74932.0,55.86,36.36,19.32,1.31,2208.0,25961.0,0.077,40.74,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
425,Thailand,2022-05-29,96309,24666419.0,10676.0,352.625,14735.0,0.21100000000000002,0.2997,THA,Asia,4446502.0,3854.0,4415.571,29998.0,26.0,31.857,63566.095,55.096000000000004,63.123999999999995,428.844,0.37200000000000005,0.455,0.77,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24666419.0,10676.0,352.625,0.153,14735.0,0.21100000000000002,0.2997,3.3,tests performed,136861243.0,56501647.0,52436458.0,27923138.0,32619.0,131456.0,195.65,80.77,74.96,39.92,1879.0,14237.0,0.02,32.87,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,89304.2,7.6,25.31,1276.6708
426,Russia,2022-05-29,82025,294422997.0,,2017.8120000000001,140948.0,0.966,0.0304,RUS,Europe,18056662.0,4118.0,4290.571,371306.0,83.0,83.571,123750.338,28.221999999999998,29.405,2544.725,0.569,0.573,0.91,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,294422997.0,331438.0,2017.8120000000001,2.271,140948.0,0.966,0.0304,32.9,tests performed,166830060.0,81031567.0,73682537.0,14354693.0,653.0,20749.0,114.34,55.53,50.5,9.84,142.0,3861.0,0.003,23.15,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
427,Philippines,2022-05-29,77536,,,,19245.0,0.17300000000000001,0.0097,PHL,Asia,3690254.0,199.0,187.571,60455.0,0.0,0.0,33231.487,1.7919999999999998,1.689,544.41,0.0,0.0,1.02,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,27837797.0,21192.0,250.685,0.191,19245.0,0.17300000000000001,0.0097,102.6,people tested,149520786.0,70173137.0,69084132.0,14121021.0,227791.0,125398.0,134.65,63.19,62.21,12.72,1129.0,55766.0,0.05,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
428,Armenia,2022-05-29,3803,3100800.0,1107.0,1044.6989999999998,1472.0,0.496,0.002,ARM,Asia,422939.0,0.0,3.1430000000000002,8624.0,0.0,0.14300000000000002,142493.518,0.0,1.0590000000000002,2905.535,0.0,0.048,-0.01,372.0,8.157,,,,,,,3100800.0,1107.0,1044.6989999999998,0.373,1472.0,0.496,0.002,500.0,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
429,Djibouti,2022-05-29,25219,309732.0,,309.053,196.0,0.196,0.0,DJI,Africa,15675.0,0.0,0.0,189.0,0.0,0.0,15640.638,0.0,0.0,188.58599999999998,0.0,0.0,0.04,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,309732.0,912.0,309.053,0.91,196.0,0.196,0.0,31.2,tests performed,191649.0,171077.0,131018.0,3650643.0,525.0,810.0,19.12,17.07,13.07,62.8,808.0,0.0,0.0,58.33,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
430,Iran,2022-05-29,43080,,,,27967.0,0.32899999999999996,0.0077,IRN,Asia,7231562.0,175.0,215.571,141308.0,2.0,4.857,85048.424,2.0580000000000003,2.535,1661.885,0.024,0.057,0.74,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52090424.0,76234.0,612.621,0.897,27967.0,0.32899999999999996,0.0077,129.7,tests performed,149839257.0,64518897.0,57824686.0,27495674.0,31765.0,24626.0,176.22,75.88,68.01,32.34,290.0,5479.0,0.006,62.04,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
431,Portugal,2022-05-30,79187,42709728.0,64809.0,4200.438,49236.0,4.842,0.5188,PRT,Europe,4632100.0,26049.0,25543.714,23014.0,33.0,32.857,455560.098,2561.88,2512.186,2263.3920000000003,3.2460000000000004,3.2310000000000003,1.1,99.0,9.737,1842.0,181.158,9.0,1.669,234.0,42.846000000000004,42709728.0,64809.0,4200.438,6.374,49236.0,4.842,0.5188,1.9,tests performed,24119633.0,9721502.0,8871270.0,6509616.0,79.0,20383.0,237.21,95.61,87.25,64.02,2005.0,347.0,0.003,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,21924.2,7.81,15.88,2156.212237
432,Philippines,2022-05-30,77537,,,,19245.0,0.17300000000000001,0.0098,PHL,Asia,3690451.0,197.0,188.429,60455.0,0.0,0.0,33233.262,1.774,1.6969999999999998,544.41,0.0,0.0,1.03,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,27837797.0,21192.0,250.685,0.191,19245.0,0.17300000000000001,0.0098,102.1,people tested,149520786.0,70173137.0,69084132.0,14121021.0,227791.0,113431.0,134.65,63.19,62.21,12.72,1021.0,55766.0,0.05,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
433,Armenia,2022-05-30,3804,3102267.0,1467.0,1045.193,1467.0,0.494,0.003,ARM,Asia,422963.0,24.0,3.429,8625.0,1.0,0.14300000000000002,142501.604,8.086,1.155,2905.8720000000003,0.337,0.048,-0.01,372.0,8.157,,,,,,,3102267.0,1467.0,1045.193,0.494,1467.0,0.494,0.003,333.3,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
434,Turkey,2022-05-30,99245,163035679.0,133352.0,1917.1029999999998,135672.0,1.595,0.008,TUR,Asia,15071772.0,908.0,1078.857,98961.0,4.0,4.0,177225.86,10.677,12.686,1163.662,0.047,0.047,0.75,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163035679.0,133352.0,1917.1029999999998,1.568,135672.0,1.595,0.008,125.8,tests performed,147728185.0,57842849.0,53066241.0,36819095.0,7278.0,5785.0,173.71,68.02,62.4,43.29,68.0,749.0,0.001,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
435,Argentina,2022-05-30,2951,36541392.0,123203.0,801.2439999999999,33223.0,0.728,0.29,ARG,South America,9230573.0,0.0,7396.857,128889.0,0.0,9.142999999999999,202399.00100000002,0.0,162.191,2826.152,0.0,0.2,0.29,372.0,8.157,,,,,,,36541392.0,123203.0,801.2439999999999,2.701,33223.0,0.728,0.29,3.4,tests performed,103074083.0,41123230.0,37486993.0,24779568.0,192657.0,146477.0,226.01,90.17,82.2,54.33,3212.0,1916.0,0.004,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
436,Russia,2022-05-30,82026,,,,144818.0,0.993,0.0293,RUS,Europe,18060405.0,3743.0,4240.857,371378.0,72.0,83.286,123775.99,25.651999999999997,29.064,2545.219,0.493,0.5710000000000001,0.91,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,294422997.0,331438.0,2017.8120000000001,2.271,144818.0,0.993,0.0293,34.1,tests performed,166830060.0,81031567.0,73682537.0,14354693.0,653.0,40651.0,114.34,55.53,50.5,9.84,279.0,4079.0,0.003,23.15,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
437,Dominica,2022-05-30,25281,204642.0,,2835.4759999999997,380.0,5.265,0.1624,DMA,North America,14184.0,0.0,61.714,65.0,0.0,0.28600000000000003,196530.51,0.0,855.1,900.6260000000001,0.0,3.9589999999999996,0.43,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,204642.0,441.0,2835.4759999999997,6.11,380.0,5.265,0.1624,6.2,tests performed,66709.0,32747.0,30316.0,3646.0,270.0,14.0,92.43,45.37,42.01,5.05,194.0,8.0,0.011000000000000001,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
438,Iran,2022-05-30,43081,52223364.0,,614.185,27368.0,0.322,0.0077,IRN,Asia,7231802.0,240.0,211.571,141310.0,2.0,4.143,85051.246,2.823,2.488,1661.908,0.024,0.049,0.78,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52223364.0,76234.0,614.185,0.897,27368.0,0.322,0.0077,129.4,tests performed,149903496.0,64533076.0,57843962.0,27526458.0,31765.0,24821.0,176.3,75.9,68.03,32.37,292.0,5462.0,0.006,62.04,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
439,Thailand,2022-05-30,96310,24683359.0,16940.0,352.86699999999996,14354.0,0.205,0.3057,THA,Asia,4450457.0,3955.0,4388.571,30019.0,21.0,29.714000000000002,63622.635,56.54,62.738,429.144,0.3,0.425,0.76,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24683359.0,16940.0,352.86699999999996,0.242,14354.0,0.205,0.3057,3.3,tests performed,136961835.0,56512032.0,52464769.0,27985034.0,100592.0,130001.0,195.8,80.79,75.0,40.01,1858.0,14105.0,0.02,32.87,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,89304.2,7.6,25.31,1276.6708
440,Palestine,2022-05-30,74427,,,,,,,PSE,Asia,657573.0,0.0,0.0,5660.0,0.0,0.0,125905.365,0.0,0.0,1083.719,0.0,0.0,0.31,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3135.0,3280.8959999999997,0.6,1289.0,0.247,0.1962,5.1,tests performed,3723499.0,2003622.0,1769425.0,328588.0,17447.0,298.0,71.29,38.36,33.88,6.29,57.0,148.0,0.003,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
441,Angola,2022-05-30,1660,,,,1963.0,0.057999999999999996,0.0345,AGO,Africa,99761.0,234.0,67.714,1900.0,0.0,0.0,2939.888,6.896,1.995,55.992,0.0,0.0,0.18,0.0,0.0,,,,,,,1618311.0,1459.0,47.691,0.043,1963.0,0.057999999999999996,0.0345,29.0,tests performed,18956333.0,12337467.0,6555241.0,444914.0,1973.0,75056.0,55.86,36.36,19.32,1.31,2212.0,25961.0,0.077,40.74,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
442,Palestine,2022-05-31,74428,,,,,,,PSE,Asia,657705.0,132.0,18.857,5660.0,0.0,0.0,125930.63900000001,25.274,3.611,1083.719,0.0,0.0,0.29,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3135.0,3280.8959999999997,0.6,1289.0,0.247,0.1962,5.1,tests performed,3723499.0,2003622.0,1769425.0,328588.0,17447.0,298.0,71.29,38.36,33.88,6.29,57.0,148.0,0.003,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
443,Angola,2022-05-31,1661,,,,1646.0,0.049,0.0285,AGO,Africa,99761.0,0.0,46.857,1900.0,0.0,0.0,2939.888,0.0,1.381,55.992,0.0,0.0,0.15,0.0,0.0,,,,,,,1618311.0,1459.0,47.691,0.043,1646.0,0.049,0.0285,35.1,tests performed,18956333.0,12337467.0,6555241.0,444914.0,1973.0,75180.0,55.86,36.36,19.32,1.31,2216.0,25961.0,0.077,22.22,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
444,Canada,2022-05-31,15990,62008453.0,20033.0,1628.89,29797.0,0.7829999999999999,0.0898,CAN,North America,3884792.0,2026.0,2676.857,41070.0,27.0,46.428999999999995,102048.98800000001,53.221000000000004,70.318,1078.861,0.7090000000000001,1.22,0.84,304.0,7.986000000000001,4455.0,117.02799999999999,,,760.0,65.335,62008453.0,20033.0,1628.89,0.526,29797.0,0.7829999999999999,0.0898,11.1,tests performed,85472419.0,32715947.0,31396929.0,21021055.0,20360.0,37260.0,224.53,85.94,82.48,55.22,979.0,678.0,0.002,42.59,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
445,Philippines,2022-05-31,77538,,,,19245.0,0.17300000000000001,0.0096,PHL,Asia,3690581.0,130.0,185.71400000000003,60455.0,0.0,0.0,33234.432,1.171,1.672,544.41,0.0,0.0,1.01,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,27837797.0,21192.0,250.685,0.191,19245.0,0.17300000000000001,0.0096,103.6,people tested,149520786.0,70173137.0,69084132.0,14121021.0,227791.0,113431.0,134.65,63.19,62.21,12.72,1021.0,55766.0,0.05,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
446,Thailand,2022-05-31,96311,24699411.0,16052.0,353.097,13896.0,0.19899999999999998,0.3112,THA,Asia,4455020.0,4563.0,4324.286,30047.0,28.0,29.0,63687.865999999995,65.232,61.818999999999996,429.54400000000004,0.4,0.415,0.75,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24699411.0,16052.0,353.097,0.22899999999999998,13896.0,0.19899999999999998,0.3112,3.2,tests performed,137076747.0,56523875.0,52497704.0,28055168.0,114912.0,126965.0,195.96,80.81,75.05,40.11,1815.0,13778.0,0.02,32.87,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
447,Russia,2022-05-31,82027,,,,148688.0,1.0190000000000001,0.0283,RUS,Europe,18063880.0,3475.0,4208.143,371464.0,86.0,83.14299999999999,123799.806,23.816,28.84,2545.808,0.589,0.57,0.91,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,294422997.0,331438.0,2017.8120000000001,2.271,148688.0,1.0190000000000001,0.0283,35.3,tests performed,167125605.0,81042991.0,73960224.0,14354693.0,653.0,60553.0,114.54,55.54,50.69,9.84,415.0,4296.0,0.003,23.15,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
448,Portugal,2022-05-31,79188,42772441.0,62713.0,4206.606,49634.0,4.881,0.5014,PRT,Europe,4683018.0,50918.0,24885.857000000004,23115.0,101.0,32.857,460567.80700000003,5007.709,2447.487,2273.326,9.933,3.2310000000000003,1.08,107.0,10.523,2092.0,205.745,9.0,1.669,234.0,42.846000000000004,42772441.0,62713.0,4206.606,6.167999999999999,49634.0,4.881,0.5014,2.0,tests performed,24119633.0,9721502.0,8871270.0,6509616.0,79.0,21106.0,237.21,95.61,87.25,64.02,2076.0,332.0,0.003,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,21924.2,7.81,15.88,2156.212237
449,Turkey,2022-05-31,99246,163164533.0,128854.0,1918.618,134604.0,1.5830000000000002,0.0077,TUR,Asia,15072747.0,975.0,1031.857,98965.0,4.0,3.714,177237.325,11.465,12.133,1163.7089999999998,0.047,0.044000000000000004,0.76,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,147734958.0,57843685.0,53067556.0,36823717.0,6773.0,5421.0,173.72,68.02,62.4,43.3,64.0,707.0,0.001,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
450,Argentina,2022-05-31,2952,36603788.0,62396.0,802.612,38122.0,0.836,0.29100000000000004,ARG,South America,9230573.0,0.0,7396.857,128889.0,0.0,9.142999999999999,202399.00100000002,0.0,162.191,2826.152,0.0,0.2,0.29,372.0,8.157,,,,,,,36603788.0,62396.0,802.612,1.368,38122.0,0.836,0.29100000000000004,3.4,tests performed,103256137.0,41125657.0,37493098.0,24953168.0,182054.0,143512.0,226.41,90.18,82.21,54.71,3147.0,1836.0,0.004,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
451,Dominica,2022-05-31,25282,205025.0,383.0,2840.783,371.0,5.14,0.1663,DMA,North America,14184.0,0.0,61.714,65.0,0.0,0.28600000000000003,196530.51,0.0,855.1,900.6260000000001,0.0,3.9589999999999996,0.43,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,205025.0,383.0,2840.783,5.307,371.0,5.14,0.1663,6.0,tests performed,66709.0,32747.0,30316.0,3646.0,270.0,11.0,92.43,45.37,42.01,5.05,152.0,6.0,0.008,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
452,Iran,2022-05-31,43082,,,,26454.0,0.311,0.0078,IRN,Asia,7232034.0,232.0,206.429,141315.0,5.0,3.8569999999999998,85053.975,2.728,2.428,1661.967,0.059000000000000004,0.045,0.78,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52223364.0,76234.0,614.185,0.897,26454.0,0.311,0.0078,128.2,tests performed,149903496.0,64533076.0,57843962.0,27526458.0,31765.0,23633.0,176.3,75.9,68.03,32.37,278.0,5217.0,0.006,62.04,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
453,Russia,2022-06-01,82028,,,,144505.0,0.99,0.0287,RUS,Europe,18067977.0,4097.0,4151.0,371546.0,82.0,82.0,123827.884,28.079,28.449,2546.37,0.562,0.562,0.92,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,294422997.0,331438.0,2017.8120000000001,2.271,144505.0,0.99,0.0287,34.8,tests performed,167125605.0,81042991.0,73960224.0,14354693.0,653.0,50937.0,114.54,55.54,50.69,9.84,349.0,5627.0,0.004,23.15,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
454,Iran,2022-06-01,43083,52269202.0,,614.724,25540.0,0.3,0.0078,IRN,Asia,7232268.0,234.0,198.0,141318.0,3.0,3.571,85056.727,2.752,2.329,1662.0020000000002,0.035,0.042,0.75,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52269202.0,76234.0,614.724,0.897,25540.0,0.3,0.0078,129.0,tests performed,149957751.0,64545209.0,57860379.0,27552163.0,31765.0,22970.0,176.36,75.91,68.05,32.4,270.0,5082.0,0.006,62.04,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
455,Thailand,2022-06-01,96312,24711570.0,12159.0,353.27099999999996,13319.0,0.19,0.2993,THA,Asia,4457580.0,2560.0,3986.571,30081.0,34.0,28.570999999999998,63724.462999999996,36.597,56.99100000000001,430.031,0.486,0.408,0.74,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24711570.0,12159.0,353.27099999999996,0.174,13319.0,0.19,0.2993,3.3,tests performed,137145167.0,56532428.0,52515300.0,28097439.0,68420.0,115592.0,196.06,80.82,75.07,40.17,1652.0,12498.0,0.018000000000000002,30.09,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
456,Portugal,2022-06-01,79189,42825431.0,52990.0,4211.817,48792.0,4.7989999999999995,0.5063,PRT,Europe,4717243.0,34225.0,24703.714,23150.0,35.0,32.0,463933.785,3365.9770000000003,2429.573,2276.768,3.4419999999999997,3.147,1.08,107.0,10.523,2092.0,205.745,9.0,1.669,234.0,42.846000000000004,42825431.0,52990.0,4211.817,5.211,48792.0,4.7989999999999995,0.5063,2.0,tests performed,24119633.0,9721502.0,8871270.0,6509616.0,79.0,21830.0,237.21,95.61,87.25,64.02,2147.0,318.0,0.003,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,21924.2,7.81,15.88,2156.212237
457,Philippines,2022-06-01,77539,28472887.0,,256.404,19245.0,0.17300000000000001,0.0093,PHL,Asia,3690707.0,126.0,178.571,60455.0,0.0,0.0,33235.567,1.135,1.608,544.41,0.0,0.0,1.0,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,149520786.0,70173137.0,69084132.0,14230872.0,227791.0,113431.0,134.65,63.19,62.21,12.82,1021.0,55766.0,0.05,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
458,Palestine,2022-06-01,74429,,,,,,,PSE,Asia,657705.0,0.0,18.857,5660.0,0.0,0.0,125930.63900000001,0.0,3.611,1083.719,0.0,0.0,0.28,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3135.0,3280.8959999999997,0.6,1289.0,0.247,0.1962,5.1,tests performed,3723499.0,2003622.0,1769425.0,328588.0,17447.0,298.0,71.29,38.36,33.88,6.29,57.0,148.0,0.003,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
459,Canada,2022-06-01,15991,62032975.0,24522.0,1629.5339999999999,28295.0,0.743,0.0944,CAN,North America,3889304.0,4512.0,2671.571,41150.0,80.0,44.571000000000005,102167.513,118.525,70.179,1080.963,2.102,1.171,0.85,288.0,7.565,4210.0,110.59200000000001,,,760.0,65.335,62032975.0,24522.0,1629.5339999999999,0.644,28295.0,0.743,0.0944,10.6,tests performed,85518572.0,32715947.0,31400694.0,21047519.0,46153.0,36233.0,224.65,85.94,82.49,55.29,952.0,678.0,0.002,37.04,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
460,Dominica,2022-06-01,25283,205366.0,341.0,2845.508,356.0,4.933,0.0,DMA,North America,14184.0,0.0,0.0,65.0,0.0,0.0,196530.51,0.0,0.0,900.6260000000001,0.0,0.0,0.42,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,205366.0,341.0,2845.508,4.725,356.0,4.933,0.0,6.0,tests performed,66709.0,32747.0,30316.0,3646.0,270.0,9.0,92.43,45.37,42.01,5.05,125.0,5.0,0.006999999999999999,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
461,Argentina,2022-06-01,2953,36624317.0,20529.0,803.062,39399.0,0.8640000000000001,0.293,ARG,South America,9230573.0,0.0,7396.857,128889.0,0.0,9.142999999999999,202399.00100000002,0.0,162.191,2826.152,0.0,0.2,0.3,372.0,8.157,,,,,,,36624317.0,20529.0,803.062,0.45,39399.0,0.8640000000000001,0.293,3.4,tests performed,103408274.0,41127478.0,37497901.0,25098806.0,152137.0,160453.0,226.74,90.18,82.22,55.03,3518.0,2037.0,0.004,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
462,Angola,2022-06-01,1662,,,,1330.0,0.039,0.0251,AGO,Africa,99761.0,0.0,33.429,1900.0,0.0,0.0,2939.888,0.0,0.985,55.992,0.0,0.0,0.11,0.0,0.0,,,,,,,1618311.0,1459.0,47.691,0.043,1330.0,0.039,0.0251,39.8,tests performed,18956333.0,12337467.0,6555241.0,444914.0,1973.0,75304.0,55.86,36.36,19.32,1.31,2219.0,25961.0,0.077,22.22,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
463,Canada,2022-06-02,15992,62061577.0,28602.0,1630.286,28319.0,0.7440000000000001,0.0908,CAN,North America,3892391.0,3087.0,2571.571,41286.0,136.0,47.714,102248.605,81.092,67.55199999999999,1084.535,3.573,1.253,0.86,262.0,6.882000000000001,4041.0,106.152,,,760.0,65.335,62061577.0,28602.0,1630.286,0.7509999999999999,28319.0,0.7440000000000001,0.0908,11.0,tests performed,85602537.0,32731538.0,31405583.0,21465416.0,83965.0,34494.0,224.87,85.98,82.5,56.39,906.0,678.0,0.002,37.04,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
464,Palestine,2022-06-02,74430,,,,,,,PSE,Asia,657705.0,0.0,18.857,5660.0,0.0,0.0,125930.63900000001,0.0,3.611,1083.719,0.0,0.0,0.26,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3135.0,3280.8959999999997,0.6,1289.0,0.247,0.1962,5.1,tests performed,3723499.0,2003622.0,1769425.0,328588.0,17447.0,298.0,71.29,38.36,33.88,6.29,57.0,148.0,0.003,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
465,Thailand,2022-06-02,96313,24717650.0,6080.0,353.35699999999997,12102.0,0.17300000000000001,0.3074,THA,Asia,4460556.0,2976.0,3720.7140000000004,30113.0,32.0,29.0,63767.008,42.544,53.19,430.48800000000006,0.457,0.415,0.73,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24717650.0,6080.0,353.35699999999997,0.087,12102.0,0.17300000000000001,0.3074,3.3,tests performed,137282183.0,56548902.0,52556284.0,28176997.0,137016.0,110908.0,196.26,80.84,75.13,40.28,1586.0,11965.0,0.017,30.09,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
466,Angola,2022-06-02,1663,1618566.0,,47.698,1013.0,0.03,0.033,AGO,Africa,99761.0,0.0,33.429,1900.0,0.0,0.0,2939.888,0.0,0.985,55.992,0.0,0.0,0.1,0.0,0.0,,,,,,,1618566.0,1459.0,47.698,0.043,1013.0,0.03,0.033,30.3,tests performed,18956333.0,12337467.0,6555241.0,444914.0,1973.0,75428.0,55.86,36.36,19.32,1.31,2223.0,25961.0,0.077,22.22,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
467,Argentina,2022-06-02,2954,36642598.0,18281.0,803.4630000000001,38359.0,0.841,0.29100000000000004,ARG,South America,9230573.0,0.0,7396.857,128889.0,0.0,9.142999999999999,202399.00100000002,0.0,162.191,2826.152,0.0,0.2,0.3,372.0,8.157,,,,,,,36642598.0,18281.0,803.4630000000001,0.401,38359.0,0.841,0.29100000000000004,3.4,tests performed,103564775.0,41129469.0,37503049.0,25248278.0,156501.0,153674.0,227.09,90.18,82.23,55.36,3370.0,1952.0,0.004,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
468,Russia,2022-06-02,82029,294934098.0,,2021.315,140323.0,0.9620000000000001,0.0292,RUS,Europe,18072173.0,4196.0,4090.571,371628.0,82.0,81.0,123856.64199999999,28.756999999999998,28.035,2546.9320000000002,0.562,0.555,0.91,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,294934098.0,331438.0,2021.315,2.271,140323.0,0.9620000000000001,0.0292,34.3,tests performed,167184591.0,81077691.0,73988718.0,14356919.0,653.0,52245.0,114.58,55.57,50.71,9.84,358.0,7505.0,0.005,23.15,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
469,Argentina,2022-06-03,2955,36657754.0,15156.0,803.795,37196.0,0.816,0.28800000000000003,ARG,South America,9230573.0,0.0,7396.857,128889.0,0.0,9.142999999999999,202399.00100000002,0.0,162.191,2826.152,0.0,0.2,0.29,372.0,8.157,,,,,,,36657754.0,15156.0,803.795,0.332,37196.0,0.816,0.28800000000000003,3.5,tests performed,103735262.0,41131619.0,37508392.0,25411388.0,170487.0,146046.0,227.46,90.19,82.24,55.72,3202.0,1856.0,0.004,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
470,Thailand,2022-06-03,96314,24726097.0,8447.0,353.478,11346.0,0.162,0.3092,THA,Asia,4463557.0,3001.0,3508.2859999999996,30143.0,30.0,27.857,63809.90900000001,42.902,50.153999999999996,430.917,0.429,0.39799999999999996,0.74,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24726097.0,8447.0,353.478,0.121,11346.0,0.162,0.3092,3.2,tests performed,137317409.0,56551310.0,52562689.0,28203410.0,35226.0,78649.0,196.31,80.84,75.14,40.32,1124.0,8041.0,0.011000000000000001,30.09,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
471,Belize,2022-06-03,9937,,,,929.0,2.294,0.1136,BLZ,North America,59788.0,122.0,105.571,678.0,0.0,0.14300000000000002,147655.68099999998,301.298,260.725,1674.425,0.0,0.353,1.36,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,563789.0,1351.0,1392.364,3.3369999999999997,929.0,2.294,0.1136,8.8,tests performed,476580.0,237669.0,211834.0,48212.0,5470.0,101.0,117.7,58.7,52.32,11.91,249.0,12.0,0.003,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
472,Russia,2022-06-03,82030,,,,140082.0,0.96,0.0288,RUS,Europe,18076286.0,4113.0,4028.7140000000004,371703.0,75.0,80.286,123884.83,28.188000000000002,27.611,2547.446,0.514,0.55,0.91,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,294934098.0,331438.0,2021.315,2.271,140082.0,0.96,0.0288,34.8,tests performed,167184591.0,81077691.0,73988718.0,14356919.0,653.0,53290.0,114.58,55.57,50.71,9.84,365.0,8353.0,0.006,23.15,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
473,Palestine,2022-06-03,74431,,,,,,,PSE,Asia,657705.0,0.0,18.857,5660.0,0.0,0.0,125930.63900000001,0.0,3.611,1083.719,0.0,0.0,0.24,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3135.0,3280.8959999999997,0.6,1289.0,0.247,0.1962,5.1,tests performed,3723499.0,2003622.0,1769425.0,328588.0,17447.0,298.0,71.29,38.36,33.88,6.29,57.0,148.0,0.003,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
474,Canada,2022-06-03,15993,62094056.0,32479.0,1631.139,26243.0,0.6890000000000001,0.0884,CAN,North America,3895891.0,3500.0,2318.714,41329.0,43.0,44.714,102340.546,91.941,60.91,1085.665,1.13,1.175,0.87,257.0,6.751,3968.0,104.235,,,760.0,65.335,62094056.0,32479.0,1631.139,0.853,26243.0,0.6890000000000001,0.0884,11.3,tests performed,85624820.0,32732684.0,31407257.0,21484879.0,22283.0,33094.0,224.93,85.98,82.5,56.44,869.0,745.0,0.002,37.04,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
475,Laos,2022-06-03,51641,1029566.0,485.0,139.52,116.0,0.016,0.1712,LAO,Asia,210061.0,16.0,19.857,756.0,0.0,0.0,28466.026,2.168,2.6910000000000003,102.448,0.0,0.0,0.45,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1029566.0,485.0,139.52,0.066,116.0,0.016,0.1712,5.8,tests performed,10881353.0,5814750.0,5066603.0,1364852.0,11603.0,3863.0,147.46,78.8,68.66,31.53,523.0,973.0,0.013000000000000001,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
476,Belize,2022-06-04,9938,,,,950.0,2.346,0.1111,BLZ,North America,59788.0,0.0,105.571,678.0,0.0,0.14300000000000002,147655.68099999998,0.0,260.725,1674.425,0.0,0.353,1.36,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,563789.0,1351.0,1392.364,3.3369999999999997,950.0,2.346,0.1111,9.0,tests performed,476580.0,237669.0,211834.0,48212.0,5470.0,130.0,117.7,58.7,52.32,11.91,321.0,16.0,0.004,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
477,Palestine,2022-06-04,74432,,,,,,,PSE,Asia,657705.0,0.0,18.857,5660.0,0.0,0.0,125930.63900000001,0.0,3.611,1083.719,0.0,0.0,0.22,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3135.0,3280.8959999999997,0.6,1289.0,0.247,0.1962,5.1,tests performed,3723499.0,2003622.0,1769425.0,328588.0,17447.0,298.0,71.29,38.36,33.88,6.29,57.0,148.0,0.003,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
478,Russia,2022-06-04,82031,295244836.0,,2023.444,139842.0,0.958,0.0283,RUS,Europe,18080277.0,3991.0,3961.857,371781.0,78.0,79.714,123912.18199999999,27.351999999999997,27.151999999999997,2547.981,0.535,0.546,0.9,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,295244836.0,331438.0,2023.444,2.271,139842.0,0.958,0.0283,35.3,tests performed,167218973.0,81100653.0,73998668.0,14358389.0,653.0,55652.0,114.6,55.58,50.71,9.84,381.0,9930.0,0.006999999999999999,23.15,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
479,Thailand,2022-06-04,96315,24733803.0,7706.0,353.588,11151.0,0.159,0.3093,THA,Asia,4466793.0,3236.0,3449.2859999999996,30171.0,28.0,28.429000000000002,63856.17,46.261,49.31,431.31699999999995,0.4,0.406,0.73,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24733803.0,7706.0,353.588,0.11,11151.0,0.159,0.3093,3.2,tests performed,137344711.0,56552763.0,52566962.0,28224986.0,27302.0,73727.0,196.34,80.85,75.15,40.35,1054.0,7628.0,0.011000000000000001,30.09,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
480,Laos,2022-06-04,51642,,,,117.0,0.016,0.1453,LAO,Asia,210069.0,8.0,17.0,756.0,0.0,0.0,28467.111,1.084,2.3040000000000003,102.448,0.0,0.0,0.45,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1029566.0,485.0,139.52,0.066,117.0,0.016,0.1453,6.9,tests performed,10881353.0,5814750.0,5066603.0,1364852.0,11603.0,3432.0,147.46,78.8,68.66,31.53,465.0,839.0,0.011000000000000001,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
481,Canada,2022-06-04,15994,62099949.0,5893.0,1631.2939999999999,24287.0,0.638,0.0981,CAN,North America,3897530.0,1639.0,2382.857,41354.0,25.0,45.0,102383.601,43.055,62.595,1086.322,0.657,1.182,0.88,247.0,6.4879999999999995,3970.0,104.287,,,760.0,65.335,62099949.0,5893.0,1631.2939999999999,0.155,24287.0,0.638,0.0981,10.2,tests performed,85644848.0,32733857.0,31407257.0,21501853.0,20028.0,31750.0,224.98,85.99,82.5,56.48,834.0,815.0,0.002,37.04,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
482,Argentina,2022-06-04,2956,36663990.0,6236.0,803.932,36366.0,0.797,0.287,ARG,South America,9230573.0,0.0,7396.857,128889.0,0.0,9.142999999999999,202399.00100000002,0.0,162.191,2826.152,0.0,0.2,0.28,372.0,8.157,,,,,,,36663990.0,6236.0,803.932,0.13699999999999998,36366.0,0.797,0.287,3.5,tests performed,103776884.0,41132090.0,37509569.0,25451388.0,41622.0,136125.0,227.55,90.19,82.25,55.81,2985.0,1722.0,0.004,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
483,Palestine,2022-06-05,74433,,3267.0,,,,,PSE,Asia,657705.0,0.0,18.857,5660.0,0.0,0.0,125930.63900000001,0.0,3.611,1083.719,0.0,0.0,0.2,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3267.0,3280.8959999999997,0.626,1289.0,0.247,0.1962,5.1,tests performed,3723499.0,2003622.0,1769425.0,328588.0,17447.0,298.0,71.29,38.36,33.88,6.29,57.0,148.0,0.003,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
484,Laos,2022-06-05,51643,,,,117.0,0.016,0.1416,LAO,Asia,210081.0,12.0,16.570999999999998,756.0,0.0,0.0,28468.737,1.626,2.246,102.448,0.0,0.0,0.46,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1029566.0,485.0,139.52,0.066,117.0,0.016,0.1416,7.1,tests performed,10881353.0,5814750.0,5066603.0,1364852.0,11603.0,3554.0,147.46,78.8,68.66,31.53,482.0,882.0,0.012,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
485,Canada,2022-06-05,15995,62101982.0,2033.0,1631.3470000000002,24259.0,0.637,0.0976,CAN,North America,3898402.0,872.0,2367.429,41359.0,5.0,45.286,102406.507,22.906,62.19,1086.453,0.131,1.19,0.89,251.0,6.593,3722.0,97.773,,,760.0,65.335,62101982.0,2033.0,1631.3470000000002,0.053,24259.0,0.637,0.0976,10.2,tests performed,85662797.0,32738144.0,31407257.0,21513335.0,17949.0,31329.0,225.03,86.0,82.5,56.51,823.0,1331.0,0.003,37.04,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
486,Belize,2022-06-05,9939,,,,971.0,2.398,0.1087,BLZ,North America,59788.0,0.0,105.571,678.0,0.0,0.14300000000000002,147655.68099999998,0.0,260.725,1674.425,0.0,0.353,1.36,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,563789.0,1351.0,1392.364,3.3369999999999997,971.0,2.398,0.1087,9.2,tests performed,476580.0,237669.0,211834.0,48212.0,5470.0,159.0,117.7,58.7,52.32,11.91,393.0,19.0,0.005,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
487,Belize,2022-06-06,9940,,,,992.0,2.45,0.1181,BLZ,North America,60063.0,275.0,117.14299999999999,678.0,0.0,0.14300000000000002,148334.836,679.155,289.302,1674.425,0.0,0.353,1.36,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,563789.0,1351.0,1392.364,3.3369999999999997,992.0,2.45,0.1181,8.5,tests performed,476580.0,237669.0,211834.0,48212.0,5470.0,188.0,117.7,58.7,52.32,11.91,464.0,23.0,0.006,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
488,Sierra Leone,2022-06-06,86219,,,,287.0,0.035,0.0,SLE,Africa,7682.0,0.0,0.0,125.0,0.0,0.0,943.579,0.0,0.0,15.354000000000001,0.0,0.0,0.16,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,426006.0,7466.0,52.326,1.087,287.0,0.035,0.0,3216.8,tests performed,2930408.0,2383636.0,1659093.0,6974.0,1928.0,1980.0,35.99,29.28,20.38,0.09,243.0,11517.0,0.141,45.37,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
489,Laos,2022-06-06,51644,,,,117.0,0.016,0.1319,LAO,Asia,210083.0,2.0,15.429,756.0,0.0,0.0,28469.007999999998,0.271,2.0909999999999997,102.448,0.0,0.0,0.46,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1029566.0,485.0,139.52,0.066,117.0,0.016,0.1319,7.6,tests performed,10881353.0,5814750.0,5066603.0,1364852.0,11603.0,3676.0,147.46,78.8,68.66,31.53,498.0,925.0,0.013000000000000001,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
490,Canada,2022-06-06,15996,62177630.0,75648.0,1633.3339999999998,27030.0,0.71,0.0874,CAN,North America,3899300.0,898.0,2362.0,41362.0,3.0,45.571000000000005,102430.09599999999,23.589000000000002,62.047,1086.532,0.079,1.197,0.89,256.0,6.725,3733.0,98.06200000000001,,,760.0,65.335,62177630.0,75648.0,1633.3339999999998,1.9869999999999999,27030.0,0.71,0.0874,11.4,tests performed,85668786.0,32738507.0,31407257.0,21518260.0,5989.0,30961.0,225.04,86.0,82.5,56.53,813.0,1286.0,0.003,37.04,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
491,Germany,2022-06-06,34480,,,,85709.0,1.022,,DEU,Europe,26498361.0,1750.0,27480.714,139388.0,2.0,55.428999999999995,315830.897,20.858,327.539,1661.349,0.024,0.6609999999999999,1.1,632.0,7.5329999999999995,16108.0,238.91299999999998,488.0,5.816,2885.0,34.385999999999996,130667506.0,20318.0,1557.411,5.105,85709.0,1.022,0.32799999999999996,3.0,tests performed,182046483.0,64677212.0,63306848.0,56356532.0,1739.0,29690.0,216.98,77.09,75.45,67.17,354.0,900.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
492,Morocco,2022-06-06,63940,,,,6322.0,0.16899999999999998,0.0552,MAR,Africa,1170427.0,233.0,349.14300000000003,16080.0,0.0,0.5710000000000001,31341.107999999997,6.239,9.349,430.582,0.0,0.015,1.76,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11607598.0,4632.0,310.822,0.124,6322.0,0.16899999999999998,0.0552,18.1,people tested,54710937.0,24930030.0,23411104.0,6369803.0,51870.0,9043.0,146.5,66.76,62.69,17.06,242.0,448.0,0.001,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
493,Tunisia,2022-06-06,98444,,,,1169.0,0.098,0.0623,TUN,Africa,1042872.0,0.0,72.857,28641.0,0.0,1.286,87373.711,0.0,6.104,2399.595,0.0,0.10800000000000001,0.6,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4640840.0,1722.0,388.81800000000004,0.14400000000000002,1169.0,0.098,0.0623,16.0,people tested,13178235.0,7229872.0,6372301.0,1254785.0,1662.0,591.0,110.41,60.57,53.39,10.51,50.0,189.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
494,Belize,2022-06-07,9941,,,,1012.0,2.499,0.1302,BLZ,North America,60287.0,224.0,131.714,678.0,0.0,0.14300000000000002,148888.038,553.203,325.289,1674.425,0.0,0.353,1.35,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,563789.0,1351.0,1392.364,3.3369999999999997,1012.0,2.499,0.1302,7.7,tests performed,476580.0,237669.0,211834.0,48212.0,5470.0,217.0,117.7,58.7,52.32,11.91,536.0,27.0,0.006999999999999999,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
495,Morocco,2022-06-07,63941,,,,6322.0,0.16899999999999998,0.0617,MAR,Africa,1171034.0,607.0,390.14300000000003,16082.0,2.0,0.857,31357.362,16.254,10.447000000000001,430.63599999999997,0.054000000000000006,0.023,1.81,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11607598.0,4632.0,310.822,0.124,6322.0,0.16899999999999998,0.0617,16.2,people tested,54710937.0,24930030.0,23411104.0,6369803.0,51870.0,8549.0,146.5,66.76,62.69,17.06,229.0,477.0,0.001,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
496,Sierra Leone,2022-06-07,86220,,,,275.0,0.034,0.0,SLE,Africa,7682.0,0.0,0.0,125.0,0.0,0.0,943.579,0.0,0.0,15.354000000000001,0.0,0.0,0.2,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,426006.0,7466.0,52.326,1.087,275.0,0.034,0.0,3216.8,tests performed,2930408.0,2383636.0,1659093.0,6974.0,1928.0,3960.0,35.99,29.28,20.38,0.09,486.0,9597.0,0.11800000000000001,45.37,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
497,Cambodia,2022-06-07,15026,,,,909.0,0.054000000000000006,0.0,KHM,Asia,136262.0,0.0,0.0,3056.0,0.0,0.0,8040.741999999999,0.0,0.0,180.333,0.0,0.0,0.04,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2973649.0,3334.0,175.47299999999998,0.19699999999999998,909.0,0.054000000000000006,0.0,1772.7,tests performed,40160051.0,15045995.0,14328268.0,9259661.0,61376.0,30244.0,236.98,88.79,84.55,54.64,1785.0,1596.0,0.009000000000000001,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
498,Germany,2022-06-07,34481,,,,86169.0,1.0270000000000001,,DEU,Europe,26583016.0,84655.0,31723.286,139533.0,145.0,63.143,316839.89,1008.993,378.106,1663.078,1.7280000000000002,0.753,1.28,623.0,7.425,16108.0,238.91299999999998,488.0,5.816,2408.0,28.701,130667506.0,20318.0,1557.411,5.105,86169.0,1.0270000000000001,0.32799999999999996,3.0,tests performed,182079702.0,64678339.0,63309088.0,56386384.0,33219.0,27510.0,217.02,77.09,75.46,67.21,328.0,849.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
499,Grenada,2022-06-07,36252,,,,272.0,2.407,0.10400000000000001,GRD,North America,17948.0,82.0,28.285999999999998,231.0,1.0,0.7140000000000001,158810.777,725.567,250.283,2043.976,8.847999999999999,6.32,0.72,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,167519.0,527.0,1482.2720000000002,4.663,272.0,2.407,0.10400000000000001,9.6,tests performed,88728.0,43650.0,38410.0,6668.0,694.0,16.0,78.51,38.62,33.99,5.9,142.0,4.0,0.004,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
500,Tunisia,2022-06-07,98445,,,,1140.0,0.096,0.0837,TUN,Africa,1043540.0,668.0,95.429,28648.0,7.0,1.0,87429.67800000001,55.966,7.995,2400.1820000000002,0.586,0.084,0.58,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4640840.0,1722.0,388.81800000000004,0.14400000000000002,1140.0,0.096,0.0837,11.9,people tested,13178235.0,7229872.0,6372301.0,1254785.0,1662.0,591.0,110.41,60.57,53.39,10.51,50.0,189.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
501,Laos,2022-06-07,51645,,,,116.0,0.016,0.1342,LAO,Asia,210098.0,15.0,15.571,756.0,0.0,0.0,28471.04,2.033,2.11,102.448,0.0,0.0,0.49,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1029566.0,485.0,139.52,0.066,116.0,0.016,0.1342,7.4,tests performed,10881353.0,5814750.0,5066603.0,1364852.0,11603.0,3304.0,147.46,78.8,68.66,31.53,448.0,816.0,0.011000000000000001,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
502,Sierra Leone,2022-06-08,86221,,,,263.0,0.032,0.0005,SLE,Africa,7683.0,1.0,0.14300000000000002,125.0,0.0,0.0,943.702,0.12300000000000001,0.018000000000000002,15.354000000000001,0.0,0.0,0.24,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,426006.0,7466.0,52.326,1.087,263.0,0.032,0.0005,1839.2,tests performed,2930408.0,2383636.0,1659093.0,6974.0,1928.0,5939.0,35.99,29.28,20.38,0.09,729.0,7678.0,0.094,45.37,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
503,Germany,2022-06-08,34482,,,,86630.0,1.033,,DEU,Europe,26660652.0,77636.0,35885.286,139623.0,90.0,57.286,317765.224,925.334,427.713,1664.15,1.073,0.6829999999999999,1.37,622.0,7.414,16108.0,238.91299999999998,518.0,6.1739999999999995,2976.0,35.471,130667506.0,20318.0,1557.411,5.105,86630.0,1.033,0.32799999999999996,3.0,tests performed,182122068.0,64679545.0,63311314.0,56425318.0,42366.0,26480.0,217.07,77.09,75.46,67.25,316.0,837.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
504,Tunisia,2022-06-08,98446,,,,1111.0,0.09300000000000001,0.0859,TUN,Africa,1043540.0,0.0,95.429,28648.0,0.0,1.0,87429.67800000001,0.0,7.995,2400.1820000000002,0.0,0.084,0.56,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4640840.0,1722.0,388.81800000000004,0.14400000000000002,1111.0,0.09300000000000001,0.0859,11.6,people tested,13178235.0,7229872.0,6372301.0,1254785.0,1662.0,591.0,110.41,60.57,53.39,10.51,50.0,189.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
505,Laos,2022-06-08,51646,,,,115.0,0.016,0.1019,LAO,Asia,210108.0,10.0,11.714,756.0,0.0,0.0,28472.396,1.355,1.587,102.448,0.0,0.0,0.5,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1029566.0,485.0,139.52,0.066,115.0,0.016,0.1019,9.8,tests performed,10881353.0,5814750.0,5066603.0,1364852.0,11603.0,2932.0,147.46,78.8,68.66,31.53,397.0,708.0,0.01,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
506,Morocco,2022-06-08,63942,11708746.0,,313.531,6322.0,0.16899999999999998,0.0748,MAR,Africa,1171972.0,938.0,472.57099999999997,16082.0,0.0,0.7140000000000001,31382.479,25.116999999999997,12.654000000000002,430.63599999999997,0.0,0.019,1.87,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11708746.0,4632.0,313.531,0.124,6322.0,0.16899999999999998,0.0748,13.4,people tested,54710937.0,24930030.0,23411104.0,6369803.0,51870.0,8055.0,146.5,66.76,62.69,17.06,216.0,505.0,0.001,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
507,Cambodia,2022-06-08,15027,,,,908.0,0.054000000000000006,0.0,KHM,Asia,136262.0,0.0,0.0,3056.0,0.0,0.0,8040.741999999999,0.0,0.0,180.333,0.0,0.0,0.04,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2973649.0,3334.0,175.47299999999998,0.19699999999999998,908.0,0.054000000000000006,0.0,1772.7,tests performed,40160051.0,15045995.0,14328268.0,9259661.0,61376.0,29707.0,236.98,88.79,84.55,54.64,1753.0,1512.0,0.009000000000000001,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
508,Grenada,2022-06-08,36253,168212.0,,1488.404,251.0,2.221,0.1127,GRD,North America,17948.0,0.0,28.285999999999998,231.0,0.0,0.7140000000000001,158810.777,0.0,250.283,2043.976,0.0,6.32,0.73,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,168212.0,527.0,1488.404,4.663,251.0,2.221,0.1127,8.9,tests performed,88803.0,43670.0,38440.0,6693.0,694.0,16.0,78.58,38.64,34.01,5.92,142.0,4.0,0.004,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
509,Belize,2022-06-08,9942,,,,1012.0,2.499,0.135,BLZ,North America,60493.0,206.0,136.571,678.0,0.0,0.0,149396.78699999998,508.749,337.284,1674.425,0.0,0.0,1.35,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,563789.0,1351.0,1392.364,3.3369999999999997,1012.0,2.499,0.135,7.4,tests performed,478096.0,237860.0,212057.0,49359.0,5470.0,245.0,118.07,58.74,52.37,12.19,605.0,31.0,0.008,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
510,Sri Lanka,2022-06-08,92250,7684192.0,1572.0,357.449,1353.0,0.063,0.0067,LKA,Asia,663901.0,6.0,9.0,16518.0,0.0,0.0,30882.986,0.27899999999999997,0.419,768.375,0.0,0.0,0.99,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7684192.0,1572.0,357.449,0.073,1353.0,0.063,0.0067,150.3,tests performed,39576548.0,17072957.0,14516137.0,7987454.0,14667.0,1472.0,184.1,79.42,67.53,37.16,68.0,107.0,0.0,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
511,Sri Lanka,2022-06-09,92251,7685564.0,1372.0,357.51300000000003,1371.0,0.064,0.0075,LKA,Asia,663917.0,16.0,10.286,16518.0,0.0,0.0,30883.73,0.7440000000000001,0.478,768.375,0.0,0.0,1.0,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7685564.0,1372.0,357.51300000000003,0.064,1371.0,0.064,0.0075,133.3,tests performed,39576548.0,17072957.0,14516137.0,7987454.0,14667.0,1466.0,184.1,79.42,67.53,37.16,68.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
512,Belize,2022-06-09,9943,572900.0,,1414.865,1012.0,2.499,0.1451,BLZ,North America,60694.0,201.0,146.857,678.0,0.0,0.0,149893.187,496.4,362.686,1674.425,0.0,0.0,1.34,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,572900.0,1351.0,1414.865,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,478096.0,237860.0,212057.0,49359.0,5470.0,251.0,118.07,58.74,52.37,12.19,620.0,35.0,0.009000000000000001,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
513,Morocco,2022-06-09,63943,,,,6487.0,0.174,0.0855,MAR,Africa,1172938.0,966.0,554.429,16082.0,0.0,0.5710000000000001,31408.346,25.866999999999997,14.845999999999998,430.63599999999997,0.0,0.015,1.88,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11708746.0,4632.0,313.531,0.124,6487.0,0.174,0.0855,11.7,people tested,54710937.0,24930030.0,23411104.0,6369803.0,51870.0,7225.0,146.5,66.76,62.69,17.06,193.0,674.0,0.002,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
514,Grenada,2022-06-09,36254,,,,241.0,2.1319999999999997,0.1197,GRD,North America,18035.0,87.0,28.857,231.0,0.0,0.429,159580.587,769.809,255.33900000000003,2043.976,0.0,3.792,0.74,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,168212.0,527.0,1488.404,4.663,241.0,2.1319999999999997,0.1197,8.4,tests performed,88803.0,43670.0,38440.0,6693.0,694.0,16.0,78.58,38.64,34.01,5.92,142.0,4.0,0.004,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
515,Sierra Leone,2022-06-09,86222,,,,251.0,0.031,0.0006,SLE,Africa,7683.0,0.0,0.14300000000000002,125.0,0.0,0.0,943.702,0.0,0.018000000000000002,15.354000000000001,0.0,0.0,0.27,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,426006.0,7466.0,52.326,1.087,251.0,0.031,0.0006,1755.2,tests performed,2930408.0,2383636.0,1659093.0,6974.0,1928.0,7919.0,35.99,29.28,20.38,0.09,973.0,5758.0,0.071,45.37,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
516,Cambodia,2022-06-09,15028,2975736.0,,175.59599999999998,906.0,0.053,0.0,KHM,Asia,136262.0,0.0,0.0,3056.0,0.0,0.0,8040.741999999999,0.0,0.0,180.333,0.0,0.0,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2975736.0,3334.0,175.59599999999998,0.19699999999999998,906.0,0.053,0.0,1772.7,tests performed,40160051.0,15045995.0,14328268.0,9259661.0,61376.0,29171.0,236.98,88.79,84.55,54.64,1721.0,1428.0,0.008,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
517,Germany,2022-06-09,34483,,,,87090.0,1.038,,DEU,Europe,26738530.0,77878.0,40911.714,139729.0,106.0,59.428999999999995,318693.443,928.2189999999999,487.62199999999996,1665.414,1.263,0.708,1.41,620.0,7.39,16108.0,238.91299999999998,520.0,6.1979999999999995,3266.0,38.927,130667506.0,20318.0,1557.411,5.105,87090.0,1.038,0.32799999999999996,3.0,tests performed,182173640.0,64681049.0,63314263.0,56472437.0,51572.0,25793.0,217.13,77.09,75.46,67.31,307.0,848.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
518,Zambia,2022-06-09,106001,3501449.0,2263.0,185.06,2166.0,0.114,0.0662,ZMB,Africa,322919.0,129.0,143.429,3989.0,1.0,0.28600000000000003,17067.008,6.818,7.581,210.828,0.053,0.015,1.31,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3501449.0,2263.0,185.06,0.12,2166.0,0.114,0.0662,15.1,tests performed,6209931.0,3240892.0,3878201.0,33684.0,134815.0,84467.0,32.82,17.13,20.5,0.18,4464.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
519,Tunisia,2022-06-09,98447,,,,1083.0,0.091,0.0881,TUN,Africa,1043540.0,0.0,95.429,28648.0,0.0,1.0,87429.67800000001,0.0,7.995,2400.1820000000002,0.0,0.084,0.55,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4640840.0,1722.0,388.81800000000004,0.14400000000000002,1083.0,0.091,0.0881,11.3,people tested,13178235.0,7229872.0,6372301.0,1254785.0,1662.0,591.0,110.41,60.57,53.39,10.51,50.0,189.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
520,Laos,2022-06-09,51647,1030237.0,671.0,139.611,113.0,0.015,0.1062,LAO,Asia,210129.0,21.0,12.0,756.0,0.0,0.0,28475.241,2.846,1.626,102.448,0.0,0.0,0.54,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1030237.0,671.0,139.611,0.091,113.0,0.015,0.1062,9.4,tests performed,10894482.0,5817695.0,5076787.0,1364852.0,11603.0,2560.0,147.63,78.84,68.8,31.53,347.0,599.0,0.008,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
521,South Korea,2022-06-09,89914,99543669.0,90549.0,1940.226,111400.0,2.171,0.087,KOR,Asia,18209650.0,9304.0,9687.857,24341.0,18.0,16.0,354928.071,181.34599999999998,188.828,474.435,0.35100000000000003,0.312,0.75,106.0,2.066,1725.0,28.73,103.0,2.008,656.0,12.786,99543669.0,90549.0,1940.226,1.765,111400.0,2.171,0.087,11.5,people tested,125711008.0,45062461.0,44606646.0,37558475.0,19014.0,18511.0,245.03,87.83,86.94,73.21,361.0,387.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
522,South Korea,2022-06-10,89915,99705595.0,161926.0,1943.382,108924.0,2.123,0.0842,KOR,Asia,18218078.0,8428.0,9175.286,24351.0,10.0,16.143,355092.343,164.27200000000002,178.83700000000002,474.63,0.195,0.315,0.74,107.0,2.086,1725.0,28.73,103.0,2.008,657.0,12.806,99705595.0,161926.0,1943.382,3.156,108924.0,2.123,0.0842,11.9,people tested,125747665.0,45063225.0,44611163.0,37589855.0,36657.0,16277.0,245.1,87.83,86.95,73.27,317.0,349.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
523,Sierra Leone,2022-06-10,86223,,,,251.0,0.031,0.0006,SLE,Africa,7683.0,0.0,0.14300000000000002,125.0,0.0,0.0,943.702,0.0,0.018000000000000002,15.354000000000001,0.0,0.0,0.31,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,426006.0,7466.0,52.326,1.087,251.0,0.031,0.0006,1755.2,tests performed,2930408.0,2383636.0,1659093.0,6974.0,1928.0,9899.0,35.99,29.28,20.38,0.09,1216.0,3839.0,0.047,45.37,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
524,Zambia,2022-06-10,106002,3504021.0,2572.0,185.196,2174.0,0.115,0.0559,ZMB,Africa,323058.0,139.0,121.571,3989.0,0.0,0.14300000000000002,17074.354,7.346,6.425,210.828,0.0,0.008,1.28,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3504021.0,2572.0,185.196,0.136,2174.0,0.115,0.0559,17.9,tests performed,6209931.0,3240892.0,3878201.0,33684.0,134815.0,60488.0,32.82,17.13,20.5,0.18,3197.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
525,Libya,2022-06-10,53476,,,,,,,LBY,Africa,502040.0,0.0,3.429,6430.0,0.0,0.0,72147.339,0.0,0.493,924.045,0.0,0.0,0.82,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1096.0,26.991999999999997,0.158,3669.0,0.527,0.2478,4.0,samples tested,3514582.0,2246087.0,1167540.0,100955.0,602.0,5109.0,50.51,32.28,16.78,1.45,734.0,1463.0,0.021,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
526,Germany,2022-06-10,34484,,,,87550.0,1.043,,DEU,Europe,26803867.0,65337.0,44376.0,139806.0,77.0,60.0,319472.187,778.7439999999999,528.9119999999999,1666.332,0.9179999999999999,0.715,1.38,626.0,7.461,16108.0,238.91299999999998,517.0,6.162000000000001,3480.0,41.478,130667506.0,20318.0,1557.411,5.105,87550.0,1.043,0.32799999999999996,3.0,tests performed,182211168.0,64682347.0,63316782.0,56506148.0,37528.0,25101.0,217.18,77.09,75.47,67.35,299.0,822.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
527,Cambodia,2022-06-10,15029,,,,873.0,0.052000000000000005,0.0,KHM,Asia,136262.0,0.0,0.0,3056.0,0.0,0.0,8040.741999999999,0.0,0.0,180.333,0.0,0.0,0.04,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2975736.0,3334.0,175.59599999999998,0.19699999999999998,873.0,0.052000000000000005,0.0,1772.7,tests performed,40160051.0,15045995.0,14328268.0,9259661.0,61376.0,28635.0,236.98,88.79,84.55,54.64,1690.0,1343.0,0.008,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
528,Madagascar,2022-06-10,56525,,,,541.0,0.019,0.0267,MDG,Africa,64478.0,0.0,14.429,1396.0,0.0,0.14300000000000002,2268.169,0.0,0.508,49.108000000000004,0.0,0.005,0.43,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,428492.0,693.0,15.073,0.024,541.0,0.019,0.0267,37.5,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
529,Sri Lanka,2022-06-10,92252,7686708.0,1144.0,357.566,1335.0,0.062,0.0074,LKA,Asia,663922.0,5.0,9.857000000000001,16518.0,0.0,0.0,30883.963,0.233,0.45899999999999996,768.375,0.0,0.0,1.0,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7686708.0,1144.0,357.566,0.053,1335.0,0.062,0.0074,135.4,tests performed,39576548.0,17072957.0,14516137.0,7987454.0,14667.0,1460.0,184.1,79.42,67.53,37.16,68.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
530,Poland,2022-06-10,78360,,,,4454.0,0.11800000000000001,0.0459,POL,Europe,6009726.0,247.0,204.429,116369.0,1.0,4.428999999999999,159000.079,6.535,5.409,3078.789,0.026000000000000002,0.11699999999999999,0.97,41.0,2.387,376.0,9.948,9.0,1.669,234.0,42.846000000000004,36938817.0,21192.0,977.295,0.191,4454.0,0.11800000000000001,0.0459,21.8,tests performed,54549124.0,22728003.0,22505879.0,12126249.0,4101.0,3369.0,144.32,60.13,59.54,32.08,89.0,514.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
531,Tunisia,2022-06-10,98448,,,,1054.0,0.08800000000000001,0.0905,TUN,Africa,1043540.0,0.0,95.429,28648.0,0.0,1.0,87429.67800000001,0.0,7.995,2400.1820000000002,0.0,0.084,0.54,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4640840.0,1722.0,388.81800000000004,0.14400000000000002,1054.0,0.08800000000000001,0.0905,11.0,people tested,13178235.0,7229872.0,6372301.0,1254785.0,1662.0,591.0,110.41,60.57,53.39,10.51,50.0,189.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
532,Grenada,2022-06-10,36255,,,,231.0,2.044,0.1045,GRD,North America,18035.0,0.0,24.143,231.0,0.0,0.14300000000000002,159580.587,0.0,213.625,2043.976,0.0,1.264,0.75,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,168212.0,527.0,1488.404,4.663,231.0,2.044,0.1045,9.6,tests performed,88845.0,43674.0,38454.0,6717.0,694.0,17.0,78.61,38.64,34.03,5.94,150.0,3.0,0.003,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
533,Morocco,2022-06-10,63944,,,,6652.0,0.17800000000000002,0.0976,MAR,Africa,1174028.0,1090.0,649.429,16082.0,0.0,0.5710000000000001,31437.534,29.186999999999998,17.39,430.63599999999997,0.0,0.015,1.86,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11708746.0,4632.0,313.531,0.124,6652.0,0.17800000000000002,0.0976,10.2,people tested,54710937.0,24930030.0,23411104.0,6369803.0,51870.0,6394.0,146.5,66.76,62.69,17.06,171.0,842.0,0.002,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
534,Equatorial Guinea,2022-06-10,28133,,,,109.0,0.075,0.0183,GNQ,Africa,15937.0,4.0,2.0,183.0,0.0,0.0,10991.861,2.759,1.379,126.21600000000001,0.0,0.0,1.0,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,479991.0,501.0,331.05300000000005,0.34600000000000003,109.0,0.075,0.0183,54.5,tests performed,479991.0,265505.0,206762.0,3862.0,639.0,233.0,33.11,18.31,14.26,0.27,161.0,107.0,0.006999999999999999,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
535,Colombia,2022-06-10,19326,,,,19018.0,0.371,,COL,South America,6117847.0,0.0,1248.857,139894.0,0.0,3.8569999999999998,119335.739,0.0,24.36,2728.796,0.0,0.075,0.61,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35112433.0,9497.0,684.909,0.185,19018.0,0.371,0.067,14.9,tests performed,85152277.0,42365365.0,36081319.0,12719794.0,18933.0,95080.0,166.1,82.64,70.38,24.81,1855.0,10342.0,0.02,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
536,Tunisia,2022-06-11,98449,,,,1025.0,0.086,0.0931,TUN,Africa,1043540.0,0.0,95.429,28648.0,0.0,1.0,87429.67800000001,0.0,7.995,2400.1820000000002,0.0,0.084,0.52,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4640840.0,1722.0,388.81800000000004,0.14400000000000002,1025.0,0.086,0.0931,10.7,people tested,13178235.0,7229872.0,6372301.0,1254785.0,1662.0,591.0,110.41,60.57,53.39,10.51,50.0,189.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
537,Bolivia,2022-06-11,11508,4400895.0,4466.0,371.91900000000004,6403.0,0.541,0.0525,BOL,South America,912272.0,637.0,336.14300000000003,21951.0,1.0,0.429,77095.997,53.833,28.406999999999996,1855.076,0.085,0.036000000000000004,1.4,20.0,1.69,200.0,16.902,,,760.0,65.335,4400895.0,4466.0,371.91900000000004,0.377,6403.0,0.541,0.0525,19.0,tests performed,13807513.0,7216175.0,5987290.0,1602700.0,8634.0,9601.0,116.69,60.98,50.6,13.54,811.0,1170.0,0.01,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
538,Sri Lanka,2022-06-11,92253,7687676.0,968.0,357.611,1337.0,0.062,0.008,LKA,Asia,663937.0,15.0,10.714,16519.0,1.0,0.14300000000000002,30884.661,0.698,0.498,768.422,0.047,0.006999999999999999,1.01,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7687676.0,968.0,357.611,0.045,1337.0,0.062,0.008,124.8,tests performed,39576548.0,17072957.0,14516137.0,7987454.0,14667.0,1454.0,184.1,79.42,67.53,37.16,68.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
539,Grenada,2022-06-11,36256,,,,221.0,1.955,0.1092,GRD,North America,18035.0,0.0,24.143,231.0,0.0,0.14300000000000002,159580.587,0.0,213.625,2043.976,0.0,1.264,0.76,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,168212.0,527.0,1488.404,4.663,221.0,1.955,0.1092,9.2,tests performed,88845.0,43674.0,38454.0,6717.0,694.0,17.0,78.61,38.64,34.03,5.94,150.0,4.0,0.004,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
540,Madagascar,2022-06-11,56526,,,,541.0,0.019,0.0267,MDG,Africa,64478.0,0.0,14.429,1396.0,0.0,0.14300000000000002,2268.169,0.0,0.508,49.108000000000004,0.0,0.005,0.43,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,428492.0,693.0,15.073,0.024,541.0,0.019,0.0267,37.5,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
541,Colombia,2022-06-11,19327,,,,18914.0,0.369,,COL,South America,6117847.0,0.0,1248.857,139894.0,0.0,3.8569999999999998,119335.739,0.0,24.36,2728.796,0.0,0.075,0.61,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35112433.0,9497.0,684.909,0.185,18914.0,0.369,0.067,14.9,tests performed,85152277.0,42365365.0,36081319.0,12719794.0,18933.0,87772.0,166.1,82.64,70.38,24.81,1712.0,9407.0,0.018000000000000002,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
542,Germany,2022-06-11,34485,,,,88011.0,1.0490000000000002,,DEU,Europe,26803867.0,0.0,44376.0,139806.0,0.0,60.0,319472.187,0.0,528.9119999999999,1666.332,0.0,0.715,1.36,607.0,7.235,16108.0,238.91299999999998,510.0,6.079,3619.0,43.13399999999999,130667506.0,20318.0,1557.411,5.105,88011.0,1.0490000000000002,0.32799999999999996,3.0,tests performed,182220540.0,64683079.0,63317756.0,56513814.0,9372.0,25341.0,217.19,77.1,75.47,67.36,302.0,855.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
543,Cambodia,2022-06-11,15030,,,,770.0,0.045,0.0,KHM,Asia,136262.0,0.0,0.0,3056.0,0.0,0.0,8040.741999999999,0.0,0.0,180.333,0.0,0.0,0.05,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2975736.0,3334.0,175.59599999999998,0.19699999999999998,770.0,0.045,0.0,1772.7,tests performed,40160051.0,15045995.0,14328268.0,9259661.0,61376.0,28099.0,236.98,88.79,84.55,54.64,1658.0,1259.0,0.006999999999999999,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
544,United States,2022-06-11,103230,909435615.0,431764.0,2731.735,609171.0,1.83,0.122,USA,North America,85585777.0,33999.0,106938.429,1011452.0,103.0,388.14300000000003,257079.90899999999,102.125,321.218,3038.1679999999997,0.309,1.166,1.02,2834.0,8.513,24976.0,75.02199999999999,241.0,5.156000000000001,30323.0,91.083,909435615.0,431764.0,2731.735,1.297,609171.0,1.83,0.122,8.2,tests performed,592980261.0,259330047.0,221880677.0,121424667.0,159548.0,264399.0,178.6,78.11,66.83,36.57,796.0,38146.0,0.011000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
545,Libya,2022-06-11,53477,,,,,,,LBY,Africa,502040.0,0.0,3.429,6430.0,0.0,0.0,72147.339,0.0,0.493,924.045,0.0,0.0,0.84,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1096.0,26.991999999999997,0.158,3669.0,0.527,0.2478,4.0,samples tested,3514582.0,2246087.0,1167540.0,100955.0,602.0,5491.0,50.51,32.28,16.78,1.45,789.0,1756.0,0.025,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
546,Haiti,2022-06-11,38600,,,,188.0,0.016,0.0851,HTI,North America,31004.0,0.0,16.0,837.0,0.0,0.28600000000000003,2686.263,0.0,1.386,72.52,0.0,0.025,1.25,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,204962.0,263.0,17.758,0.023,188.0,0.016,0.0851,11.8,tests performed,289890.0,191568.0,134525.0,68657.0,4278.0,1133.0,2.51,1.66,1.17,8.69,98.0,941.0,0.008,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
547,Equatorial Guinea,2022-06-11,28134,,,,109.0,0.075,0.017,GNQ,Africa,15937.0,0.0,1.857,183.0,0.0,0.0,10991.861,0.0,1.281,126.21600000000001,0.0,0.0,1.01,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,479991.0,501.0,331.05300000000005,0.34600000000000003,109.0,0.075,0.017,58.7,tests performed,479991.0,265505.0,206762.0,3862.0,639.0,279.0,33.11,18.31,14.26,0.27,192.0,129.0,0.009000000000000001,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
548,Spain,2022-06-11,91402,92882862.0,26549.0,1987.003,47635.0,1.0190000000000001,0.278,ESP,Europe,12478994.0,0.0,10821.286,107108.0,0.0,44.428999999999995,266957.7,0.0,231.495,2291.315,0.0,0.95,1.22,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,92882862.0,26549.0,1987.003,0.568,47635.0,1.0190000000000001,0.278,3.6,tests performed,94901362.0,41244442.0,40527090.0,25190614.0,47657.0,12275.0,203.02,88.23,86.7,53.89,263.0,813.0,0.002,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
549,Poland,2022-06-11,78361,,,,4273.0,0.113,0.0481,POL,Europe,6009989.0,263.0,205.571,116371.0,2.0,3.1430000000000002,159007.038,6.957999999999999,5.439,3078.842,0.053,0.083,0.96,41.0,2.387,376.0,9.948,9.0,1.669,234.0,42.846000000000004,36938817.0,21192.0,977.295,0.191,4273.0,0.113,0.0481,20.8,tests performed,54550556.0,22728192.0,22506148.0,12127272.0,1432.0,3277.0,144.33,60.13,59.54,32.09,87.0,502.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
550,Zambia,2022-06-11,106003,3506348.0,2327.0,185.31900000000002,2296.0,0.121,0.0529,ZMB,Africa,323058.0,0.0,121.571,3989.0,0.0,0.14300000000000002,17074.354,0.0,6.425,210.828,0.0,0.008,1.27,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3506348.0,2327.0,185.31900000000002,0.12300000000000001,2296.0,0.121,0.0529,18.9,tests performed,6209931.0,3240892.0,3878201.0,33684.0,134815.0,61110.0,32.82,17.13,20.5,0.18,3230.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
551,Morocco,2022-06-11,63945,,,,6817.0,0.183,0.1086,MAR,Africa,1175104.0,1076.0,740.571,16082.0,0.0,0.429,31466.346,28.813000000000002,19.831,430.63599999999997,0.0,0.011000000000000001,1.82,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11708746.0,4632.0,313.531,0.124,6817.0,0.183,0.1086,9.2,people tested,54710937.0,24930030.0,23411104.0,6369803.0,51870.0,5563.0,146.5,66.76,62.69,17.06,149.0,1010.0,0.003,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
552,South Korea,2022-06-11,89916,99839152.0,133557.0,1945.986,110782.0,2.1590000000000003,0.0797,KOR,Asia,18225460.0,7382.0,8824.857,24371.0,20.0,16.143,355236.227,143.884,172.007,475.02,0.39,0.315,0.74,101.0,1.969,1725.0,28.73,103.0,2.008,640.0,12.474,99839152.0,133557.0,1945.986,2.603,110782.0,2.1590000000000003,0.0797,12.6,people tested,125756763.0,45063539.0,44612807.0,37596995.0,9098.0,15629.0,245.12,87.83,86.96,73.28,305.0,326.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
553,Sierra Leone,2022-06-11,86224,,,,251.0,0.031,0.0006,SLE,Africa,7683.0,0.0,0.14300000000000002,125.0,0.0,0.0,943.702,0.0,0.018000000000000002,15.354000000000001,0.0,0.0,0.36,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,426006.0,7466.0,52.326,1.087,251.0,0.031,0.0006,1755.2,tests performed,2930408.0,2383636.0,1659093.0,6974.0,1928.0,11879.0,35.99,29.28,20.38,0.09,1459.0,1919.0,0.024,45.37,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
554,Zambia,2022-06-12,106004,3507848.0,1500.0,185.398,2300.0,0.122,0.0529,ZMB,Africa,323058.0,0.0,121.571,3989.0,0.0,0.14300000000000002,17074.354,0.0,6.425,210.828,0.0,0.008,1.26,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3507848.0,1500.0,185.398,0.079,2300.0,0.122,0.0529,18.9,tests performed,6209931.0,3240892.0,3878201.0,33684.0,134815.0,61733.0,32.82,17.13,20.5,0.18,3263.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
555,Libya,2022-06-12,53478,,,,,,,LBY,Africa,502040.0,0.0,3.429,6430.0,0.0,0.0,72147.339,0.0,0.493,924.045,0.0,0.0,0.86,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1096.0,26.991999999999997,0.158,3669.0,0.527,0.2478,4.0,samples tested,3555695.0,2260427.0,1177469.0,117799.0,602.0,5873.0,51.1,32.48,16.92,1.69,844.0,2049.0,0.028999999999999998,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
556,Haiti,2022-06-12,38601,205713.0,,17.823,200.0,0.017,0.08,HTI,North America,31004.0,0.0,16.0,837.0,0.0,0.28600000000000003,2686.263,0.0,1.386,72.52,0.0,0.025,1.26,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,205713.0,263.0,17.823,0.023,200.0,0.017,0.08,12.5,tests performed,289890.0,191568.0,134525.0,68657.0,4278.0,1661.0,2.51,1.66,1.17,8.69,144.0,1455.0,0.013000000000000001,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
557,Bolivia,2022-06-12,11509,4401096.0,201.0,371.936,6085.0,0.514,0.0549,BOL,South America,912473.0,201.0,334.14300000000003,21951.0,0.0,0.28600000000000003,77112.984,16.986,28.238000000000003,1855.076,0.0,0.024,1.4,20.0,1.69,193.0,16.31,,,760.0,65.335,4401096.0,201.0,371.936,0.017,6085.0,0.514,0.0549,18.2,tests performed,13809280.0,7216371.0,5987597.0,1603964.0,1767.0,9586.0,116.7,60.99,50.6,13.56,810.0,1173.0,0.01,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
558,Equatorial Guinea,2022-06-12,28135,,,,109.0,0.075,0.017,GNQ,Africa,15937.0,0.0,1.857,183.0,0.0,0.0,10991.861,0.0,1.281,126.21600000000001,0.0,0.0,1.03,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,479991.0,501.0,331.05300000000005,0.34600000000000003,109.0,0.075,0.017,58.7,tests performed,479991.0,265505.0,206762.0,3862.0,639.0,326.0,33.11,18.31,14.26,0.27,225.0,150.0,0.01,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
559,Spain,2022-06-12,91403,92905833.0,22971.0,1987.494,47507.0,1.016,0.28,ESP,Europe,12478994.0,0.0,10821.286,107108.0,0.0,44.428999999999995,266957.7,0.0,231.495,2291.315,0.0,0.95,1.24,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,92905833.0,22971.0,1987.494,0.491,47507.0,1.016,0.28,3.6,tests performed,94901362.0,41244442.0,40527090.0,25190614.0,47657.0,12289.0,203.02,88.23,86.7,53.89,263.0,796.0,0.002,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
560,Sierra Leone,2022-06-12,86225,428517.0,,52.635,251.0,0.031,0.0011,SLE,Africa,7684.0,1.0,0.28600000000000003,125.0,0.0,0.0,943.825,0.12300000000000001,0.035,15.354000000000001,0.0,0.0,0.42,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,428517.0,7466.0,52.635,1.087,251.0,0.031,0.0011,877.6,tests performed,2930408.0,2383636.0,1659093.0,6974.0,1928.0,13859.0,35.99,29.28,20.38,0.09,1702.0,0.0,0.0,45.37,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
561,Barbados,2022-06-12,7910,,,,559.0,1.943,0.2116,BRB,North America,82255.0,72.0,118.286,467.0,0.0,0.7140000000000001,285897.507,250.25400000000002,411.131,1623.1729999999998,0.0,2.483,0.85,50.0,5.529,874.0,96.649,,,,,693925.0,734.0,2411.907,2.551,559.0,1.943,0.2116,4.7,tests performed,315562.0,162464.0,153057.0,29645608.0,71.0,27.0,109.68,56.47,53.2,17.83,94.0,0.0,0.0,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
562,United States,2022-06-12,103231,909786560.0,350945.0,2732.789,604359.0,1.815,0.121,USA,North America,85602331.0,16554.0,107190.286,1011477.0,25.0,388.57099999999997,257129.634,49.724,321.975,3038.243,0.075,1.167,1.02,2856.0,8.579,25157.0,75.566,241.0,5.156000000000001,30530.0,91.705,909786560.0,350945.0,2732.789,1.054,604359.0,1.815,0.121,8.3,tests performed,593065690.0,259345610.0,221892784.0,121477862.0,85429.0,261518.0,178.63,78.11,66.83,36.59,788.0,37908.0,0.011000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
563,Ecuador,2022-06-12,26930,2843361.0,814.0,158.94899999999998,3186.0,0.17800000000000002,0.254,ECU,South America,887478.0,0.0,1326.0,35652.0,0.0,1.0,49611.722,0.0,74.126,1993.015,0.0,0.055999999999999994,1.0,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2843361.0,814.0,158.94899999999998,0.046,3186.0,0.17800000000000002,0.254,3.9,people tested,35546798.0,15176263.0,13994007.0,6939381.0,5607.0,27723.0,198.71,84.84,78.23,38.79,1550.0,850.0,0.005,65.74,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
564,Colombia,2022-06-12,19328,,,,18810.0,0.36700000000000005,,COL,South America,6117847.0,0.0,1248.857,139894.0,0.0,3.8569999999999998,119335.739,0.0,24.36,2728.796,0.0,0.075,0.61,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35112433.0,9497.0,684.909,0.185,18810.0,0.36700000000000005,0.067,14.9,tests performed,85152277.0,42365365.0,36081319.0,12719794.0,18933.0,80463.0,166.1,82.64,70.38,24.81,1570.0,8472.0,0.017,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
565,Morocco,2022-06-12,63946,11738659.0,,314.332,6983.0,0.187,0.1107,MAR,Africa,1175604.0,500.0,772.857,16082.0,0.0,0.28600000000000003,31479.735,13.389000000000001,20.695,430.63599999999997,0.0,0.008,1.78,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11738659.0,4632.0,314.332,0.124,6983.0,0.187,0.1107,9.0,people tested,54710937.0,24930030.0,23411104.0,6369803.0,51870.0,4732.0,146.5,66.76,62.69,17.06,127.0,1179.0,0.003,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
566,Guam,2022-06-12,37081,320254.0,141.0,1881.81,204.0,1.199,0.145,GUM,Oceania,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,320254.0,141.0,1881.81,0.8290000000000001,204.0,1.199,0.145,6.9,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
567,Germany,2022-06-12,34486,131286804.0,,1564.7920000000001,88471.0,1.054,0.418,DEU,Europe,26809245.0,5378.0,44662.0,139807.0,1.0,60.143,319536.287,64.1,532.321,1666.3429999999998,0.012,0.7170000000000001,1.36,621.0,7.402,16108.0,238.91299999999998,528.0,6.292999999999999,3646.0,43.456,131286804.0,20318.0,1564.7920000000001,5.105,88471.0,1.054,0.418,2.4,tests performed,182222844.0,64683282.0,63318067.0,56515604.0,2304.0,25443.0,217.19,77.1,75.47,67.36,303.0,876.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
568,Puerto Rico,2022-06-12,80023,3000200.0,1275.0,1060.799,2623.0,0.927,,PRI,North America,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3000200.0,1275.0,1060.799,0.451,2623.0,0.927,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
569,Sri Lanka,2022-06-12,92254,7689160.0,1484.0,357.68,1365.0,0.063,0.0085,LKA,Asia,663950.0,13.0,11.571,16519.0,0.0,0.14300000000000002,30885.265,0.605,0.5379999999999999,768.422,0.0,0.006999999999999999,1.0,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7689160.0,1484.0,357.68,0.069,1365.0,0.063,0.0085,118.0,tests performed,39576548.0,17072957.0,14516137.0,7987454.0,14667.0,1448.0,184.1,79.42,67.53,37.16,67.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
570,Madagascar,2022-06-12,56527,,,,541.0,0.019,0.0813,MDG,Africa,64685.0,207.0,44.0,1396.0,0.0,0.14300000000000002,2275.451,7.282,1.548,49.108000000000004,0.0,0.005,0.43,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,428492.0,693.0,15.073,0.024,541.0,0.019,0.0813,12.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
571,France,2022-06-12,32497,276871529.0,49363.0,4106.545999999999,163250.0,2.421,0.19,FRA,Europe,29807699.0,0.0,15985.143,148818.0,0.0,39.857,442106.419,0.0,237.09099999999998,2207.262,0.0,0.591,1.0,871.0,12.919,14080.0,208.834,340.0,5.043,3045.0,45.163000000000004,276871529.0,49363.0,4106.545999999999,0.732,163250.0,2.421,0.19,5.3,people tested,145039697.0,54443142.0,52876338.0,38800434.0,3380.0,32961.0,215.12,80.75,78.43,57.55,489.0,980.0,0.001,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
572,Grenada,2022-06-12,36257,,,,211.0,1.867,0.1144,GRD,North America,18035.0,0.0,24.143,231.0,0.0,0.14300000000000002,159580.587,0.0,213.625,2043.976,0.0,1.264,0.77,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,168212.0,527.0,1488.404,4.663,211.0,1.867,0.1144,8.7,tests performed,88845.0,43674.0,38454.0,6717.0,694.0,18.0,78.61,38.64,34.03,5.94,159.0,4.0,0.004,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
573,Poland,2022-06-12,78362,,,,4091.0,0.10800000000000001,0.05,POL,Europe,6010045.0,56.0,204.71400000000003,116371.0,0.0,3.1430000000000002,159008.519,1.482,5.416,3078.842,0.0,0.083,0.94,41.0,2.387,376.0,9.948,9.0,1.669,234.0,42.846000000000004,36938817.0,21192.0,977.295,0.191,4091.0,0.10800000000000001,0.05,20.0,tests performed,54550793.0,22728227.0,22506187.0,12127447.0,237.0,3265.0,144.33,60.13,59.54,32.09,86.0,496.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
574,Mexico,2022-06-12,61995,15487252.0,4780.0,118.89299999999999,11976.0,0.092,0.405,MEX,North America,5823844.0,2582.0,4651.714,325194.0,8.0,25.285999999999998,44708.619000000006,19.822,35.71,2496.4570000000003,0.061,0.19399999999999998,1.33,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15487252.0,4780.0,118.89299999999999,0.037000000000000005,11976.0,0.092,0.405,2.5,people tested,208765211.0,88207004.0,79947470.0,53077125.0,157958.0,24542.0,160.27,67.71,61.37,40.75,188.0,20146.0,0.015,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
575,Tunisia,2022-06-12,98450,4647813.0,,389.402,996.0,0.083,0.0958,TUN,Africa,1043540.0,0.0,95.429,28648.0,0.0,1.0,87429.67800000001,0.0,7.995,2400.1820000000002,0.0,0.084,0.51,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4647813.0,1722.0,389.402,0.14400000000000002,996.0,0.083,0.0958,10.4,people tested,13178235.0,7229872.0,6372301.0,1254785.0,1662.0,591.0,110.41,60.57,53.39,10.51,50.0,189.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
576,South Korea,2022-06-12,89917,99892703.0,53551.0,1947.029,111469.0,2.173,0.0776,KOR,Asia,18229288.0,3828.0,8654.286,24388.0,17.0,15.571,355310.84,74.612,168.68200000000002,475.352,0.331,0.304,0.74,98.0,1.91,1725.0,28.73,103.0,2.008,599.0,11.675,99892703.0,53551.0,1947.029,1.044,111469.0,2.173,0.0776,12.9,people tested,125756899.0,45063542.0,44612823.0,37597112.0,136.0,15625.0,245.12,87.83,86.96,73.28,305.0,325.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
577,Cambodia,2022-06-12,15031,,,,668.0,0.039,0.0,KHM,Asia,136262.0,0.0,0.0,3056.0,0.0,0.0,8040.741999999999,0.0,0.0,180.333,0.0,0.0,0.07,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2975736.0,3334.0,175.59599999999998,0.19699999999999998,668.0,0.039,0.0,1772.7,tests performed,40352987.0,15054217.0,14341016.0,9300664.0,61376.0,27562.0,238.12,88.83,84.63,54.88,1626.0,1175.0,0.006999999999999999,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
578,United States,2022-06-13,103232,910343793.0,557233.0,2734.4629999999997,589904.0,1.7719999999999998,0.122,USA,North America,85756953.0,154622.0,106036.429,1011750.0,273.0,387.85699999999997,257594.082,464.449,318.509,3039.063,0.82,1.165,1.02,2891.0,8.684,25704.0,77.209,241.0,5.156000000000001,30852.0,92.67200000000001,910343793.0,557233.0,2734.4629999999997,1.6740000000000002,589904.0,1.7719999999999998,0.122,8.2,tests performed,593328860.0,259385832.0,221925276.0,121658702.0,263170.0,254149.0,178.71,78.13,66.84,36.64,765.0,37173.0,0.011000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
579,South Korea,2022-06-13,89918,99929036.0,36333.0,1947.7379999999998,111390.0,2.171,0.0823,KOR,Asia,18239056.0,9768.0,9168.0,24390.0,2.0,13.0,355501.23,190.39,178.695,475.39099999999996,0.039,0.253,0.75,95.0,1.8519999999999999,1725.0,28.73,103.0,2.008,595.0,11.597000000000001,99929036.0,36333.0,1947.7379999999998,0.708,111390.0,2.171,0.0823,12.1,people tested,125771707.0,45063864.0,44613693.0,37610732.0,14808.0,17599.0,245.14,87.83,86.96,73.31,343.0,365.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
580,Zambia,2022-06-13,106005,3509233.0,1385.0,185.47099999999998,2266.0,0.12,0.0678,ZMB,Africa,323283.0,225.0,153.714,3989.0,0.0,0.14300000000000002,17086.246,11.892000000000001,8.124,210.828,0.0,0.008,1.27,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3509233.0,1385.0,185.47099999999998,0.073,2266.0,0.12,0.0678,14.7,tests performed,6209931.0,3240892.0,3878201.0,33684.0,134815.0,62356.0,32.82,17.13,20.5,0.18,3296.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
581,Dominican Republic,2022-06-13,26101,3414919.0,,311.759,5280.0,0.48200000000000004,0.1529,DOM,North America,592578.0,1814.0,807.429,4382.0,2.0,0.7140000000000001,54098.363,165.606,73.71300000000001,400.04699999999997,0.183,0.065,1.45,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3414919.0,3731.0,311.759,0.341,5280.0,0.48200000000000004,0.1529,6.5,samples tested,15714400.0,7227971.0,5988937.0,2362489.0,4562.0,3756.0,143.46,65.99,54.67,21.57,343.0,562.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
582,Sao Tome and Principe,2022-06-13,83632,,,,45.0,0.201,0.0222,STP,Africa,6010.0,7.0,1.0,73.0,0.0,0.0,26906.752999999997,31.339000000000002,4.477,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,3927.0,473.0,17.581,2.1180000000000003,45.0,0.201,0.0222,45.0,tests performed,214560.0,123088.0,91836.0,17869.0,9.0,204.0,96.06,55.11,41.11,8.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
583,Sri Lanka,2022-06-13,92255,7689934.0,774.0,357.716,1283.0,0.06,0.0085,LKA,Asia,663960.0,10.0,10.857000000000001,16519.0,0.0,0.14300000000000002,30885.731,0.465,0.505,768.422,0.0,0.006999999999999999,0.98,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7689934.0,774.0,357.716,0.036000000000000004,1283.0,0.06,0.0085,118.2,tests performed,39576548.0,17072957.0,14516137.0,7987454.0,14667.0,1442.0,184.1,79.42,67.53,37.16,67.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
584,Ecuador,2022-06-13,26931,2847767.0,4406.0,159.196,3262.0,0.182,0.261,ECU,South America,890852.0,3374.0,790.571,35659.0,7.0,1.429,49800.335,188.613,44.193999999999996,1993.406,0.391,0.08,1.01,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2847767.0,4406.0,159.196,0.24600000000000002,3262.0,0.182,0.261,3.8,people tested,35574876.0,15177316.0,13995917.0,6964640.0,28078.0,27529.0,198.87,84.84,78.24,38.93,1539.0,848.0,0.005,65.74,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
585,Spain,2022-06-13,91404,92970686.0,64853.0,1988.882,48360.0,1.035,0.284,ESP,Europe,12478994.0,0.0,10821.286,107108.0,0.0,44.428999999999995,266957.7,0.0,231.495,2291.315,0.0,0.95,1.27,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,92970686.0,64853.0,1988.882,1.3869999999999998,48360.0,1.035,0.284,3.5,tests performed,94901362.0,41244442.0,40527090.0,25190614.0,47657.0,12304.0,203.02,88.23,86.7,53.89,263.0,779.0,0.002,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
586,Sweden,2022-06-13,93661,18393083.0,2417.0,1810.3139999999999,2228.0,0.21899999999999997,0.1003,SWE,Europe,2510930.0,0.0,223.429,19049.0,0.0,5.0,247134.91199999998,0.0,21.991,1874.872,0.0,0.49200000000000005,0.5,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18393083.0,2417.0,1810.3139999999999,0.23800000000000002,2228.0,0.21899999999999997,0.1003,10.0,tests performed,22583361.0,7836632.0,7647284.0,5415127.0,398.0,7104.0,222.27,77.13,75.27,53.3,699.0,141.0,0.001,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
587,Malaysia,2022-06-13,58219,60440776.0,51248.0,1844.045,38741.0,1.182,0.0445,MYS,Asia,4528390.0,2092.0,1724.4289999999999,35716.0,4.0,3.714,138160.943,63.827,52.611999999999995,1089.693,0.122,0.113,1.09,24.0,0.732,450.0,13.729000000000001,10.0,5.282,796.0,24.285999999999998,60440776.0,51248.0,1844.045,1.564,38741.0,1.182,0.0445,22.5,people tested,71095587.0,28027545.0,27158079.0,16124673.0,6854.0,8601.0,216.91,85.51,82.86,49.2,262.0,672.0,0.002,50.0,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
588,Equatorial Guinea,2022-06-13,28136,,,,109.0,0.075,0.0275,GNQ,Africa,15945.0,8.0,3.0,183.0,0.0,0.0,10997.378,5.518,2.069,126.21600000000001,0.0,0.0,1.04,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,479991.0,501.0,331.05300000000005,0.34600000000000003,109.0,0.075,0.0275,36.3,tests performed,479991.0,265505.0,206762.0,3862.0,639.0,326.0,33.11,18.31,14.26,0.27,225.0,150.0,0.01,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
589,Madagascar,2022-06-13,56528,,,,541.0,0.019,0.0547,MDG,Africa,64685.0,0.0,29.570999999999998,1396.0,0.0,0.0,2275.451,0.0,1.04,49.108000000000004,0.0,0.0,0.44,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,428492.0,693.0,15.073,0.024,541.0,0.019,0.0547,18.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
590,Lithuania,2022-06-13,54896,8714191.0,1264.0,3239.6420000000003,879.0,0.327,0.16699999999999998,LTU,Europe,1156693.0,23.0,158.429,9155.0,2.0,0.857,430019.458,8.551,58.898,3403.52,0.7440000000000001,0.319,1.15,1.0,0.536,68.0,25.28,10.0,5.282,1.0,25.605,8714191.0,1264.0,3239.6420000000003,0.47,879.0,0.327,0.16699999999999998,6.0,tests performed,4487376.0,1952091.0,1876318.0,933519.0,140.0,133.0,166.83,72.57,69.76,34.71,49.0,20.0,0.001,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
591,Libya,2022-06-13,53479,,,,,,,LBY,Africa,502076.0,36.0,5.143,6430.0,0.0,0.0,72152.512,5.1739999999999995,0.7390000000000001,924.045,0.0,0.0,0.88,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1096.0,26.991999999999997,0.158,3669.0,0.527,0.2478,4.0,samples tested,3555695.0,2260427.0,1177469.0,117799.0,602.0,5190.0,51.1,32.48,16.92,1.69,746.0,1820.0,0.026000000000000002,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
592,Cambodia,2022-06-13,15032,2977609.0,,175.707,566.0,0.033,0.0,KHM,Asia,136262.0,0.0,0.0,3056.0,0.0,0.0,8040.741999999999,0.0,0.0,180.333,0.0,0.0,0.08,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2977609.0,3334.0,175.707,0.19699999999999998,566.0,0.033,0.0,1772.7,tests performed,40352987.0,15054217.0,14341016.0,9300664.0,61376.0,32168.0,238.12,88.83,84.63,54.88,1898.0,1338.0,0.008,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
593,Grenada,2022-06-13,36258,169195.0,,1497.102,206.0,1.8230000000000002,0.1172,GRD,North America,18035.0,0.0,24.143,231.0,0.0,0.14300000000000002,159580.587,0.0,213.625,2043.976,0.0,1.264,0.79,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,169195.0,527.0,1497.102,4.663,206.0,1.8230000000000002,0.1172,8.5,tests performed,88845.0,43674.0,38454.0,6717.0,694.0,18.0,78.61,38.64,34.03,5.94,159.0,4.0,0.004,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
594,Mexico,2022-06-13,61996,15505785.0,18533.0,119.035,12505.0,0.096,0.426,MEX,North America,5823844.0,0.0,4503.857,325194.0,0.0,24.429000000000002,44708.619000000006,0.0,34.575,2496.4570000000003,0.0,0.188,1.36,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15505785.0,18533.0,119.035,0.142,12505.0,0.096,0.426,2.3,people tested,208765211.0,88207004.0,79947470.0,53077125.0,157958.0,27205.0,160.27,67.71,61.37,40.75,209.0,18837.0,0.013999999999999999,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
595,Barbados,2022-06-13,7911,,,,562.0,1.953,0.2034,BRB,North America,82318.0,63.0,114.286,468.0,1.0,0.7140000000000001,286116.479,218.972,397.228,1626.649,3.4760000000000004,2.483,0.86,50.0,5.529,874.0,96.649,,,,,693925.0,734.0,2411.907,2.551,562.0,1.953,0.2034,4.9,tests performed,315593.0,162464.0,153072.0,29645608.0,71.0,25.0,109.69,56.47,53.2,17.83,87.0,0.0,0.0,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
596,Bolivia,2022-06-13,11510,4411973.0,10877.0,372.855,6798.0,0.574,0.0494,BOL,South America,912869.0,396.0,336.14300000000003,21951.0,0.0,0.28600000000000003,77146.45,33.466,28.406999999999996,1855.076,0.0,0.024,1.41,19.0,1.6059999999999999,183.0,15.465,,,760.0,65.335,4411973.0,10877.0,372.855,0.919,6798.0,0.574,0.0494,20.2,tests performed,13818364.0,7217803.0,5989201.0,1610012.0,9084.0,9715.0,116.78,61.0,50.61,13.61,821.0,1246.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
597,Belgium,2022-06-13,9550,34249135.0,13560.0,2944.305,11239.0,0.966,0.218,BEL,Europe,4177440.0,7188.0,2669.429,31835.0,19.0,9.571,359123.11299999995,617.933,229.483,2736.768,1.633,0.823,1.48,62.0,5.33,892.0,76.683,,,425.0,36.536,34249135.0,13560.0,2944.305,1.166,11239.0,0.966,0.218,4.6,tests performed,25552172.0,9246839.0,9148970.0,7585872.0,7407.0,12840.0,219.67,79.49,78.65,65.21,1104.0,100.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
598,Poland,2022-06-13,78363,,,,3910.0,0.10300000000000001,0.0521,POL,Europe,6010090.0,45.0,203.571,116371.0,0.0,3.1430000000000002,159009.71,1.1909999999999998,5.386,3078.842,0.0,0.083,0.93,41.0,2.387,376.0,9.948,9.0,1.669,234.0,42.846000000000004,36938817.0,21192.0,977.295,0.191,3910.0,0.10300000000000001,0.0521,19.2,tests performed,54553840.0,22728621.0,22506692.0,12129695.0,3047.0,3155.0,144.33,60.13,59.55,32.09,83.0,486.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
599,Puerto Rico,2022-06-13,80024,3004251.0,4051.0,1062.231,2627.0,0.929,,PRI,North America,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3004251.0,4051.0,1062.231,1.432,2627.0,0.929,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
600,Colombia,2022-06-13,19329,,,,18706.0,0.365,,COL,South America,6117847.0,0.0,1248.857,139894.0,0.0,3.8569999999999998,119335.739,0.0,24.36,2728.796,0.0,0.075,0.6,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35112433.0,9497.0,684.909,0.185,18706.0,0.365,0.067,14.9,tests performed,85152277.0,42365365.0,36081319.0,12719794.0,18933.0,73155.0,166.1,82.64,70.38,24.81,1427.0,7537.0,0.015,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
601,France,2022-06-13,32498,277171424.0,299895.0,4110.994000000001,195028.0,2.8930000000000002,0.201,FRA,Europe,29807699.0,0.0,15101.714,148818.0,0.0,39.857,442106.419,0.0,223.988,2207.262,0.0,0.591,1.0,865.0,12.83,14125.0,209.50099999999998,404.0,5.992000000000001,3630.0,53.84,277171424.0,299895.0,4110.994000000001,4.448,195028.0,2.8930000000000002,0.201,5.0,people tested,145072890.0,54444168.0,52878256.0,38830686.0,33193.0,37166.0,215.17,80.75,78.43,57.59,551.0,1103.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
602,Guam,2022-06-13,37082,320349.0,95.0,1882.368,148.0,0.87,0.18,GUM,Oceania,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,320349.0,95.0,1882.368,0.5579999999999999,148.0,0.87,0.18,5.6,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
603,United States Virgin Islands,2022-06-13,104048,114786.0,88.0,1101.403,46.0,0.441,0.19899999999999998,VIR,North America,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,114786.0,88.0,1101.403,0.8440000000000001,46.0,0.441,0.19899999999999998,5.0,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
604,Haiti,2022-06-13,38602,,,,202.0,0.018000000000000002,0.0792,HTI,North America,31004.0,0.0,16.0,837.0,0.0,0.28600000000000003,2686.263,0.0,1.386,72.52,0.0,0.025,1.26,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,205713.0,263.0,17.823,0.023,202.0,0.018000000000000002,0.0792,12.6,tests performed,289890.0,191568.0,134525.0,68657.0,4278.0,2188.0,2.51,1.66,1.17,8.69,190.0,1969.0,0.017,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
605,South Korea,2022-06-14,89919,100124007.0,194971.0,1951.5379999999998,131320.0,2.56,0.0656,KOR,Asia,18248479.0,9423.0,8611.286,24399.0,9.0,13.429,355684.895,183.666,167.84400000000002,475.566,0.175,0.262,0.74,98.0,1.91,1725.0,28.73,62.0,1.208,593.0,11.558,100124007.0,194971.0,1951.5379999999998,3.8,131320.0,2.56,0.0656,15.2,people tested,125787305.0,45064170.0,44614351.0,37625371.0,15598.0,16883.0,245.17,87.84,86.96,73.34,329.0,356.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
606,Colombia,2022-06-14,19330,,,,18602.0,0.363,,COL,South America,6117847.0,0.0,1248.857,139894.0,0.0,3.8569999999999998,119335.739,0.0,24.36,2728.796,0.0,0.075,0.6,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35112433.0,9497.0,684.909,0.185,18602.0,0.363,0.067,14.9,tests performed,85152277.0,42365365.0,36081319.0,12719794.0,18933.0,65846.0,166.1,82.64,70.38,24.81,1284.0,6602.0,0.013000000000000001,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
607,Sao Tome and Principe,2022-06-14,83633,,,,55.0,0.24600000000000002,0.0182,STP,Africa,6010.0,0.0,1.0,73.0,0.0,0.0,26906.752999999997,0.0,4.477,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,3927.0,473.0,17.581,2.1180000000000003,55.0,0.24600000000000002,0.0182,55.0,tests performed,214560.0,123088.0,91836.0,17869.0,9.0,204.0,96.06,55.11,41.11,8.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
608,Netherlands,2022-06-14,68008,30657408.0,4555.0,1785.2,3160.0,0.184,0.6629999999999999,NLD,Europe,8121239.0,2874.0,2213.143,22422.0,0.0,1.429,472904.82399999996,167.355,128.873,1305.647,0.0,0.083,1.68,29.0,1.689,404.0,23.525,29.0,1.689,285.0,16.596,30657408.0,4555.0,1785.2,0.265,3160.0,0.184,0.6629999999999999,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
609,France,2022-06-14,32499,277407756.0,236332.0,4114.499,188940.0,2.802,0.203,FRA,Europe,29984235.0,176536.0,38654.714,148967.0,149.0,43.857,444724.79299999995,2618.374,573.325,2209.472,2.21,0.65,1.04,854.0,12.665999999999999,14072.0,208.715,394.0,5.843999999999999,3597.0,53.351000000000006,277407756.0,236332.0,4114.499,3.505,188940.0,2.802,0.203,4.9,people tested,145131059.0,54445429.0,52880639.0,38885214.0,58169.0,38479.0,215.26,80.75,78.43,57.67,571.0,1095.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
610,Haiti,2022-06-14,38603,,,,204.0,0.018000000000000002,0.0658,HTI,North America,31034.0,30.0,13.429,837.0,0.0,0.28600000000000003,2688.863,2.5989999999999998,1.163,72.52,0.0,0.025,1.27,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,205713.0,263.0,17.823,0.023,204.0,0.018000000000000002,0.0658,15.2,tests performed,289890.0,191568.0,134525.0,68657.0,4278.0,2716.0,2.51,1.66,1.17,8.69,235.0,2483.0,0.022000000000000002,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
611,Poland,2022-06-14,78364,,,,3729.0,0.099,0.0539,POL,Europe,6010411.0,321.0,201.143,116380.0,9.0,3.571,159018.203,8.493,5.322,3079.08,0.23800000000000002,0.094,0.91,41.0,2.387,376.0,9.948,9.0,1.669,234.0,42.846000000000004,36938817.0,21192.0,977.295,0.191,3729.0,0.099,0.0539,18.5,tests performed,54557318.0,22728984.0,22507407.0,12132228.0,3478.0,3128.0,144.34,60.13,59.55,32.1,83.0,494.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
612,South Sudan,2022-06-14,90577,,,,578.0,0.051,0.0072,SSD,Africa,17659.0,15.0,4.143,138.0,0.0,0.0,1551.57,1.318,0.364,12.125,0.0,0.0,0.6,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,401608.0,798.0,35.286,0.07,578.0,0.051,0.0072,139.5,tests performed,1059464.0,1009259.0,967199.0,37830478.0,4158.0,11064.0,9.31,8.87,8.5,73.74,972.0,11063.0,0.09699999999999999,13.89,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
613,United States,2022-06-14,103233,911039148.0,695355.0,2736.551,554471.0,1.666,0.127,USA,North America,85847079.0,90126.0,106517.571,1012103.0,353.0,370.85699999999997,257864.8,270.718,319.954,3040.1240000000003,1.06,1.114,0.99,3001.0,9.014,26055.0,78.263,241.0,5.156000000000001,30987.0,93.07799999999999,911039148.0,695355.0,2736.551,2.089,554471.0,1.666,0.127,7.9,tests performed,593597656.0,259426656.0,221957738.0,121844778.0,268796.0,248141.0,178.79,78.14,66.85,36.7,747.0,36772.0,0.011000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
614,Ghana,2022-06-14,35306,,,,490.0,0.015,0.2347,GHA,Africa,162646.0,711.0,115.0,1445.0,0.0,0.0,5125.594,22.406,3.6239999999999997,45.537,0.0,0.0,0.98,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2454320.0,2208.0,77.345,0.07,490.0,0.015,0.2347,4.3,tests performed,16203630.0,9786631.0,6410470.0,570557.0,60270.0,106898.0,51.06,30.84,20.2,1.8,3369.0,26922.0,0.085,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
615,Guam,2022-06-14,37083,320571.0,222.0,1883.6729999999998,119.0,0.6990000000000001,0.22399999999999998,GUM,Oceania,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,320571.0,222.0,1883.6729999999998,1.304,119.0,0.6990000000000001,0.22399999999999998,4.5,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
616,Gabon,2022-06-14,32840,,,,108.0,0.047,0.045,GAB,Africa,47711.0,0.0,4.857,304.0,0.0,0.0,20936.63,0.0,2.131,133.40200000000002,0.0,0.0,0.13,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1598993.0,2256.0,701.673,0.99,108.0,0.047,0.045,22.2,tests performed,566886.0,308489.0,256088.0,2309.0,1486.0,32.0,24.88,13.54,11.24,0.1,14.0,18.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
617,Switzerland,2022-06-14,94420,21224992.0,10910.0,2435.317,8481.0,0.973,0.337,CHE,Europe,3701895.0,16614.0,2373.429,13817.0,2.0,1.143,424748.729,1906.26,272.323,1585.338,0.22899999999999998,0.131,1.17,29.0,3.327,411.0,47.157,241.0,5.156000000000001,192.0,22.03,21224992.0,10910.0,2435.317,1.252,8481.0,0.973,0.337,3.0,tests performed,15740079.0,6086761.0,6000935.0,3768368.0,1243.0,1374.0,180.6,69.84,68.85,43.24,158.0,100.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
618,Central African Republic,2022-06-14,16944,,,,85.0,0.017,0.0,CAF,Africa,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,93621.0,2691.0,19.029,40.467,85.0,0.017,0.0,1.8,tests performed,1193681.0,1101130.0,1044746.0,23536.0,12887.0,1694.0,24.26,22.38,21.23,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
619,Singapore,2022-06-14,86373,,24000.0,,24000.0,4.401,0.1378,SGP,Asia,1348775.0,5130.0,3307.429,1401.0,3.0,1.0,247318.285,940.663,606.467,256.895,0.55,0.183,1.09,7.0,1.0190000000000001,118.0,17.172,4.0,0.733,423.0,77.563,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1378,7.3,samples tested,14188601.0,5017306.0,4989090.0,4182205.0,2764.0,3127.0,260.17,92.0,91.48,76.69,573.0,162.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
620,Madagascar,2022-06-14,56529,,,,541.0,0.019,0.0547,MDG,Africa,64685.0,0.0,29.570999999999998,1396.0,0.0,0.0,2275.451,0.0,1.04,49.108000000000004,0.0,0.0,0.44,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,428492.0,693.0,15.073,0.024,541.0,0.019,0.0547,18.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
621,Puerto Rico,2022-06-14,80025,3008812.0,4561.0,1063.844,2759.0,0.976,,PRI,North America,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3008812.0,4561.0,1063.844,1.6130000000000002,2759.0,0.976,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
622,Cameroon,2022-06-14,15132,,,,608.0,0.022000000000000002,0.0,CMR,Africa,119947.0,0.0,0.0,1930.0,0.0,0.0,4405.8859999999995,0.0,0.0,70.893,0.0,0.0,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2717815.0,3334.0,99.831,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1837626.0,1558744.0,1215532.0,52011.0,9890.0,92.0,6.75,5.73,4.46,0.19,3.0,76.0,0.0,30.56,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
623,Vietnam,2022-06-14,105093,,,,279.0,0.003,,VNM,Asia,10733285.0,856.0,897.143,43083.0,0.0,0.28600000000000003,109334.96,8.72,9.139,438.866,0.0,0.003,0.84,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85819388.0,56715.0,874.202,0.578,279.0,0.003,0.9523,1.1,people tested,223974640.0,85130811.0,79550401.0,59293428.0,344648.0,272547.0,228.15,86.72,81.03,60.4,2776.0,65813.0,0.067,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
624,Belgium,2022-06-14,9551,34263394.0,14259.0,2945.53,11267.0,0.9690000000000001,0.22699999999999998,BEL,Europe,4177440.0,0.0,1820.286,31835.0,0.0,5.143,359123.11299999995,0.0,156.485,2736.768,0.0,0.442,1.49,65.0,5.587999999999999,887.0,76.253,,,447.0,38.427,34263394.0,14259.0,2945.53,1.226,11267.0,0.9690000000000001,0.22699999999999998,4.4,tests performed,25563782.0,9246920.0,9149082.0,7597289.0,11610.0,11565.0,219.76,79.49,78.65,65.31,994.0,100.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
625,Dominican Republic,2022-06-14,26102,,,,5145.0,0.47,0.1365,DOM,North America,593324.0,746.0,702.2860000000001,4382.0,0.0,0.429,54166.468,68.105,64.11399999999999,400.04699999999997,0.0,0.039,1.43,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3414919.0,3731.0,311.759,0.341,5145.0,0.47,0.1365,7.3,samples tested,15719099.0,7228579.0,5989793.0,2363958.0,4699.0,3812.0,143.5,65.99,54.68,21.58,348.0,557.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
626,Malaysia,2022-06-14,58220,60484925.0,44149.0,1845.392,37889.0,1.156,0.0485,MYS,Asia,4530312.0,1922.0,1837.8570000000002,35720.0,4.0,3.0,138219.583,58.64,56.073,1089.815,0.122,0.092,1.1,32.0,0.976,458.0,13.974,10.0,5.282,823.0,25.11,60484925.0,44149.0,1845.392,1.347,37889.0,1.156,0.0485,20.6,people tested,71102630.0,28028197.0,27162842.0,16126335.0,7043.0,8756.0,216.93,85.51,82.87,49.2,267.0,692.0,0.002,50.0,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
627,Burundi,2022-06-14,14635,,,,1810.0,0.14800000000000002,0.0065,BDI,Africa,42330.0,33.0,11.714,38.0,0.0,0.0,3453.9790000000003,2.693,0.956,3.1010000000000004,0.0,0.0,0.89,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1594740.0,3281.0,130.125,0.268,1810.0,0.14800000000000002,0.0065,154.5,tests performed,16232.0,14388.0,13811.0,768430.0,93.0,39.0,0.13,0.12,0.11,11.14,3.0,39.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
628,Equatorial Guinea,2022-06-14,28137,,,,109.0,0.075,0.0236,GNQ,Africa,15945.0,0.0,2.571,183.0,0.0,0.0,10997.378,0.0,1.774,126.21600000000001,0.0,0.0,1.06,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,479991.0,501.0,331.05300000000005,0.34600000000000003,109.0,0.075,0.0236,42.4,tests performed,479991.0,265505.0,206762.0,3862.0,639.0,326.0,33.11,18.31,14.26,0.27,225.0,150.0,0.01,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
629,Lesotho,2022-06-14,52640,,,,253.0,0.11699999999999999,0.1039,LSO,Africa,33746.0,0.0,26.285999999999998,699.0,0.0,0.0,15629.899,0.0,12.175,323.751,0.0,0.0,0.3,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,457228.0,553.0,211.771,0.256,253.0,0.11699999999999999,0.1039,9.6,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
630,Sweden,2022-06-14,93662,18395500.0,2417.0,1810.5520000000001,2259.0,0.222,0.0989,SWE,Europe,2510930.0,0.0,223.429,19049.0,0.0,5.0,247134.91199999998,0.0,21.991,1874.872,0.0,0.49200000000000005,0.49,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18395500.0,2417.0,1810.5520000000001,0.23800000000000002,2259.0,0.222,0.0989,10.1,tests performed,22583361.0,7836632.0,7647284.0,5415127.0,398.0,7005.0,222.27,77.13,75.27,53.3,689.0,141.0,0.001,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
631,Barbados,2022-06-14,7912,695574.0,,2417.639,565.0,1.964,0.2091,BRB,North America,82449.0,131.0,118.14299999999999,468.0,0.0,0.7140000000000001,286571.80199999997,455.32300000000004,410.635,1626.649,0.0,2.483,0.87,50.0,5.529,874.0,96.649,,,,,695574.0,734.0,2417.639,2.551,565.0,1.964,0.2091,4.8,tests performed,315657.0,162464.0,153124.0,29645608.0,64.0,29.0,109.71,56.47,53.22,17.83,101.0,0.0,0.0,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
632,El Salvador,2022-06-14,27793,1893633.0,4686.0,290.501,4638.0,0.7120000000000001,0.07,SLV,North America,164134.0,0.0,0.0,4135.0,0.0,0.28600000000000003,25179.718999999997,0.0,0.0,634.3480000000001,0.0,0.044000000000000004,0.1,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1893633.0,4686.0,290.501,0.7190000000000001,4638.0,0.7120000000000001,0.07,14.3,tests performed,10843511.0,4607210.0,4312033.0,1924268.0,46995.0,3583.0,166.35,70.68,66.15,29.52,550.0,270.0,0.004,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
633,Mexico,2022-06-14,61997,15523286.0,17501.0,119.17,12953.0,0.099,0.444,MEX,North America,5833738.0,9894.0,5187.286,325242.0,48.0,28.570999999999998,44784.574,75.954,39.821999999999996,2496.825,0.368,0.21899999999999997,1.39,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15523286.0,17501.0,119.17,0.134,12953.0,0.099,0.444,2.3,people tested,208765211.0,88207004.0,79947470.0,53077125.0,157958.0,29868.0,160.27,67.71,61.37,40.75,229.0,17527.0,0.013000000000000001,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
634,United States Virgin Islands,2022-06-14,104049,114852.0,66.0,1102.036,35.0,0.336,0.163,VIR,North America,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,114852.0,66.0,1102.036,0.633,35.0,0.336,0.163,6.1,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
635,Sri Lanka,2022-06-14,92256,7691045.0,1111.0,357.76800000000003,1204.0,0.055999999999999994,0.0083,LKA,Asia,663965.0,5.0,10.0,16519.0,0.0,0.14300000000000002,30885.963,0.233,0.465,768.422,0.0,0.006999999999999999,0.97,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7691045.0,1111.0,357.76800000000003,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,39586599.0,17073712.0,14523208.0,7989679.0,14667.0,1436.0,184.15,79.42,67.56,37.17,67.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
636,Spain,2022-06-14,91405,93029993.0,59307.0,1990.15,47290.0,1.012,0.292,ESP,Europe,12515127.0,36133.0,11227.0,107239.0,131.0,46.428999999999995,267730.67699999997,772.9780000000001,240.174,2294.117,2.802,0.993,1.29,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,93029993.0,59307.0,1990.15,1.2690000000000001,47290.0,1.012,0.292,3.4,tests performed,94901362.0,41244442.0,40527090.0,25190614.0,47657.0,12318.0,203.02,88.23,86.7,53.89,264.0,762.0,0.002,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
637,Libya,2022-06-14,53480,,,,,,,LBY,Africa,502076.0,0.0,5.143,6430.0,0.0,0.0,72152.512,0.0,0.7390000000000001,924.045,0.0,0.0,0.89,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1096.0,26.991999999999997,0.158,3669.0,0.527,0.2478,4.0,samples tested,3555695.0,2260427.0,1177469.0,117799.0,602.0,4506.0,51.1,32.48,16.92,1.69,648.0,1591.0,0.023,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
638,Bolivia,2022-06-14,11511,4420100.0,8127.0,373.542,6911.0,0.584,0.0523,BOL,South America,913362.0,493.0,361.42900000000003,21951.0,0.0,0.28600000000000003,77188.113,41.663000000000004,30.544,1855.076,0.0,0.024,1.41,21.0,1.775,177.0,14.958,,,760.0,65.335,4420100.0,8127.0,373.542,0.687,6911.0,0.584,0.0523,19.1,tests performed,13829006.0,7219388.0,5991140.0,1617130.0,10642.0,9608.0,116.87,61.01,50.63,13.67,812.0,1277.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
639,Zambia,2022-06-14,106006,3511686.0,2453.0,185.601,2205.0,0.11699999999999999,0.0502,ZMB,Africa,323337.0,54.0,110.714,3989.0,0.0,0.14300000000000002,17089.1,2.8539999999999996,5.852,210.828,0.0,0.008,1.25,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3511686.0,2453.0,185.601,0.13,2205.0,0.11699999999999999,0.0502,19.9,tests performed,6209931.0,3240892.0,3878201.0,33684.0,134815.0,63588.0,32.82,17.13,20.5,0.18,3361.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
640,Finland,2022-06-14,31730,11015937.0,5053.0,1985.44,4567.0,0.823,0.27399999999999997,FIN,Europe,1114573.0,0.0,1337.4289999999999,4714.0,0.0,12.429,200883.288,0.0,241.049,849.62,0.0,2.24,1.22,13.0,2.343,351.0,63.262,3.0,2.256,79.0,59.395,11015937.0,5053.0,1985.44,0.9109999999999999,4567.0,0.823,0.27399999999999997,3.6,tests performed,12080311.0,4514987.0,4330277.0,3235047.0,5922.0,5052.0,217.73,81.38,78.05,58.31,911.0,120.0,0.002,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
641,Iceland,2022-06-14,41086,1371028.0,466.0,3717.619,1016.0,2.755,,ISL,Europe,190643.0,629.0,189.143,153.0,0.0,0.0,516939.088,1705.568,512.871,414.86800000000005,0.0,0.0,1.54,1.0,2.7119999999999997,14.0,37.961999999999996,21.0,2.06,9.0,24.404,1371028.0,466.0,3717.619,1.264,1016.0,2.755,0.2219,4.5,tests performed,805469.0,309770.0,290193.0,250542.0,1925.0,61.0,218.41,84.0,78.69,67.94,165.0,10.0,0.003,11.11,368792.0,3.404,37.3,14.431,9.207,46482.958,0.2,117.992,5.31,14.3,15.2,84.169,2.91,82.99,0.9490000000000001,213.9,4.1,13.64,580.0017353999999
642,Ecuador,2022-06-14,26932,2853491.0,5724.0,159.516,3441.0,0.192,0.258,ECU,South America,890852.0,0.0,790.571,35659.0,0.0,1.429,49800.335,0.0,44.193999999999996,1993.406,0.0,0.08,1.0,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2853491.0,5724.0,159.516,0.32,3441.0,0.192,0.258,3.9,people tested,35610525.0,15178727.0,13998226.0,6997143.0,35649.0,27673.0,199.07,84.85,78.25,39.12,1547.0,910.0,0.005,75.0,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
643,Mauritius,2022-06-14,61095,,,,12.0,0.009000000000000001,,MUS,Africa,227442.0,0.0,84.429,1000.0,0.0,0.5710000000000001,178606.093,0.0,66.3,785.2819999999999,0.0,0.449,0.24,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282514.0,1362.0,1007.135,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2551638.0,977183.0,944658.0,620077.0,35153.0,215.0,200.38,76.74,74.18,48.69,169.0,30.0,0.002,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
644,Lithuania,2022-06-14,54897,8715137.0,946.0,3239.994,861.0,0.32,0.17800000000000002,LTU,Europe,1156980.0,287.0,168.0,9156.0,1.0,0.857,430126.155,106.697,62.457,3403.8920000000003,0.37200000000000005,0.319,1.16,1.0,0.536,68.0,25.28,10.0,5.282,1.0,25.605,8715137.0,946.0,3239.994,0.35200000000000004,861.0,0.32,0.17800000000000002,5.6,tests performed,4487488.0,1952108.0,1876340.0,933593.0,112.0,127.0,166.83,72.57,69.76,34.71,47.0,19.0,0.001,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
645,Luxembourg,2022-06-15,55745,4290387.0,1893.0,6758.495,1539.0,2.424,0.33299999999999996,LUX,Europe,253318.0,625.0,482.714,1084.0,0.0,0.429,399042.869,984.54,760.403,1707.5870000000002,0.0,0.675,1.42,2.0,3.1510000000000002,14.0,22.054000000000002,10.0,5.282,1.0,1.575,4290387.0,1893.0,6758.495,2.9819999999999998,1539.0,2.424,0.33299999999999996,3.0,tests performed,1301152.0,481183.0,37870.0,387731.0,251.0,221.0,204.97,75.8,5.97,61.08,348.0,13.0,0.002,19.44,634814.0,231.447,39.7,14.312000000000001,9.842,94277.965,0.2,128.275,4.42,20.9,26.0,1.188,4.51,82.25,0.9159999999999999,-48.9,-0.46,7.27,-77.03043726
646,Gabon,2022-06-15,32841,,,,109.0,0.048,0.0446,GAB,Africa,47711.0,0.0,4.857,304.0,0.0,0.0,20936.63,0.0,2.131,133.40200000000002,0.0,0.0,0.12,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1598993.0,2256.0,701.673,0.99,109.0,0.048,0.0446,22.4,tests performed,566886.0,308489.0,256088.0,2309.0,1486.0,32.0,24.88,13.54,11.24,0.1,14.0,18.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
647,Mexico,2022-06-15,61998,15540438.0,17152.0,119.301,13238.0,0.102,0.46,MEX,North America,5843190.0,9452.0,5788.286,325271.0,29.0,30.857,44857.135,72.561,44.43600000000001,2497.048,0.223,0.237,1.42,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15540438.0,17152.0,119.301,0.132,13238.0,0.102,0.46,2.2,people tested,208765211.0,88207004.0,79947470.0,53077125.0,157958.0,32531.0,160.27,67.71,61.37,40.75,250.0,16218.0,0.012,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
648,United States Virgin Islands,2022-06-15,104050,114909.0,57.0,1102.583,35.0,0.336,0.23399999999999999,VIR,North America,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,114909.0,57.0,1102.583,0.547,35.0,0.336,0.23399999999999999,4.3,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
649,Switzerland,2022-06-15,94421,21235610.0,10618.0,2436.535,8648.0,0.992,0.348,CHE,Europe,3701895.0,0.0,2373.429,13817.0,0.0,0.5710000000000001,424748.729,0.0,272.323,1585.338,0.0,0.066,1.17,26.0,2.983,423.0,48.534,241.0,5.156000000000001,212.0,24.324,21235610.0,10618.0,2436.535,1.218,8648.0,0.992,0.348,2.9,tests performed,15743051.0,6087004.0,6001336.0,3770247.0,2972.0,1400.0,180.63,69.84,68.86,43.26,161.0,97.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
650,Lithuania,2022-06-15,54898,8716100.0,963.0,3240.3520000000003,848.0,0.315,0.187,LTU,Europe,1157248.0,268.0,175.143,9156.0,0.0,0.7140000000000001,430225.789,99.633,65.112,3403.8920000000003,0.0,0.266,1.18,1.0,0.536,59.0,21.934,10.0,5.282,1.0,25.605,8716100.0,963.0,3240.3520000000003,0.358,848.0,0.315,0.187,5.3,tests performed,4487594.0,1952124.0,1876362.0,933655.0,106.0,118.0,166.83,72.57,69.76,34.71,44.0,19.0,0.001,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
651,Palau,2022-06-15,73780,,,,184.0,10.124,0.0303,PLW,Oceania,5165.0,0.0,5.571000000000001,6.0,0.0,0.0,284197.205,0.0,306.56,330.142,0.0,0.0,0.9,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,58813.0,31201.0,3236.107,0.139,184.0,10.124,0.0303,33.0,tests performed,273365003.0,137369525.0,127262916.0,26505821.0,943523.0,880651.0,121.39,61.0,56.51,11.77,3911.0,71679.0,0.032,77.78,18174.0,47.236999999999995,23.5,4.495,2.78,13240.405,4.0,423.031,15.89,7.7,22.7,59.607,4.8,73.7,0.826,4286.8,18.62,-6.95,820.6952745
652,Colombia,2022-06-15,19331,,,,18498.0,0.361,,COL,South America,6117847.0,0.0,1248.857,139894.0,0.0,3.8569999999999998,119335.739,0.0,24.36,2728.796,0.0,0.075,0.6,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35112433.0,9497.0,684.909,0.185,18498.0,0.361,0.067,14.9,tests performed,85152277.0,42365365.0,36081319.0,12719794.0,18933.0,58537.0,166.1,82.64,70.38,24.81,1142.0,5666.0,0.011000000000000001,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
653,Ecuador,2022-06-15,26933,2858034.0,4543.0,159.77,3594.0,0.201,0.263,ECU,South America,892176.0,1324.0,850.429,35662.0,3.0,1.857,49874.349,74.014,47.541000000000004,1993.5739999999998,0.168,0.10400000000000001,1.0,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2858034.0,4543.0,159.77,0.254,3594.0,0.201,0.263,3.8,people tested,35637699.0,15179969.0,14000364.0,7020739.0,27174.0,25997.0,199.22,84.86,78.26,39.25,1453.0,919.0,0.005,75.0,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
654,Malaysia,2022-06-15,58221,60526386.0,41461.0,1846.6570000000002,37827.0,1.1540000000000001,0.0516,MYS,Asia,4532632.0,2320.0,1952.4289999999999,35725.0,5.0,2.8569999999999998,138290.366,70.783,59.568000000000005,1089.968,0.153,0.087,1.1,38.0,1.159,470.0,14.34,10.0,5.282,845.0,25.781,60526386.0,41461.0,1846.6570000000002,1.265,37827.0,1.1540000000000001,0.0516,19.4,people tested,71110552.0,28028570.0,27169130.0,16127602.0,7922.0,9037.0,216.96,85.52,82.89,49.21,276.0,667.0,0.002,50.0,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
655,El Salvador,2022-06-15,27794,1898305.0,4672.0,291.218,4645.0,0.713,0.077,SLV,North America,164134.0,0.0,0.0,4135.0,0.0,0.14300000000000002,25179.718999999997,0.0,0.0,634.3480000000001,0.0,0.022000000000000002,0.09,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1898305.0,4672.0,291.218,0.7170000000000001,4645.0,0.713,0.077,13.0,tests performed,10843511.0,4607210.0,4312033.0,1924268.0,46995.0,3583.0,166.35,70.68,66.15,29.52,550.0,270.0,0.004,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
656,Poland,2022-06-15,78365,,,,3548.0,0.094,0.0579,POL,Europe,6010643.0,232.0,205.429,116387.0,7.0,3.571,159024.341,6.138,5.435,3079.2659999999996,0.185,0.094,0.9,41.0,2.387,315.0,8.334,9.0,1.669,234.0,42.846000000000004,36938817.0,21192.0,977.295,0.191,3548.0,0.094,0.0579,17.3,tests performed,54557318.0,22728984.0,22507407.0,12132228.0,3478.0,2648.0,144.34,60.13,59.55,32.1,70.0,355.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
657,Equatorial Guinea,2022-06-15,28138,,,,109.0,0.075,0.0183,GNQ,Africa,15945.0,0.0,2.0,183.0,0.0,0.0,10997.378,0.0,1.379,126.21600000000001,0.0,0.0,1.08,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,479991.0,501.0,331.05300000000005,0.34600000000000003,109.0,0.075,0.0183,54.5,tests performed,479991.0,265505.0,206762.0,3862.0,639.0,326.0,33.11,18.31,14.26,0.27,225.0,150.0,0.01,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
658,Barbados,2022-06-15,7913,,,,551.0,1.915,0.1932,BRB,North America,82545.0,96.0,106.429,471.0,3.0,0.7140000000000001,286905.474,333.67199999999997,369.91900000000004,1637.076,10.427,2.483,0.88,50.0,5.529,874.0,96.649,,,,,695574.0,734.0,2417.639,2.551,551.0,1.915,0.1932,5.2,tests performed,315723.0,162464.0,153168.0,29645608.0,66.0,33.0,109.74,56.47,53.24,17.83,115.0,0.0,0.0,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
659,Norway,2022-06-15,72799,11144361.0,1857.0,2038.99,1567.0,0.287,0.275,NOR,Europe,1438244.0,477.0,390.286,3250.0,40.0,5.7139999999999995,263143.364,87.273,71.407,594.625,7.318,1.045,1.3,41.0,2.387,467.0,85.443,7.0,1.298,146.0,26.709,11144361.0,1857.0,2038.99,0.34,1567.0,0.287,0.275,3.6,people tested,11388743.0,4340665.0,4044205.0,3003873.0,2301.0,1215.0,208.37,79.42,73.99,54.96,222.0,97.0,0.002,11.11,5465629.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
660,Singapore,2022-06-15,86374,,24000.0,,24000.0,4.401,0.1396,SGP,Asia,1352681.0,3906.0,3350.857,1401.0,0.0,1.0,248034.509,716.2239999999999,614.43,256.895,0.0,0.183,1.12,7.0,1.0190000000000001,118.0,17.172,3.0,0.55,432.0,79.214,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1396,7.2,samples tested,14191063.0,5017468.0,4989491.0,4184104.0,2462.0,3036.0,260.21,92.0,91.49,76.72,557.0,154.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
661,Estonia,2022-06-15,29002,3419193.0,1079.0,2580.157,1098.0,0.8290000000000001,0.1092,EST,Europe,578494.0,0.0,119.85700000000001,2586.0,0.0,1.714,436537.30600000004,0.0,90.445,1951.421,0.0,1.294,1.16,2.0,1.5090000000000001,65.0,49.05,1.0,0.752,62.0,46.614,3419193.0,1079.0,2580.157,0.8140000000000001,1098.0,0.8290000000000001,0.1092,9.2,tests performed,1992541.0,862741.0,847345.0,475385.0,230.0,161.0,150.36,65.1,63.94,35.87,121.0,47.0,0.004,16.67,1325188.0,31.033,42.7,19.452,13.491,29481.252,0.5,255.56900000000002,4.02,24.5,39.3,24.64,4.69,78.74,0.892,3805.5,9.78,12.82,2871.66802
662,Cape Verde,2022-06-15,16764,,,,,,,CPV,Africa,57464.0,202.0,103.714,402.0,0.0,0.0,102267.125,359.494,184.578,715.429,0.0,0.0,1.74,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,560.0,1633.3339999999998,0.997,324.0,0.5770000000000001,0.1168,8.6,tests performed,762486.0,355232.0,307398.0,142.0,4461.0,404.0,135.7,63.22,54.71,0.03,719.0,5.0,0.001,19.44,561901.0,135.58,25.7,4.46,3.437,6222.554,0.5,182.21900000000002,2.42,2.1,16.5,2.735,2.1,72.98,0.665,188.6,6.81,13.94,335.6463149
663,Central African Republic,2022-06-15,16945,,,,97.0,0.02,0.0,CAF,Africa,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,93621.0,2691.0,19.029,40.467,97.0,0.02,0.0,1.8,tests performed,1193681.0,1101130.0,1044746.0,23536.0,12887.0,1694.0,24.26,22.38,21.23,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
664,Sweden,2022-06-15,93663,18397917.0,2417.0,1810.79,2291.0,0.225,0.0975,SWE,Europe,2510930.0,0.0,223.429,19049.0,0.0,5.0,247134.91199999998,0.0,21.991,1874.872,0.0,0.49200000000000005,0.49,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18397917.0,2417.0,1810.79,0.23800000000000002,2291.0,0.225,0.0975,10.3,tests performed,22583361.0,7836632.0,7647284.0,5415127.0,398.0,6907.0,222.27,77.13,75.27,53.3,680.0,141.0,0.001,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
665,Spain,2022-06-15,91406,93088353.0,58360.0,1991.399,47224.0,1.01,0.3,ESP,Europe,12515127.0,0.0,11227.0,107239.0,0.0,46.428999999999995,267730.67699999997,0.0,240.174,2294.117,0.0,0.993,1.3,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,93088353.0,58360.0,1991.399,1.248,47224.0,1.01,0.3,3.3,tests performed,94987684.0,41249657.0,40539246.0,25272972.0,47657.0,12332.0,203.2,88.24,86.72,54.07,264.0,745.0,0.002,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
666,Mauritius,2022-06-15,61096,,,,12.0,0.009000000000000001,,MUS,Africa,227442.0,0.0,84.429,1000.0,0.0,0.5710000000000001,178606.093,0.0,66.3,785.2819999999999,0.0,0.449,0.24,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282514.0,1362.0,1007.135,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2551638.0,977183.0,944658.0,620077.0,35153.0,215.0,200.38,76.74,74.18,48.69,169.0,30.0,0.002,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
667,Bolivia,2022-06-15,11512,4428357.0,8257.0,374.24,7016.0,0.593,0.0547,BOL,South America,913874.0,512.0,383.714,21951.0,0.0,0.14300000000000002,77231.382,43.269,32.428000000000004,1855.076,0.0,0.012,1.41,20.0,1.69,172.0,14.536,,,760.0,65.335,4428357.0,8257.0,374.24,0.698,7016.0,0.593,0.0547,18.3,tests performed,13837784.0,7220701.0,5992995.0,1622740.0,8778.0,9240.0,116.94,61.02,50.65,13.71,781.0,1271.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
668,Bahamas,2022-06-15,6146,,,,208.0,0.524,0.228,BHS,North America,35464.0,113.0,47.428999999999995,815.0,3.0,0.5710000000000001,89349.33,284.69599999999997,119.493,2053.342,7.558,1.44,0.99,50.0,5.529,874.0,96.649,,,,,239960.0,567.0,604.564,1.429,208.0,0.524,0.228,4.4,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
669,Finland,2022-06-15,31731,11020492.0,4555.0,1986.261,4401.0,0.7929999999999999,0.284,FIN,Europe,1114573.0,0.0,1337.4289999999999,4714.0,0.0,12.429,200883.288,0.0,241.049,849.62,0.0,2.24,1.23,13.0,2.343,351.0,63.262,3.0,2.256,79.0,59.395,11020492.0,4555.0,1986.261,0.821,4401.0,0.7929999999999999,0.284,3.5,tests performed,12116461.0,4515765.0,4331885.0,3268811.0,5922.0,5539.0,218.38,81.39,78.08,58.91,998.0,125.0,0.002,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
670,Iceland,2022-06-15,41087,1371456.0,428.0,3718.7790000000005,878.0,2.381,,ISL,Europe,190643.0,0.0,189.143,153.0,0.0,0.0,516939.088,0.0,512.871,414.86800000000005,0.0,0.0,1.54,1.0,2.7119999999999997,14.0,37.961999999999996,21.0,2.06,9.0,24.404,1371456.0,428.0,3718.7790000000005,1.161,878.0,2.381,0.2219,4.5,tests performed,805469.0,309770.0,290193.0,250542.0,1925.0,61.0,218.41,84.0,78.69,67.94,165.0,10.0,0.003,11.11,368792.0,3.404,37.3,14.431,9.207,46482.958,0.2,117.992,5.31,14.3,15.2,84.169,2.91,82.99,0.9490000000000001,213.9,4.1,13.64,580.0017353999999
671,Saint Vincent and the Grenadines,2022-06-15,83562,,,,41.0,0.368,0.4251,VCT,North America,8929.0,13.0,17.429000000000002,109.0,0.0,0.14300000000000002,80246.969,116.834,156.635,979.6080000000001,0.0,1.284,1.09,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108037.0,59.0,970.953,0.53,41.0,0.368,0.4251,2.4,tests performed,71280.0,36508.0,30755.0,3845.0,20.0,13.0,64.06,32.81,27.64,3.46,117.0,6.0,0.005,66.67,111269.0,281.78700000000003,31.8,7.724,4.832,10727.146,56.0,252.675,11.62,4.7,21.0,87.20200000000001,2.6,72.53,0.738,12.2,3.33,8.11,227.8414821
672,Netherlands,2022-06-15,68009,30663195.0,5787.0,1785.537,3542.0,0.20600000000000002,0.6659999999999999,NLD,Europe,8124654.0,3415.0,2447.143,22423.0,1.0,1.429,473103.68200000003,198.858,142.499,1305.705,0.057999999999999996,0.083,1.64,28.0,1.63,419.0,24.399,33.0,1.922,302.0,17.586,30663195.0,5787.0,1785.537,0.337,3542.0,0.20600000000000002,0.6659999999999999,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
673,Libya,2022-06-15,53481,,,,,,,LBY,Africa,502076.0,0.0,5.143,6430.0,0.0,0.0,72152.512,0.0,0.7390000000000001,924.045,0.0,0.0,0.91,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1096.0,26.991999999999997,0.158,3669.0,0.527,0.2478,4.0,samples tested,3555695.0,2260427.0,1177469.0,117799.0,602.0,3822.0,51.1,32.48,16.92,1.69,549.0,1362.0,0.02,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
674,United States,2022-06-15,103234,911642612.0,603464.0,2738.364,526431.0,1.581,0.133,USA,North America,86031984.0,184905.0,104445.286,1012785.0,682.0,296.286,258420.212,555.4119999999999,313.73,3042.172,2.049,0.89,0.98,2992.0,8.987,26408.0,79.324,241.0,5.156000000000001,31186.0,93.676,911642612.0,603464.0,2738.364,1.8130000000000002,526431.0,1.581,0.133,7.5,tests performed,593872178.0,259467467.0,221991405.0,122034629.0,274522.0,242322.0,178.87,78.15,66.86,36.76,730.0,36220.0,0.011000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
675,Saint Lucia,2022-06-15,83297,207725.0,,1126.485,183.0,0.992,0.3419,LCA,North America,26688.0,59.0,62.571000000000005,376.0,0.0,0.7140000000000001,144728.065,319.955,339.32300000000004,2039.0339999999999,0.0,3.8739999999999997,0.85,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,207725.0,117.0,1126.485,0.634,183.0,0.992,0.3419,2.9,tests performed,121134.0,59464.0,54114.0,7556.0,71.0,31.0,65.69,32.25,29.35,4.1,168.0,13.0,0.006999999999999999,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
676,Jamaica,2022-06-15,47207,,,,1907.0,0.6409999999999999,0.1062,JAM,North America,140874.0,120.0,202.571,3091.0,0.0,1.714,47377.098,40.357,68.126,1039.529,0.0,0.5770000000000001,0.88,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1118817.0,2223.0,376.267,0.748,1907.0,0.6409999999999999,0.1062,9.4,samples tested,1449397.0,808489.0,705188.0,41627.0,933.0,607.0,48.74,27.19,23.72,1.4,204.0,346.0,0.012,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
677,Lesotho,2022-06-15,52641,,,,173.0,0.08,0.0462,LSO,Africa,33746.0,0.0,8.0,699.0,0.0,0.0,15629.899,0.0,3.705,323.751,0.0,0.0,0.29,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,457228.0,553.0,211.771,0.256,173.0,0.08,0.0462,21.6,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
678,Haiti,2022-06-15,38604,,,,206.0,0.018000000000000002,0.0631,HTI,North America,31054.0,20.0,13.0,837.0,0.0,0.28600000000000003,2690.595,1.733,1.126,72.52,0.0,0.025,1.27,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,205713.0,263.0,17.823,0.023,206.0,0.018000000000000002,0.0631,15.8,tests performed,289890.0,191568.0,134525.0,68657.0,4278.0,3244.0,2.51,1.66,1.17,8.69,281.0,2998.0,0.026000000000000002,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
679,Burundi,2022-06-15,14636,,,,1824.0,0.149,0.0064,BDI,Africa,42330.0,0.0,11.714,38.0,0.0,0.0,3453.9790000000003,0.0,0.956,3.1010000000000004,0.0,0.0,0.9,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1594740.0,3281.0,130.125,0.268,1824.0,0.149,0.0064,155.7,tests performed,16232.0,14388.0,13811.0,768430.0,93.0,39.0,0.13,0.12,0.11,11.14,3.0,39.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
680,Kosovo,2022-06-15,50510,,,,237.0,0.133,0.035,OWID_KOS,Europe,228465.0,15.0,8.286,3139.0,0.0,0.0,128198.79699999999,8.417,4.649,1761.39,0.0,0.0,1.58,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1844866.0,1719.0,1035.212,0.965,237.0,0.133,0.035,28.6,tests performed,1830080.0,903514.0,823516.0,103050.0,64.0,56.0,102.69,50.7,46.21,5.78,31.0,13.0,0.001,37.04,1782115.0,168.155,23.2,3.895,2.21,9795.834,0.6,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,5869.8,25.36,-11.76,3293.726836
681,South Sudan,2022-06-15,90578,,,,578.0,0.051,0.0111,SSD,Africa,17675.0,16.0,6.428999999999999,138.0,0.0,0.0,1552.976,1.406,0.565,12.125,0.0,0.0,0.6,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,401608.0,798.0,35.286,0.07,578.0,0.051,0.0111,89.9,tests performed,1059464.0,1009259.0,967199.0,37830478.0,4158.0,11064.0,9.31,8.87,8.5,73.74,972.0,11063.0,0.09699999999999999,16.67,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
682,Zambia,2022-06-15,106007,3514038.0,2352.0,185.725,2122.0,0.11199999999999999,0.0582,ZMB,Africa,323654.0,317.0,123.429,3990.0,1.0,0.28600000000000003,17105.854,16.754,6.523,210.88099999999997,0.053,0.015,1.26,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3514038.0,2352.0,185.725,0.124,2122.0,0.11199999999999999,0.0582,17.2,tests performed,6209931.0,3240892.0,3878201.0,33684.0,134815.0,51717.0,32.82,17.13,20.5,0.18,2733.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
683,Dominican Republic,2022-06-15,26103,,,,5010.0,0.457,0.1239,DOM,North America,593324.0,0.0,620.857,4382.0,0.0,0.28600000000000003,54166.468,0.0,56.68,400.04699999999997,0.0,0.026000000000000002,1.41,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3414919.0,3731.0,311.759,0.341,5010.0,0.457,0.1239,8.1,samples tested,15724169.0,7229395.0,5990488.0,2365562.0,5070.0,3868.0,143.55,66.0,54.69,21.6,353.0,572.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
684,Belgium,2022-06-15,9552,34276648.0,13254.0,2946.67,11216.0,0.9640000000000001,0.237,BEL,Europe,4177440.0,0.0,1820.286,31835.0,0.0,5.143,359123.11299999995,0.0,156.485,2736.768,0.0,0.442,1.53,57.0,4.9,873.0,75.04899999999999,,,454.0,39.029,34276648.0,13254.0,2946.67,1.139,11216.0,0.9640000000000001,0.237,4.2,tests performed,25582334.0,9247129.0,9149434.0,7615280.0,18552.0,10934.0,219.92,79.5,78.66,65.47,940.0,104.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
685,India,2022-06-15,41917,855871030.0,440278.0,614.2280000000001,335487.0,0.24100000000000002,0.0256,IND,Asia,43257730.0,12213.0,8601.143,524803.0,11.0,11.429,31044.531000000003,8.765,6.172999999999999,376.63199999999995,0.008,0.008,1.53,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,855871030.0,440278.0,614.2280000000001,0.316,335487.0,0.24100000000000002,0.0256,39.0,samples tested,1954285339.0,1013988367.0,901971812.0,38325160.0,1517997.0,1536030.0,140.25,72.77,64.73,2.75,1102.0,189707.0,0.013999999999999999,37.04,1393409033.0,450.41900000000004,28.2,5.989,3.4139999999999997,6426.674,21.2,282.28,10.39,1.9,20.6,59.55,0.53,69.66,0.645,213.9,4.1,13.64,580.0017353999999
686,Vietnam,2022-06-15,105094,,,,346.0,0.004,,VNM,Asia,10734151.0,866.0,890.429,43083.0,0.0,0.28600000000000003,109343.78199999999,8.822000000000001,9.07,438.866,0.0,0.003,0.85,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85819388.0,56715.0,874.202,0.578,346.0,0.004,0.9523,1.1,people tested,223974640.0,85130811.0,79550401.0,59293428.0,344648.0,284896.0,228.15,86.72,81.03,60.4,2902.0,66306.0,0.068,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
687,Ghana,2022-06-15,35307,,,,490.0,0.015,0.3936,GHA,Africa,163191.0,545.0,192.857,1445.0,0.0,0.0,5142.769,17.175,6.077999999999999,45.537,0.0,0.0,0.98,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2454320.0,2208.0,77.345,0.07,490.0,0.015,0.3936,2.5,tests performed,16203630.0,9786631.0,6410470.0,570557.0,60270.0,106898.0,51.06,30.84,20.2,1.8,3369.0,26922.0,0.085,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
688,Cameroon,2022-06-15,15133,,,,608.0,0.022000000000000002,0.0,CMR,Africa,119947.0,0.0,0.0,1930.0,0.0,0.0,4405.8859999999995,0.0,0.0,70.893,0.0,0.0,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2717815.0,3334.0,99.831,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1837626.0,1558744.0,1215532.0,52011.0,9890.0,92.0,6.75,5.73,4.46,0.19,3.0,76.0,0.0,30.56,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
689,Puerto Rico,2022-06-15,80026,3012447.0,3635.0,1065.129,2655.0,0.9390000000000001,,PRI,North America,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3012447.0,3635.0,1065.129,1.285,2655.0,0.9390000000000001,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
690,South Korea,2022-06-15,89920,100269452.0,145445.0,1954.3729999999998,116619.0,2.273,0.0687,KOR,Asia,18256457.0,7978.0,8015.857,24407.0,8.0,12.0,355840.396,155.501,156.239,475.722,0.156,0.23399999999999999,0.75,93.0,1.8130000000000002,1725.0,28.73,62.0,1.208,579.0,11.285,100269452.0,145445.0,1954.3729999999998,2.835,116619.0,2.273,0.0687,14.5,people tested,125803149.0,45064465.0,44615221.0,37640056.0,15844.0,15879.0,245.21,87.84,86.96,73.37,310.0,342.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
691,Sao Tome and Principe,2022-06-15,83634,,,,66.0,0.295,0.0152,STP,Africa,6010.0,0.0,1.0,73.0,0.0,0.0,26906.752999999997,0.0,4.477,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,3927.0,473.0,17.581,2.1180000000000003,66.0,0.295,0.0152,66.0,tests performed,214560.0,123088.0,91836.0,17869.0,9.0,204.0,96.06,55.11,41.11,8.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
692,Madagascar,2022-06-15,56530,,,,541.0,0.019,0.0547,MDG,Africa,64685.0,0.0,29.570999999999998,1396.0,0.0,0.0,2275.451,0.0,1.04,49.108000000000004,0.0,0.0,0.44,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,428492.0,693.0,15.073,0.024,541.0,0.019,0.0547,18.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
693,Guam,2022-06-15,37084,320898.0,327.0,1885.594,121.0,0.711,0.245,GUM,Oceania,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,320898.0,327.0,1885.594,1.921,121.0,0.711,0.245,4.1,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
694,France,2022-06-15,32500,277640344.0,232588.0,4117.9490000000005,192921.0,2.861,0.209,FRA,Europe,30036189.0,51954.0,38390.714,149016.0,49.0,39.857,445495.37200000003,770.579,569.409,2210.198,0.727,0.591,1.08,847.0,12.562999999999999,13910.0,206.312,385.0,5.71,3421.0,50.74,277640344.0,232588.0,4117.9490000000005,3.45,192921.0,2.861,0.209,4.8,people tested,145173317.0,54446851.0,52882887.0,38923804.0,42258.0,38597.0,215.32,80.76,78.44,57.73,572.0,1085.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
695,Malaysia,2022-06-16,58222,60562563.0,36177.0,1847.761,37116.0,1.1320000000000001,0.0532,MYS,Asia,4534665.0,2033.0,1973.286,35730.0,5.0,3.1430000000000002,138352.393,62.027,60.205,1090.12,0.153,0.096,1.09,32.0,0.976,476.0,14.523,10.0,5.282,832.0,25.384,60562563.0,36177.0,1847.761,1.104,37116.0,1.1320000000000001,0.0532,18.8,people tested,71122285.0,28029140.0,27178788.0,16129176.0,11733.0,9501.0,216.99,85.52,82.92,49.21,290.0,655.0,0.002,50.0,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
696,Burundi,2022-06-16,14637,1609334.0,,131.316,1824.0,0.149,0.0107,BDI,Africa,42385.0,55.0,19.570999999999998,38.0,0.0,0.0,3458.467,4.488,1.597,3.1010000000000004,0.0,0.0,0.9,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1609334.0,3281.0,131.316,0.268,1824.0,0.149,0.0107,93.2,tests performed,16232.0,14388.0,13811.0,768430.0,93.0,39.0,0.13,0.12,0.11,11.14,3.0,39.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
697,Suriname,2022-06-16,92940,,,,28.0,0.047,,SUR,South America,80766.0,0.0,13.286,1355.0,0.0,0.429,136475.622,0.0,22.45,2289.633,0.0,0.7240000000000001,1.05,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,84019.0,198.0,141.972,0.335,28.0,0.047,0.508,2.0,tests performed,505699.0,267820.0,237879.0,48889.0,398.0,14.0,85.45,45.26,40.2,8.26,24.0,6.0,0.001,44.44,591798.0,3.612,29.6,6.933,4.229,13767.118999999999,0.7,258.314,12.54,7.4,42.9,67.779,3.1,71.68,0.738,48.2,1.23,14.57,81.44670986
698,Democratic Republic of Congo,2022-06-16,24235,1039170.0,,11.249,699.0,0.008,0.1518,COD,Africa,89932.0,0.0,106.14299999999999,1345.0,0.0,1.0,973.5219999999999,0.0,1.149,14.56,0.0,0.011000000000000001,0.45,8.0,0.746,191.0,17.81,10.0,0.932,238.0,22.191999999999997,1039170.0,4000.0,11.249,0.373,699.0,0.008,0.1518,6.6,tests performed,2952125.0,2416650.0,1710177.0,4240912.0,42303.0,40168.0,3.2,2.62,1.85,39.54,435.0,40168.0,0.043,31.48,92377986.0,35.879,17.0,3.02,1.745,808.133,77.1,318.949,6.1,30.5,38.3,4.4719999999999995,6.63,60.68,0.48,42100.6,15.74,5.93,3925.6274829999998
699,Uganda,2022-06-16,100053,,,,1464.0,0.031,0.065,UGA,Africa,166593.0,96.0,95.14299999999999,3613.0,8.0,1.571,3535.24,2.037,2.019,76.671,0.17,0.033,0.73,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,2729243.0,10103.0,57.917,0.214,1464.0,0.031,0.065,15.4,tests performed,21268120.0,15896844.0,10790397.0,74990.0,134275.0,15895.0,45.13,33.73,22.9,0.16,337.0,9702.0,0.021,28.7,47123533.0,213.75900000000001,16.4,2.168,1.308,1697.707,41.6,213.333,2.5,3.4,16.7,21.221999999999998,0.5,63.37,0.544,20481.6,16.84,40.84,1715.9856710000001
700,Dominican Republic,2022-06-16,26104,,,,4875.0,0.445,0.1595,DOM,North America,594964.0,1640.0,777.571,4382.0,0.0,0.28600000000000003,54316.189000000006,149.721,70.987,400.04699999999997,0.0,0.026000000000000002,1.4,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3414919.0,3731.0,311.759,0.341,4875.0,0.445,0.1595,6.3,samples tested,15725682.0,7229701.0,5990745.0,2366048.0,1513.0,3453.0,143.56,66.0,54.69,21.6,315.0,535.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
701,Czechia,2022-06-16,24132,54566374.0,4875.0,5087.986,3887.0,0.36200000000000004,0.079,CZE,Europe,3924729.0,373.0,353.57099999999997,40307.0,4.0,1.429,365957.35,34.78,32.968,3758.385,0.373,0.133,1.26,10.0,0.932,114.0,10.63,5.0,0.466,103.0,9.604,54566374.0,4875.0,5087.986,0.455,3887.0,0.36200000000000004,0.079,12.7,tests performed,17657722.0,6964540.0,6878037.0,4225645.0,1198.0,1105.0,164.65,64.94,64.13,39.4,103.0,68.0,0.001,14.81,10724553.0,137.17600000000002,43.3,19.027,11.58,32605.906000000003,0.7,227.485,6.82,30.5,38.3,85.198,6.63,79.38,0.9,42100.6,15.74,5.93,3925.6274829999998
702,Ghana,2022-06-16,35308,2458238.0,,77.468,490.0,0.015,0.4347,GHA,Africa,163332.0,141.0,213.0,1445.0,0.0,0.0,5147.212,4.4430000000000005,6.712000000000001,45.537,0.0,0.0,0.99,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2458238.0,2208.0,77.468,0.07,490.0,0.015,0.4347,2.3,tests performed,16203630.0,9786631.0,6410470.0,570557.0,60270.0,106898.0,51.06,30.84,20.2,1.8,3369.0,26922.0,0.085,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
703,Guam,2022-06-16,37085,321422.0,524.0,1888.6729999999998,194.0,1.14,0.21,GUM,Oceania,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,321422.0,524.0,1888.6729999999998,3.0789999999999997,194.0,1.14,0.21,4.8,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
704,Central African Republic,2022-06-16,16946,,,,108.0,0.022000000000000002,0.0,CAF,Africa,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,93621.0,2691.0,19.029,40.467,108.0,0.022000000000000002,0.0,1.8,tests performed,1193681.0,1101130.0,1044746.0,23536.0,12887.0,1694.0,24.26,22.38,21.23,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
705,El Salvador,2022-06-16,27795,1902950.0,4645.0,291.931,4651.0,0.7140000000000001,0.085,SLV,North America,164134.0,0.0,0.0,4135.0,0.0,0.14300000000000002,25179.718999999997,0.0,0.0,634.3480000000001,0.0,0.022000000000000002,0.09,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1902950.0,4645.0,291.931,0.713,4651.0,0.7140000000000001,0.085,11.8,tests performed,10875762.0,4609638.0,4314494.0,1951630.0,46995.0,3583.0,166.84,70.72,66.19,29.94,550.0,270.0,0.004,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
706,Malawi,2022-06-16,57341,587353.0,,29.894000000000002,229.0,0.012,0.0649,MWI,Africa,86162.0,16.0,14.857000000000001,2643.0,1.0,0.14300000000000002,4385.352,0.8140000000000001,0.7559999999999999,134.52,0.051,0.006999999999999999,1.37,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,587353.0,490.0,29.894000000000002,0.025,229.0,0.012,0.0649,15.4,tests performed,2166402.0,2047317.0,1590299.0,740.0,14163.0,0.0,11.03,10.42,8.09,0.0,0.0,64387.0,0.32799999999999996,47.22,19647681.0,197.519,18.1,2.9789999999999996,1.7830000000000001,1095.042,71.4,227.34900000000002,3.94,4.4,24.7,8.704,1.3,64.26,0.483,413.4,8.35,22.9,627.8943667000001
707,Zimbabwe,2022-06-16,106779,2365708.0,,156.751,1765.0,0.11699999999999999,0.0585,ZWE,Africa,254502.0,115.0,103.286,5526.0,1.0,1.571,16863.18,7.62,6.843999999999999,366.15,0.066,0.10400000000000001,0.86,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,2365708.0,3537.0,156.751,0.23399999999999999,1765.0,0.11699999999999999,0.0585,17.1,tests performed,11874117.0,6274305.0,4570349.0,1029463.0,7126.0,6400.0,78.68,41.57,30.28,6.82,424.0,1717.0,0.011000000000000001,38.89,15092171.0,42.729,19.6,2.822,1.882,1899.775,21.4,307.846,1.82,1.6,30.7,36.791,1.7,61.49,0.5710000000000001,38486.9,10.93,1.96,1134.110282
708,South Africa,2022-06-16,89055,,,,15741.0,0.262,0.0782,ZAF,Africa,3983675.0,1936.0,1230.4289999999999,101584.0,8.0,19.429000000000002,66348.144,32.244,20.493000000000002,1691.882,0.133,0.324,0.7,253.0,4.2139999999999995,2194.0,36.541,7.0,3.319,1489.0,24.799,25537597.0,22417.0,425.329,0.373,15741.0,0.262,0.0782,12.8,people tested,36558454.0,21934417.0,18954843.0,3358592.0,35540.0,27826.0,60.89,36.53,31.57,5.59,463.0,10802.0,0.018000000000000002,43.52,60041996.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
709,North Macedonia,2022-06-16,71377,,,,760.0,0.365,0.0628,MKD,Europe,312807.0,59.0,47.714,9320.0,2.0,1.0,150195.831,28.329,22.91,4475.044,0.96,0.48,1.02,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2068585.0,1124.0,993.2410000000001,0.54,760.0,0.365,0.0628,15.9,tests performed,1843815.0,849038.0,836339.0,158438.0,3869.0,442.0,88.53,40.77,40.16,7.61,212.0,347.0,0.017,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
710,Israel,2022-06-16,45537,51621379.0,24957.0,5556.063,21521.0,2.316,0.28800000000000003,ISR,Asia,4209564.0,4148.0,5747.714,10882.0,0.0,2.1430000000000002,453079.755,446.454,618.632,1171.241,0.0,0.231,1.46,36.0,3.875,830.0,89.334,17.0,1.83,677.0,72.866,51621379.0,24957.0,5556.063,2.6860000000000004,21521.0,2.316,0.28800000000000003,3.5,people tested,18171526.0,6711442.0,6143662.0,5316422.0,1179.0,869.0,195.58,72.24,66.12,57.22,94.0,67.0,0.001,14.81,9291000.0,402.606,30.6,11.732999999999999,7.359,33132.32,0.5,93.32,6.74,15.4,35.4,94.57600000000001,2.99,82.97,0.919,10022.5,8.92,-9.47,1078.7321060000002
711,Palau,2022-06-16,73781,,,,179.0,9.849,0.0311,PLW,Oceania,5165.0,0.0,5.571000000000001,6.0,0.0,0.0,284197.205,0.0,306.56,330.142,0.0,0.0,0.89,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,58813.0,31201.0,3236.107,0.139,179.0,9.849,0.0311,32.1,tests performed,273365003.0,137369525.0,127262916.0,26505821.0,943523.0,880651.0,121.39,61.0,56.51,11.77,3911.0,71679.0,0.032,77.78,18174.0,47.236999999999995,23.5,4.495,2.78,13240.405,4.0,423.031,15.89,7.7,22.7,59.607,4.8,73.7,0.826,4286.8,18.62,-6.95,820.6952745
712,Nigeria,2022-06-16,69833,5219585.0,,24.69,2627.0,0.012,0.011000000000000001,NGA,Africa,256467.0,63.0,29.0,3144.0,0.0,0.0,1213.1789999999999,0.298,0.13699999999999998,14.872,0.0,0.0,1.41,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5219585.0,11989.0,24.69,0.057,2627.0,0.012,0.011000000000000001,90.6,tests performed,46391592.0,27401621.0,16817979.0,942369.0,186047.0,301975.0,21.94,12.96,7.96,0.45,1428.0,67082.0,0.032,40.74,211400704.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,54.69,0.539,8148.4,31.97,5.18,1215.747423
713,Haiti,2022-06-16,38605,,,,208.0,0.018000000000000002,0.0625,HTI,North America,31054.0,0.0,13.0,837.0,0.0,0.28600000000000003,2690.595,0.0,1.126,72.52,0.0,0.025,1.28,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,205713.0,263.0,17.823,0.023,208.0,0.018000000000000002,0.0625,16.0,tests performed,289890.0,191568.0,134525.0,68657.0,4278.0,3771.0,2.51,1.66,1.17,8.69,327.0,3512.0,0.03,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
714,Cape Verde,2022-06-16,16765,,,,,,,CPV,Africa,57643.0,179.0,129.286,402.0,0.0,0.0,102585.68699999999,318.561,230.08599999999998,715.429,0.0,0.0,1.71,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,560.0,1633.3339999999998,0.997,324.0,0.5770000000000001,0.1168,8.6,tests performed,762486.0,355232.0,307398.0,142.0,4461.0,404.0,135.7,63.22,54.71,0.03,719.0,5.0,0.001,19.44,561901.0,135.58,25.7,4.46,3.437,6222.554,0.5,182.21900000000002,2.42,2.1,16.5,2.735,2.1,72.98,0.665,188.6,6.81,13.94,335.6463149
715,Namibia,2022-06-16,66380,1050977.0,,406.199,721.0,0.27899999999999997,0.2239,NAM,Africa,168695.0,104.0,161.429,4054.0,2.0,2.0,65200.066,40.196,62.391999999999996,1566.858,0.773,0.773,0.62,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1050977.0,778.0,406.199,0.301,721.0,0.27899999999999997,0.2239,4.5,tests performed,825518.0,496475.0,426681.0,64392.0,3837.0,127.0,31.91,19.19,16.49,2.49,49.0,1243.0,0.048,23.15,2587344.0,3.0780000000000003,22.0,3.552,2.085,9541.808,13.4,243.81099999999998,3.94,9.7,34.2,44.6,0.9,63.71,0.6459999999999999,2633.7,21.49,55.05,4193.449258
716,Myanmar,2022-06-16,65567,,,,6065.0,0.111,0.0012,MMR,Asia,613467.0,3.0,7.428999999999999,19434.0,0.0,0.0,11193.425,0.055,0.136,354.596,0.0,0.0,0.92,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,8296334.0,16383.0,151.376,0.299,6065.0,0.111,0.0012,816.4,samples tested,62259560.0,33004742.0,27027467.0,2227351.0,3800.0,187094.0,113.6,60.22,49.31,4.06,3414.0,110614.0,0.20199999999999999,51.85,54806014.0,81.721,29.1,5.732,3.12,5591.597,6.4,202.104,4.61,6.3,35.2,79.28699999999999,0.9,67.13,0.583,2633.7,21.49,55.05,4193.449258
717,Belgium,2022-06-16,9553,34289463.0,12815.0,2947.772,11331.0,0.9740000000000001,0.244,BEL,Europe,4187940.0,10500.0,2526.857,31856.0,21.0,5.7139999999999995,360025.77,902.6560000000001,217.227,2738.573,1.805,0.491,1.57,48.0,4.126,897.0,77.113,,,466.0,40.061,34289463.0,12815.0,2947.772,1.102,11331.0,0.9740000000000001,0.244,4.1,tests performed,25594059.0,9247179.0,9149512.0,7626877.0,11725.0,9961.0,220.03,79.5,78.66,65.57,856.0,101.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
718,Latvia,2022-06-16,52486,7252600.0,2250.0,3884.765,2059.0,1.103,0.1003,LVA,Europe,831521.0,273.0,206.429,5842.0,1.0,0.7140000000000001,445393.89200000005,146.22899999999998,110.571,3129.195,0.536,0.38299999999999995,1.22,3.0,1.607,294.0,157.477,11.0,5.81,93.0,49.651,7252600.0,2250.0,3884.765,1.205,2059.0,1.103,0.1003,10.0,tests performed,2893120.0,1345834.0,1305512.0,527721.0,122.0,125.0,154.97,72.09,69.93,28.27,67.0,13.0,0.001,11.11,1866934.0,31.212,43.9,19.754,14.136,25063.846,0.7,350.06,4.91,25.6,51.0,49.839,5.57,75.29,0.866,8297.0,12.2,2.87,4444.184958
719,South Sudan,2022-06-16,90579,,,,578.0,0.051,0.0121,SSD,Africa,17679.0,4.0,7.0,138.0,0.0,0.0,1553.3270000000002,0.35100000000000003,0.615,12.125,0.0,0.0,0.59,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,401608.0,798.0,35.286,0.07,578.0,0.051,0.0121,82.6,tests performed,1059464.0,1009259.0,967199.0,37830478.0,4158.0,11064.0,9.31,8.87,8.5,73.74,972.0,11063.0,0.09699999999999999,16.67,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
720,United States,2022-06-16,103235,912115224.0,472612.0,2739.783,519045.0,1.5590000000000002,0.136,USA,North America,86162107.0,130123.0,102586.429,1013208.0,423.0,317.42900000000003,258811.07100000003,390.85900000000004,308.14599999999996,3043.4429999999998,1.271,0.953,0.99,3045.0,9.146,26245.0,78.834,241.0,5.156000000000001,31263.0,93.90700000000001,912115224.0,472612.0,2739.783,1.42,519045.0,1.5590000000000002,0.136,7.4,tests performed,594143101.0,259508029.0,222023745.0,122222198.0,270923.0,237402.0,178.95,78.16,66.87,36.81,715.0,35804.0,0.011000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
721,Netherlands,2022-06-16,68010,30668490.0,5295.0,1785.845,3883.0,0.226,0.667,NLD,Europe,8128820.0,4166.0,2695.2859999999996,22428.0,5.0,1.714,473346.271,242.58900000000003,156.94799999999998,1305.996,0.29100000000000004,0.1,1.59,24.0,1.3980000000000001,409.0,23.816,27.0,1.5719999999999998,325.0,18.925,30668490.0,5295.0,1785.845,0.308,3883.0,0.226,0.667,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
722,Madagascar,2022-06-16,56531,451753.0,,15.892000000000001,541.0,0.019,0.0547,MDG,Africa,64685.0,0.0,29.570999999999998,1396.0,0.0,0.0,2275.451,0.0,1.04,49.108000000000004,0.0,0.0,0.44,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,451753.0,693.0,15.892000000000001,0.024,541.0,0.019,0.0547,18.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
723,Albania,2022-06-16,988,,,,129.0,0.045,0.2636,ALB,Europe,276821.0,0.0,34.0,3497.0,0.0,0.0,96354.80699999999,0.0,11.835,1217.223,0.0,0.0,1.79,,,,,,,,,1611248.0,511.0,560.837,0.17800000000000002,129.0,0.045,0.2636,3.8,tests performed,2883079.0,1322864.0,1244383.0,313660.0,2541.0,1129.0,100.35,46.05,43.31,10.92,393.0,186.0,0.006,11.11,2872934.0,104.87100000000001,38.0,13.187999999999999,8.642999999999999,11803.431,1.1,304.195,10.08,7.1,51.2,37.746,2.89,78.57,0.795,16257.3,32.6,-3.38,5658.779492000001
724,Slovenia,2022-06-16,88084,5317442.0,3275.0,2558.033,3013.0,1.449,0.12,SVN,Europe,1029887.0,472.0,337.57099999999997,6645.0,0.0,0.28600000000000003,495442.154,227.062,162.394,3196.6740000000004,0.0,0.13699999999999998,1.28,7.0,3.367,53.0,25.496,2.0,0.948,29.0,13.751,5317442.0,3275.0,2558.033,1.575,3013.0,1.449,0.12,8.3,tests performed,2995019.0,1265692.0,1221988.0,656532.0,230.0,72.0,144.08,60.89,58.79,31.58,35.0,6.0,0.0,11.11,2078723.0,102.619,44.5,19.062,12.93,31400.84,0.7,153.493,7.25,20.1,25.0,19.275,4.5,81.32,0.917,5202.5,10.13,-6.54,2502.73846
725,Colombia,2022-06-16,19332,35241195.0,,687.421,18395.0,0.359,0.085,COL,South America,6131657.0,13810.0,1972.8570000000002,139918.0,24.0,3.429,119605.119,269.38,38.483000000000004,2729.264,0.46799999999999997,0.067,0.6,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35241195.0,9497.0,687.421,0.185,18395.0,0.359,0.085,11.8,tests performed,85152277.0,42365365.0,36081319.0,12719794.0,18933.0,51229.0,166.1,82.64,70.38,24.81,999.0,4731.0,0.009000000000000001,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
726,Iceland,2022-06-16,41088,1371901.0,445.0,3719.986,684.0,1.855,,ISL,Europe,191079.0,436.0,251.429,153.0,0.0,0.0,518121.326,1182.238,681.763,414.86800000000005,0.0,0.0,1.54,1.0,2.7119999999999997,30.0,81.347,21.0,2.06,9.0,24.404,1371901.0,445.0,3719.986,1.207,684.0,1.855,0.2219,4.5,tests performed,805469.0,309770.0,290193.0,250542.0,1925.0,61.0,218.41,84.0,78.69,67.94,165.0,10.0,0.003,11.11,368792.0,3.404,37.3,14.431,9.207,46482.958,0.2,117.992,5.31,14.3,15.2,84.169,2.91,82.99,0.9490000000000001,213.9,4.1,13.64,580.0017353999999
727,Luxembourg,2022-06-16,55746,4292094.0,1707.0,6761.184,1564.0,2.464,0.336,LUX,Europe,254173.0,855.0,328.57099999999997,1084.0,0.0,0.0,400389.72,1346.851,517.587,1707.5870000000002,0.0,0.0,1.42,2.0,3.1510000000000002,15.0,23.629,10.0,5.282,1.0,1.575,4292094.0,1707.0,6761.184,2.6889999999999996,1564.0,2.464,0.336,3.0,tests performed,1301493.0,481205.0,37870.0,388030.0,341.0,215.0,205.02,75.8,5.97,61.12,339.0,13.0,0.002,19.44,634814.0,231.447,39.7,14.312000000000001,9.842,94277.965,0.2,128.275,4.42,20.9,26.0,1.188,4.51,82.25,0.9159999999999999,-48.9,-0.46,7.27,-77.03043726
728,Ecuador,2022-06-16,26934,2862908.0,4874.0,160.042,3724.0,0.20800000000000002,0.267,ECU,South America,892176.0,0.0,671.143,35662.0,0.0,1.429,49874.349,0.0,37.518,1993.5739999999998,0.0,0.08,0.99,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2862908.0,4874.0,160.042,0.272,3724.0,0.20800000000000002,0.267,3.7,people tested,35661833.0,15181060.0,14002286.0,7041978.0,24134.0,24319.0,199.36,84.87,78.28,39.37,1359.0,932.0,0.005,75.0,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
729,Mali,2022-06-16,59087,704711.0,,33.79,405.0,0.019,0.0053,MLI,Africa,31135.0,1.0,2.1430000000000002,736.0,0.0,0.14300000000000002,1492.876,0.048,0.10300000000000001,35.29,0.0,0.006999999999999999,0.83,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,704711.0,605.0,33.79,0.028999999999999998,405.0,0.019,0.0053,189.0,tests performed,2308245.0,1695963.0,1245359.0,161938.0,1683.0,7053.0,11.07,8.13,5.97,29.79,338.0,6112.0,0.028999999999999998,40.74,20855724.0,15.196,16.4,2.519,1.486,2014.306,0.1,268.024,2.42,1.6,23.0,52.232,0.1,59.31,0.434,160.6,14.41,3.78,295.42695269999996
730,Guinea-Bissau,2022-06-16,38046,141581.0,,70.24600000000001,173.0,0.086,0.0083,GNB,Africa,8307.0,0.0,1.429,171.0,0.0,0.0,4121.5779999999995,0.0,0.7090000000000001,84.84299999999999,0.0,0.0,0.33,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,141581.0,390.0,70.24600000000001,0.19399999999999998,173.0,0.086,0.0083,121.1,tests performed,562717.0,529346.0,341781.0,81.0,1658.0,718.0,27.92,26.26,16.96,0.0,356.0,18.0,0.001,49.07,2015490.0,66.191,19.4,3.002,1.565,1548.675,67.1,382.474,2.42,35.3,52.0,6.403,0.3,58.32,0.48,43113.3,25.35,10.04,2362.38969
731,Guinea,2022-06-16,37943,701242.0,,51.95399999999999,706.0,0.052000000000000005,0.0,GIN,Africa,36817.0,0.0,0.0,442.0,0.0,0.0,2727.743,0.0,0.0,32.747,0.0,0.0,0.01,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,701242.0,10381.0,51.95399999999999,0.569,706.0,0.052000000000000005,0.0,72.1,tests performed,6127699.0,4477740.0,2511039.0,39278.0,522.0,8187.0,45.4,33.18,18.6,61.97,607.0,2120.0,0.016,49.07,13497237.0,51.755,19.0,3.135,1.733,1998.9260000000002,35.3,336.717,2.42,35.3,52.0,17.45,0.3,61.6,0.47700000000000004,43113.3,25.35,10.04,2362.38969
732,Slovakia,2022-06-16,87212,51226127.0,2504.0,9400.549,2196.0,0.40299999999999997,0.091,SVK,Europe,2545651.0,242.0,199.429,20122.0,3.0,1.857,467154.5,44.41,36.597,3692.605,0.551,0.341,1.11,8.0,1.4680000000000002,147.0,26.976,21.0,3.8510000000000004,976.0,178.96400000000003,51226127.0,2504.0,9400.549,0.46,2196.0,0.40299999999999997,0.091,11.0,tests performed,7074772.0,2822238.0,2768338.0,1652520.0,2675.0,106.0,129.83,51.79,50.8,30.33,19.0,14.0,0.0,11.11,5449270.0,113.12799999999999,41.2,15.07,9.167,30155.152000000002,0.7,287.959,7.29,23.1,37.7,19.275,5.82,77.54,0.86,26567.1,20.98,1.28,4875.350276
733,Kenya,2022-06-16,50118,3706945.0,,67.417,2819.0,0.051,0.1065,KEN,Africa,328319.0,427.0,300.286,5651.0,0.0,0.0,5970.9890000000005,7.766,5.461,102.772,0.0,0.0,1.55,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3706945.0,2868.0,67.417,0.052000000000000005,2819.0,0.051,0.1065,9.4,tests performed,18367309.0,12576597.0,9223230.0,335015.0,13702.0,12048.0,33.4,22.87,16.77,0.61,219.0,4649.0,0.008,37.04,54985702.0,87.324,20.0,2.6860000000000004,1.528,2993.028,36.8,218.637,2.92,1.2,20.4,24.651,1.4,66.7,0.601,83124.6,26.77,-14.32,4376.140237
734,Spain,2022-06-16,91407,93132225.0,43872.0,1992.3370000000002,46460.0,0.9940000000000001,0.307,ESP,Europe,12515127.0,0.0,11227.0,107239.0,0.0,46.428999999999995,267730.67699999997,0.0,240.174,2294.117,0.0,0.993,1.32,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,93132225.0,43872.0,1992.3370000000002,0.9390000000000001,46460.0,0.9940000000000001,0.307,3.3,tests performed,94987684.0,41249657.0,40539246.0,25272972.0,47657.0,12282.0,203.2,88.24,86.72,54.07,263.0,734.0,0.002,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
735,Sweden,2022-06-16,93664,18400334.0,2417.0,1811.0279999999998,2322.0,0.22899999999999998,0.1183,SWE,Europe,2512853.0,1923.0,274.714,19075.0,26.0,3.714,247324.181,189.269,27.038,1877.431,2.559,0.366,0.49,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18400334.0,2417.0,1811.0279999999998,0.23800000000000002,2322.0,0.22899999999999998,0.1183,8.5,tests performed,22631019.0,7837623.0,7649569.0,5426959.0,398.0,6808.0,222.74,77.14,75.29,53.41,670.0,142.0,0.001,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
736,Barbados,2022-06-16,7914,,,,536.0,1.8630000000000002,0.1903,BRB,North America,82643.0,98.0,102.0,471.0,0.0,0.5710000000000001,287246.097,340.62300000000005,354.526,1637.076,0.0,1.986,0.88,50.0,5.529,874.0,96.649,,,,,695574.0,734.0,2417.639,2.551,536.0,1.8630000000000002,0.1903,5.3,tests performed,315725.0,162464.0,153199.0,29645608.0,2.0,23.0,109.74,56.47,53.25,17.83,80.0,0.0,0.0,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
737,Norway,2022-06-16,72800,11146224.0,1863.0,2039.3310000000001,1597.0,0.292,0.295,NOR,Europe,1438813.0,569.0,385.0,3250.0,0.0,5.7139999999999995,263247.469,104.105,70.44,594.625,0.0,1.045,1.31,41.0,2.387,467.0,85.443,7.0,1.298,146.0,26.709,11146224.0,1863.0,2039.3310000000001,0.341,1597.0,0.292,0.295,3.4,people tested,11391613.0,4340852.0,4044688.0,3006073.0,2870.0,1290.0,208.42,79.42,74.0,55.0,236.0,90.0,0.002,11.11,5465629.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
738,Chile,2022-06-16,17924,39387912.0,87346.0,2050.134,70019.0,3.6439999999999997,0.1504,CHL,South America,3857643.0,12975.0,10528.286,58171.0,36.0,19.285999999999998,200789.62699999998,675.346,547.995,3027.79,1.874,1.004,1.09,165.0,8.588,3505.0,92.072,89.0,4.632,865.0,45.023,39387912.0,87346.0,2050.134,4.546,70019.0,3.6439999999999997,0.1504,6.7,tests performed,58599156.0,17989911.0,17560536.0,23623426.0,96915.0,88722.0,305.01,93.64,91.4,122.96,4618.0,1364.0,0.006999999999999999,27.31,19212362.0,24.281999999999996,35.4,11.087,6.938,22767.037,1.3,127.993,8.46,34.2,41.5,5.818,2.11,80.18,0.851,51537.3,19.01,15.69,2682.507232
739,Vietnam,2022-06-16,105095,,,,415.0,0.004,,VNM,Asia,10734925.0,774.0,886.429,43083.0,0.0,0.28600000000000003,109351.666,7.8839999999999995,9.03,438.866,0.0,0.003,0.86,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85819388.0,56715.0,874.202,0.578,415.0,0.004,0.9523,1.1,people tested,224919933.0,85334927.0,79650792.0,59934214.0,344648.0,264266.0,229.12,86.93,81.14,61.05,2692.0,58954.0,0.06,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
740,Bermuda,2022-06-16,9975,36935.0,8589.0,594.8430000000001,1074.0,17.297,0.0444,BMU,North America,15762.0,334.0,47.714,138.0,0.0,0.0,253849.12699999998,5379.115,768.445,2222.509,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,36935.0,8589.0,594.8430000000001,138.327,1074.0,17.297,0.0444,22.5,samples tested,131612.0,48554.0,47657.0,35401.0,5470.0,6.0,211.96,78.2,76.75,57.01,97.0,5.0,0.008,22.22,62092.0,1308.82,18.8,3.2439999999999998,1.942,50669.315,49.6,139.547,13.0,0.6,12.3,11.035,0.5,82.59,0.545,15.4,2.8,-1.1,248.0190685
741,Denmark,2022-06-16,25107,64606452.0,6792.0,11113.555,6155.0,1.0590000000000002,0.1607,DNK,Europe,3149405.0,1222.0,988.857,6421.0,2.0,3.714,541758.3670000001,210.208,170.102,1104.536,0.344,0.639,1.41,6.0,1.032,229.0,39.391999999999996,10.0,0.932,277.0,47.648999999999994,64606452.0,6792.0,11113.555,1.168,6155.0,1.0590000000000002,0.1607,6.2,tests performed,13217758.0,4829492.0,4792564.0,3642492.0,667.0,692.0,227.37,83.08,82.44,62.66,119.0,40.0,0.001,11.11,5813302.0,136.52,42.3,19.677,12.325,46682.515,0.2,114.76700000000001,6.41,19.3,18.8,4.4719999999999995,2.5,80.9,0.94,1780.7,1.29,0.54,306.3147244
742,Bulgaria,2022-06-16,14421,,,,3060.0,0.444,0.0521,BGR,Europe,1167706.0,240.0,159.571,37219.0,9.0,3.571,169314.835,34.799,23.138,5396.674,1.305,0.518,1.16,28.0,4.06,249.0,36.104,,,760.0,65.335,10058480.0,4881.0,1458.4579999999999,0.708,3060.0,0.444,0.0521,19.2,tests performed,4404422.0,2090864.0,2060841.0,761814.0,507.0,303.0,63.86,30.32,29.88,11.05,44.0,58.0,0.001,11.11,6896655.0,65.18,44.7,20.801,13.272,18563.307,1.5,424.68800000000005,5.81,30.1,44.4,97.164,7.454,75.05,0.816,66889.5,26.21,-5.49,9698.83226
743,Mozambique,2022-06-16,64757,1336051.0,,41.54,561.0,0.017,0.16399999999999998,MOZ,Africa,226877.0,128.0,92.0,2209.0,1.0,0.429,7053.965,3.98,2.86,68.681,0.031,0.013000000000000001,1.35,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1336051.0,939.0,41.54,0.028999999999999998,561.0,0.017,0.16399999999999998,6.1,tests performed,31616078.0,14978771.0,14098645.0,353032.0,295812.0,0.0,98.3,46.57,43.83,1.1,0.0,0.0,0.0,28.7,32163045.0,37.728,17.7,3.158,1.87,1136.103,62.9,329.94199999999995,3.3,5.1,29.1,12.227,0.7,60.85,0.456,2633.7,21.49,55.05,4193.449258
744,Malta,2022-06-16,59790,1942098.0,1318.0,3763.027,1173.0,2.273,0.1676,MLT,Europe,97018.0,255.0,196.571,728.0,0.0,0.7140000000000001,187982.949,494.09,380.879,1410.579,0.0,1.3840000000000001,1.56,3.0,5.813,77.0,149.196,1.0,1.9380000000000002,36.0,69.75399999999999,1942098.0,1318.0,3763.027,2.5540000000000003,1173.0,2.273,0.1676,6.0,tests performed,1310362.0,476665.0,469558.0,398502.0,626.0,579.0,253.9,92.36,90.98,77.21,1122.0,14.0,0.003,13.89,516100.0,1454.037,42.4,19.426,11.324000000000002,36513.323,0.2,168.71099999999998,8.83,20.9,30.2,52.232,4.485,82.53,0.895,539.8,5.7,-1.02,1045.921333
745,Kosovo,2022-06-16,50511,,,,215.0,0.121,0.0465,OWID_KOS,Europe,228482.0,17.0,10.0,3139.0,0.0,0.0,128208.337,9.539,5.611000000000001,1761.39,0.0,0.0,1.65,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1844866.0,1719.0,1035.212,0.965,215.0,0.121,0.0465,21.5,tests performed,1830106.0,903523.0,823526.0,103057.0,26.0,49.0,102.69,50.7,46.21,5.78,27.0,12.0,0.001,37.04,1782115.0,168.155,23.2,3.895,2.21,9795.834,0.6,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,5869.8,25.36,-11.76,3293.726836
746,Switzerland,2022-06-16,94422,21245630.0,10020.0,2437.685,8785.0,1.008,0.36200000000000004,CHE,Europe,3701895.0,0.0,2373.429,13817.0,0.0,0.429,424748.729,0.0,272.323,1585.338,0.0,0.049,1.17,18.0,2.065,444.0,50.943999999999996,241.0,5.156000000000001,208.0,23.866,21245630.0,10020.0,2437.685,1.15,8785.0,1.008,0.36200000000000004,2.8,tests performed,15744219.0,6087065.0,6001418.0,3771058.0,1168.0,1407.0,180.65,69.84,68.86,43.27,161.0,94.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
747,Greece,2022-06-16,36178,,,,76542.0,7.381,0.0696,GRC,Europe,3525056.0,7158.0,5325.857,30057.0,8.0,11.571,339903.77,690.211,513.5459999999999,2898.248,0.7709999999999999,1.1159999999999999,1.35,1000.0,11.919,16108.0,238.91299999999998,15.0,1.405,655.0,63.117,83816775.0,73217.0,8082.0380000000005,7.06,76542.0,7.381,0.0696,14.4,samples tested,21052128.0,7917497.0,7627196.0,6083447.0,2472.0,1530.0,203.0,76.34,73.55,58.66,148.0,93.0,0.001,24.07,10370747.0,83.479,45.3,20.396,14.524000000000001,24574.382,1.5,175.695,4.55,35.3,52.0,41.047,4.21,82.24,0.888,31443.0,10.58,12.88,3031.8934600000002
748,Cote d'Ivoire,2022-06-16,21027,1532591.0,,56.65,477.0,0.018000000000000002,0.0749,CIV,Africa,82614.0,34.0,35.714,800.0,0.0,0.14300000000000002,3053.712,1.2570000000000001,1.32,29.570999999999998,0.0,0.005,1.51,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,1532591.0,635.0,56.65,0.023,477.0,0.018000000000000002,0.0749,13.4,tests performed,12753769.0,8026397.0,5540193.0,87290.0,20396.0,0.0,47.14,29.67,20.48,0.32,0.0,5281.0,0.02,15.74,27053629.0,76.399,18.7,2.9330000000000003,1.5819999999999999,3601.006,28.2,303.74,2.42,6.4,17.4,19.351,1.13,57.78,0.5379999999999999,5946.8,11.58,-1.44,1157.17818
749,Gabon,2022-06-16,32842,,,,110.0,0.048,0.0,GAB,Africa,47711.0,0.0,0.0,304.0,0.0,0.0,20936.63,0.0,0.0,133.40200000000002,0.0,0.0,0.12,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1598993.0,2256.0,701.673,0.99,110.0,0.048,0.0,22.4,tests performed,566886.0,308489.0,256088.0,2309.0,1486.0,32.0,24.88,13.54,11.24,0.1,14.0,18.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
750,Trinidad and Tobago,2022-06-16,98006,,,,899.0,0.6409999999999999,,TTO,North America,165468.0,324.0,226.143,3968.0,0.0,2.286,117907.272,230.872,161.142,2827.472,0.0,1.629,0.77,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,763232.0,1809.0,543.855,1.2890000000000001,899.0,0.6409999999999999,0.23399999999999999,4.3,people tested,1568972.0,750711.0,713281.0,162292.0,366.0,300.0,111.8,53.49,50.83,11.56,214.0,55.0,0.004,13.89,1403374.0,266.88599999999997,36.2,10.014,5.819,28763.071,49.2,228.467,10.97,11.8,44.4,89.443,3.0,73.51,0.7959999999999999,97687.9,8.02,19.55,1396.5221060000001
751,Serbia,2022-06-16,86121,9815229.0,6547.0,1428.3870000000002,6147.0,0.895,0.044000000000000004,SRB,Europe,2021601.0,337.0,270.714,16105.0,0.0,1.286,294198.817,49.043,39.396,2343.723,0.0,0.187,1.18,9.0,1.31,81.0,11.788,9.0,1.669,7292.0,49.975,9815229.0,6547.0,1428.3870000000002,0.953,6147.0,0.895,0.044000000000000004,22.7,people tested,8533114.0,3353655.0,3277747.0,1901712.0,221.0,184.0,124.18,48.8,47.7,27.68,27.0,46.0,0.001,11.11,6871547.0,80.291,41.2,17.366,1.796,14048.881000000001,38.0,439.415,10.08,37.7,40.2,97.719,5.609,76.0,0.8059999999999999,58394.0,24.45,1.98,8497.940857
752,Poland,2022-06-16,78366,36962382.0,,977.918,3366.0,0.08900000000000001,0.0591,POL,Europe,6010871.0,228.0,198.857,116390.0,3.0,3.1430000000000002,159030.37300000002,6.032,5.261,3079.345,0.079,0.083,0.9,41.0,2.387,315.0,8.334,9.0,1.669,234.0,42.846000000000004,36962382.0,21192.0,977.918,0.191,3366.0,0.08900000000000001,0.0591,16.9,tests performed,54561412.0,22730288.0,22507978.0,12134586.0,3478.0,2341.0,144.35,60.14,59.55,32.1,62.0,381.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
753,Saudi Arabia,2022-06-16,84475,43074394.0,28615.0,1218.833,31403.0,0.889,0.0315,SAU,Asia,782131.0,963.0,989.429,9180.0,1.0,2.1430000000000002,22131.181,27.249000000000002,27.997,259.757,0.027999999999999997,0.061,1.15,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,43074394.0,28615.0,1218.833,0.81,31403.0,0.889,0.0315,31.7,tests performed,60953969.0,25960748.0,24199236.0,10793985.0,113359.0,47889.0,172.48,73.46,68.47,30.54,1355.0,6276.0,0.018000000000000002,11.11,35340680.0,15.322000000000001,31.9,3.295,1.845,49045.41099999999,32.3,259.538,17.72,1.8,25.4,41.34,2.7,75.13,0.8540000000000001,133.0,21.63,-19.49,3910.614525
754,Mauritania,2022-06-16,60989,993570.0,,208.07299999999998,676.0,0.142,0.0125,MRT,Africa,59283.0,8.0,8.429,982.0,0.0,0.0,12415.002,1.675,1.765,205.65,0.0,0.0,1.02,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,993570.0,1362.0,208.07299999999998,0.285,676.0,0.142,0.0125,80.2,tests performed,2845889.0,1924472.0,1332013.0,215488.0,3777.0,322.0,59.6,40.3,27.89,4.51,67.0,100.0,0.002,43.52,4775110.0,4.289,20.3,3.138,1.7919999999999998,3597.633,6.0,232.347,2.42,20.9,30.2,15.95,2.7,64.92,0.546,539.8,5.7,-1.02,1045.921333
755,Estonia,2022-06-16,29003,3420254.0,1061.0,2580.958,1040.0,0.785,0.1152,EST,Europe,578494.0,0.0,119.85700000000001,2586.0,0.0,1.714,436537.30600000004,0.0,90.445,1951.421,0.0,1.294,1.16,3.0,2.2640000000000002,64.0,48.295,1.0,0.752,62.0,46.614,3420254.0,1061.0,2580.958,0.8009999999999999,1040.0,0.785,0.1152,8.7,tests performed,1992724.0,862796.0,847394.0,475539.0,183.0,159.0,150.37,65.11,63.95,35.88,120.0,49.0,0.004,11.11,1325188.0,31.033,42.7,19.452,13.491,29481.252,0.5,255.56900000000002,4.02,24.5,39.3,24.64,4.69,78.74,0.892,3805.5,9.78,12.82,2871.66802
756,Jamaica,2022-06-16,47208,,,,1699.0,0.5710000000000001,0.132,JAM,North America,141026.0,152.0,224.28599999999997,3093.0,2.0,2.0,47428.217000000004,51.119,75.429,1040.202,0.6729999999999999,0.6729999999999999,0.87,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1118817.0,2223.0,376.267,0.748,1699.0,0.5710000000000001,0.132,7.6,samples tested,1451499.0,809119.0,705188.0,41688.0,933.0,601.0,48.82,27.21,23.72,1.4,202.0,326.0,0.011000000000000001,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
757,Lithuania,2022-06-16,54899,8716939.0,839.0,3240.664,818.0,0.304,0.19,LTU,Europe,1157492.0,244.0,180.429,9156.0,0.0,0.5710000000000001,430316.5,90.711,67.077,3403.8920000000003,0.0,0.212,1.19,1.0,0.536,52.0,19.332,10.0,5.282,1.0,25.605,8716939.0,839.0,3240.664,0.312,818.0,0.304,0.19,5.3,tests performed,4487754.0,1952167.0,1876397.0,933728.0,160.0,111.0,166.84,72.57,69.76,34.71,41.0,20.0,0.001,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
758,Australia,2022-06-16,4637,72979213.0,78719.0,2829.9440000000004,61195.0,2.373,0.158,AUS,Oceania,7753800.0,29765.0,26024.429,9269.0,51.0,44.286,300672.202,1154.2089999999998,1009.16,359.42800000000005,1.9780000000000002,1.7169999999999999,0.97,93.0,3.6060000000000003,2817.0,109.236,,,,,72979213.0,78719.0,2829.9440000000004,3.053,61195.0,2.373,0.158,6.3,tests performed,57792674.0,22336042.0,21643777.0,13812855.0,7673.0,7643.0,224.1,86.61,83.93,53.56,296.0,782.0,0.003,13.89,25788217.0,3.202,37.9,15.504000000000001,10.129,44648.71,0.5,107.791,5.07,13.0,16.5,94.04299999999999,3.84,83.44,0.9440000000000001,4853.0,1.35,8.37,188.1867211
759,Panama,2022-06-16,75263,,,,10377.0,2.3680000000000003,0.1905,PAN,North America,898882.0,1958.0,1976.5710000000001,8316.0,2.0,4.0,205150.056,446.87,451.10900000000004,1897.944,0.456,0.9129999999999999,0.84,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,6436730.0,7609.0,1469.0420000000001,1.7369999999999999,10377.0,2.3680000000000003,0.1905,5.3,tests performed,8320768.0,3481249.0,3110890.0,1728629.0,5925.0,5632.0,189.9,79.45,71.0,39.45,1285.0,299.0,0.006999999999999999,28.7,4381583.0,55.133,29.7,7.917999999999999,5.03,22267.037,2.2,128.346,8.33,2.4,9.9,59.607,2.3,78.51,0.815,7503.4,19.42,-1.22,1712.4861039999998
760,Japan,2022-06-16,48076,52932555.0,92091.0,419.93,214554.0,1.702,0.0663,JPN,Asia,9094948.0,15486.0,14227.0,30981.0,20.0,19.714000000000002,72153.039,122.855,112.867,245.782,0.159,0.156,0.86,302.0,2.396,5237.0,41.547,259.0,4.29,2964.0,49.099,52932555.0,92091.0,419.93,0.731,214554.0,1.702,0.0663,15.1,people tested,283325419.0,103674505.0,102246610.0,77404304.0,72062.0,121557.0,224.77,82.25,81.12,61.41,964.0,5223.0,0.004,39.81,126050796.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
761,Mexico,2022-06-16,61999,15556322.0,15884.0,119.42299999999999,13454.0,0.10300000000000001,0.475,MEX,North America,5852596.0,9406.0,7132.0,325340.0,69.0,40.714,44929.343,72.208,54.751000000000005,2497.578,0.53,0.313,1.43,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15556322.0,15884.0,119.42299999999999,0.122,13454.0,0.10300000000000001,0.475,2.1,people tested,208765211.0,88207004.0,79947470.0,53077125.0,157958.0,35194.0,160.27,67.71,61.37,40.75,270.0,14909.0,0.011000000000000001,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
762,Taiwan,2022-06-16,95397,12625509.0,72038.0,529.26,78287.0,3.282,0.8062,TWN,Asia,3135565.0,63133.0,63111.143,4714.0,168.0,161.429,131442.63,2646.53,2645.614,197.61,7.042999999999999,6.767,0.91,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,12625509.0,72038.0,529.26,3.02,78287.0,3.282,0.8062,1.2,people tested,56596591.0,21136609.0,19144697.0,16315285.0,94826.0,77610.0,237.25,88.6,80.25,68.39,3253.0,8668.0,0.036000000000000004,26.85,23855008.0,214.243,42.2,18.436,8.353,57410.166,0.5,103.95700000000001,5.59,22.6,28.9,70.598,1.5,80.46,0.5670000000000001,-1625.5,-0.37,15.75,-68.14082812
763,United States Virgin Islands,2022-06-16,104051,115001.0,92.0,1103.4660000000001,48.0,0.461,0.209,VIR,North America,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115001.0,92.0,1103.4660000000001,0.883,48.0,0.461,0.209,4.8,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
764,Saint Vincent and the Grenadines,2022-06-16,83563,,,,40.0,0.359,0.4607,VCT,North America,8936.0,7.0,18.429000000000002,109.0,0.0,0.14300000000000002,80309.88,62.911,165.622,979.6080000000001,0.0,1.284,1.07,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108037.0,59.0,970.953,0.53,40.0,0.359,0.4607,2.2,tests performed,71280.0,36508.0,30755.0,3845.0,20.0,8.0,64.06,32.81,27.64,3.46,72.0,6.0,0.005,66.67,111269.0,281.78700000000003,31.8,7.724,4.832,10727.146,56.0,252.675,11.62,4.7,21.0,87.20200000000001,2.6,72.53,0.738,12.2,3.33,8.11,227.8414821
765,Bahamas,2022-06-16,6147,,,,194.0,0.489,0.2599,BHS,North America,35516.0,52.0,50.428999999999995,815.0,0.0,0.5710000000000001,89480.341,131.011,127.052,2053.342,0.0,1.44,0.98,50.0,5.529,874.0,96.649,,,,,239960.0,567.0,604.564,1.429,194.0,0.489,0.2599,3.8,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
766,Bolivia,2022-06-16,11513,4433389.0,5032.0,374.665,6496.0,0.5489999999999999,0.0576,BOL,South America,914252.0,378.0,373.85699999999997,21951.0,0.0,0.14300000000000002,77263.327,31.945,31.595,1855.076,0.0,0.012,1.42,23.0,1.944,163.0,13.775,,,760.0,65.335,4433389.0,5032.0,374.665,0.425,6496.0,0.5489999999999999,0.0576,17.4,tests performed,13849676.0,7222799.0,5995332.0,1630197.0,11892.0,9131.0,117.04,61.04,50.67,13.78,772.0,1356.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
767,India,2022-06-16,41918,856390449.0,519419.0,614.601,361030.0,0.259,0.0259,IND,Asia,43270577.0,12847.0,9353.0,524817.0,14.0,10.0,31053.751,9.22,6.712000000000001,376.642,0.01,0.006999999999999999,1.51,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,856390449.0,519419.0,614.601,0.373,361030.0,0.259,0.0259,38.6,samples tested,1955954232.0,1014178043.0,902972911.0,38803278.0,1668893.0,1532870.0,140.37,72.78,64.8,2.78,1100.0,187420.0,0.013000000000000001,37.04,1393409033.0,450.41900000000004,28.2,5.989,3.4139999999999997,6426.674,21.2,282.28,10.39,1.9,20.6,59.55,0.53,69.66,0.645,213.9,4.1,13.64,580.0017353999999
768,Libya,2022-06-16,53482,,1351.0,,,,,LBY,Africa,502076.0,0.0,5.143,6430.0,0.0,0.0,72152.512,0.0,0.7390000000000001,924.045,0.0,0.0,0.93,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1351.0,26.991999999999997,0.19399999999999998,3669.0,0.527,0.2478,4.0,samples tested,3560043.0,2262210.0,1179302.0,118531.0,602.0,3138.0,51.16,32.51,16.95,1.7,451.0,1133.0,0.016,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
769,Mauritius,2022-06-16,61097,,,,12.0,0.009000000000000001,,MUS,Africa,227442.0,0.0,84.429,1000.0,0.0,0.5710000000000001,178606.093,0.0,66.3,785.2819999999999,0.0,0.449,0.23,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282514.0,1362.0,1007.135,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2551638.0,977183.0,944658.0,620077.0,35153.0,215.0,200.38,76.74,74.18,48.69,169.0,30.0,0.002,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
770,Qatar,2022-06-16,80480,7488674.0,14498.0,2555.404,14501.0,4.948,,QAT,Asia,374149.0,458.0,414.57099999999997,678.0,1.0,0.14300000000000002,127673.071,156.286,141.467,231.358,0.341,0.049,1.33,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,7488674.0,14498.0,2555.404,4.947,14501.0,4.948,0.23800000000000002,4.2,tests performed,6933713.0,2639416.0,2639416.0,1654881.0,4802.0,3314.0,236.6,90.07,90.07,56.47,1131.0,538.0,0.018000000000000002,40.74,2930524.0,227.322,31.9,1.307,0.617,116935.6,0.5,176.69,16.52,0.8,26.9,78.46300000000001,1.2,80.23,0.848,1147.4,22.0,20.31,391.5340738
771,France,2022-06-16,32501,277846936.0,206592.0,4121.013,196164.0,2.909,0.215,FRA,Europe,30089270.0,53081.0,40237.857,149065.0,49.0,40.857,446282.667,787.295,596.806,2210.925,0.727,0.606,1.12,846.0,12.548,13914.0,206.372,393.0,5.829,3423.0,50.77,277846936.0,206592.0,4121.013,3.0639999999999996,196164.0,2.909,0.215,4.7,people tested,145224938.0,54447979.0,52884793.0,38972391.0,51621.0,38442.0,215.4,80.76,78.44,57.8,570.0,1069.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
772,Puerto Rico,2022-06-16,80027,3015616.0,3169.0,1066.25,2923.0,1.034,,PRI,North America,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3015616.0,3169.0,1066.25,1.12,2923.0,1.034,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
773,Sao Tome and Principe,2022-06-16,83635,,,,77.0,0.345,0.013000000000000001,STP,Africa,6010.0,0.0,1.0,73.0,0.0,0.0,26906.752999999997,0.0,4.477,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,3927.0,473.0,17.581,2.1180000000000003,77.0,0.345,0.013000000000000001,77.0,tests performed,214560.0,123088.0,91836.0,17869.0,9.0,204.0,96.06,55.11,41.11,8.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
774,Ethiopia,2022-06-16,29937,4993374.0,,42.361000000000004,4189.0,0.036000000000000004,0.1714,ETH,Africa,482032.0,807.0,718.0,7518.0,0.0,0.28600000000000003,4089.3059999999996,6.846,6.091,63.778999999999996,0.0,0.002,1.24,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,4993374.0,4118.0,42.361000000000004,0.035,4189.0,0.036000000000000004,0.1714,5.8,tests performed,29419678.0,24770491.0,21292024.0,346411.0,159930.0,43258.0,24.96,21.01,18.06,0.29,367.0,329306.0,0.27899999999999997,30.56,117876226.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
775,Cameroon,2022-06-16,15134,,,,608.0,0.022000000000000002,0.0,CMR,Africa,119947.0,0.0,0.0,1930.0,0.0,0.0,4405.8859999999995,0.0,0.0,70.893,0.0,0.0,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2717815.0,3334.0,99.831,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1837626.0,1558744.0,1215532.0,52011.0,9890.0,92.0,6.75,5.73,4.46,0.19,3.0,76.0,0.0,30.56,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
776,Italy,2022-06-16,46387,223718846.0,194676.0,3705.95,168335.0,2.7889999999999997,0.1563,ITA,Europe,17773764.0,37068.0,26309.857000000004,167617.0,64.0,52.0,294426.182,614.039,435.82800000000003,2776.611,1.06,0.861,1.36,192.0,3.181,4495.0,74.461,145.0,2.4019999999999997,2540.0,42.076,223718846.0,194676.0,3705.95,3.225,168335.0,2.7889999999999997,0.1563,6.4,tests performed,138061862.0,50797509.0,47942695.0,40829474.0,19061.0,15854.0,228.7,84.15,79.42,67.63,263.0,467.0,0.001,22.22,60367471.0,205.859,47.9,23.021,16.24,35220.084,2.0,113.15100000000001,4.78,19.8,27.8,94.57600000000001,3.18,83.51,0.892,180753.4,11.84,-8.54,2994.218525
777,Saint Lucia,2022-06-16,83298,,,,176.0,0.9540000000000001,0.3149,LCA,North America,26704.0,16.0,55.428999999999995,376.0,0.0,0.7140000000000001,144814.833,86.76700000000001,300.587,2039.0339999999999,0.0,3.8739999999999997,0.84,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,207725.0,117.0,1126.485,0.634,176.0,0.9540000000000001,0.3149,3.2,tests performed,121134.0,59464.0,54114.0,7556.0,71.0,28.0,65.69,32.25,29.35,4.1,152.0,11.0,0.006,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
778,Eswatini,2022-06-16,29105,547721.0,,467.19199999999995,240.0,0.205,0.094,SWZ,Africa,72980.0,23.0,22.570999999999998,1412.0,1.0,0.28600000000000003,62250.025,19.618,19.253,1204.399,0.853,0.244,0.59,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,547721.0,333.0,467.19199999999995,0.284,240.0,0.205,0.094,10.6,tests performed,535393.0,387468.0,336066.0,66331.0,7504.0,0.0,45.67,33.05,28.67,5.66,0.0,0.0,0.0,23.15,1172369.0,79.492,21.5,3.1630000000000003,1.845,7738.975,0.5,333.436,3.94,1.7,16.5,24.096999999999998,2.1,60.19,0.611,3805.5,9.78,12.82,2871.66802
779,Lesotho,2022-06-16,52642,458609.0,,212.41099999999997,173.0,0.08,0.0,LSO,Africa,33746.0,0.0,0.0,699.0,0.0,0.0,15629.899,0.0,0.0,323.751,0.0,0.0,0.27,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,458609.0,553.0,212.41099999999997,0.256,173.0,0.08,0.0,21.6,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
780,Azerbaijan,2022-06-16,5872,,,,2341.0,0.22899999999999998,0.0,AZE,Asia,792785.0,0.0,0.0,9713.0,0.0,0.0,77546.54400000001,0.0,0.0,950.081,0.0,0.0,0.56,50.0,5.529,874.0,96.649,,,,,6901005.0,6872.0,675.0239999999999,0.672,2341.0,0.22899999999999998,0.0,2379.0,tests performed,13728289.0,5348519.0,4849400.0,3284160.0,2123.0,1487.0,134.28,52.32,47.43,32.12,145.0,224.0,0.002,36.11,10223344.0,119.309,32.4,6.018,3.8710000000000004,15847.419,0.7,559.812,7.11,0.3,42.5,83.241,4.7,73.0,0.7559999999999999,43744.8,33.01,2.0,4278.913044
781,Finland,2022-06-16,31732,11025075.0,4583.0,1987.0870000000002,4115.0,0.742,0.304,FIN,Europe,1125342.0,10769.0,1538.4289999999999,4771.0,57.0,8.142999999999999,202824.22100000002,1940.934,277.276,859.8939999999999,10.273,1.4680000000000002,1.23,13.0,2.343,351.0,63.262,3.0,2.256,79.0,59.395,11025075.0,4583.0,1987.0870000000002,0.826,4115.0,0.742,0.304,3.3,tests performed,12116461.0,4515765.0,4331885.0,3268811.0,5922.0,5932.0,218.38,81.39,78.08,58.91,1069.0,128.0,0.002,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
782,Bangladesh,2022-06-16,7798,,,,1650.0,0.01,0.0972,BGD,Asia,1954994.0,357.0,160.429,29131.0,0.0,0.0,11755.58,2.147,0.965,175.168,0.0,0.0,2.83,50.0,5.529,874.0,96.649,,,,,13804340.0,5986.0,83.007,0.036000000000000004,1650.0,0.01,0.0972,10.3,tests performed,274455275.0,129173653.0,118438732.0,27107823.0,274839.0,444819.0,165.03,77.67,71.22,16.3,2675.0,10512.0,0.006,34.26,166303494.0,1265.036,27.5,5.098,3.262,3523.9840000000004,14.8,298.003,8.38,1.0,44.7,34.808,0.8,72.59,0.632,43744.8,33.01,2.0,4278.913044
783,Togo,2022-06-16,97457,,,,383.0,0.045,0.0201,TGO,Africa,37220.0,0.0,7.7139999999999995,273.0,0.0,0.0,4390.061,0.0,0.91,32.2,0.0,0.0,1.27,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,747055.0,877.0,88.11399999999999,0.10300000000000001,383.0,0.045,0.0201,49.6,tests performed,3290821.0,2092750.0,1557538.0,87104.0,7881.0,0.0,38.81,24.68,18.37,1.03,0.0,428.0,0.005,29.17,8478242.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,61.04,0.515,97687.9,8.02,19.55,1396.5221060000001
784,Equatorial Guinea,2022-06-16,28139,484554.0,,334.2,109.0,0.075,0.0157,GNQ,Africa,15945.0,0.0,1.714,183.0,0.0,0.0,10997.378,0.0,1.182,126.21600000000001,0.0,0.0,1.11,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,484554.0,501.0,334.2,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,479991.0,265505.0,206762.0,3862.0,639.0,326.0,33.11,18.31,14.26,0.27,225.0,150.0,0.01,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
785,Singapore,2022-06-16,86375,,24000.0,,24000.0,4.401,0.1378,SGP,Asia,1355801.0,3120.0,3306.429,1401.0,0.0,0.7140000000000001,248606.608,572.099,606.284,256.895,0.0,0.131,1.14,7.0,1.0190000000000001,118.0,17.172,3.0,0.55,435.0,79.764,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1378,7.3,samples tested,14193556.0,5017638.0,4989927.0,4185991.0,2493.0,2973.0,260.26,92.01,91.5,76.76,545.0,150.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
786,Chad,2022-06-16,17104,218102.0,,12.894,105.0,0.006,0.0027,TCD,Africa,7420.0,0.0,0.28600000000000003,193.0,0.0,0.0,438.664,0.0,0.017,11.41,0.0,0.0,0.33,220.0,5.779,3505.0,92.072,,,760.0,65.335,218102.0,2691.0,12.894,40.467,105.0,0.006,0.0027,367.1,tests performed,2355126.0,2216437.0,2091466.0,23536.0,12887.0,72.0,13.92,13.1,12.36,35.39,4.0,147.0,0.001,37.96,16914985.0,11.833,16.7,2.4859999999999998,1.446,1768.1529999999998,38.4,280.995,6.1,2.1,16.5,5.818,1.0,54.24,0.39799999999999996,188.6,6.81,13.94,335.6463149
787,Fiji,2022-06-16,30885,,,,982.0,1.088,,FJI,Oceania,65268.0,51.0,15.571,865.0,0.0,0.14300000000000002,72287.155,56.485,17.246,958.025,0.0,0.158,1.5,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,551345.0,567.0,610.639,0.628,982.0,1.088,0.6621,1.5,tests performed,1608898.0,706129.0,634685.0,134042.0,28295.0,54.0,178.19,78.21,70.29,14.85,60.0,23.0,0.003,57.41,902899.0,49.562,28.6,6.224,3.284,8702.975,1.4,412.82,14.49,10.2,34.8,7.96,2.3,67.44,0.743,-38.6,-3.8,10.79,-786.903961
788,Rwanda,2022-06-17,82833,5506180.0,3888.0,414.731,4554.0,0.34299999999999997,0.0068,RWA,Africa,130510.0,38.0,30.857,1459.0,0.0,0.0,9830.138,2.862,2.324,109.89299999999999,0.0,0.0,1.27,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5506180.0,3888.0,414.731,0.293,4554.0,0.34299999999999997,0.0068,147.6,samples tested,22214312.0,9061143.0,8527099.0,4626070.0,211071.0,7495.0,167.32,68.25,64.23,34.84,565.0,733.0,0.006,66.67,13276517.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,69.02,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
789,Puerto Rico,2022-06-17,80028,3018185.0,2569.0,1067.1580000000001,2982.0,1.054,,PRI,North America,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3018185.0,2569.0,1067.1580000000001,0.9079999999999999,2982.0,1.054,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
790,Central African Republic,2022-06-17,16947,,,,120.0,0.024,0.0,CAF,Africa,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,93621.0,2691.0,19.029,40.467,120.0,0.024,0.0,1.8,tests performed,1193681.0,1101130.0,1044746.0,23536.0,12887.0,1694.0,24.26,22.38,21.23,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
791,Singapore,2022-06-17,86376,,24000.0,,24000.0,4.401,0.1497,SGP,Asia,1360780.0,4979.0,3593.571,1402.0,1.0,0.857,249519.583,912.975,658.936,257.078,0.183,0.157,1.18,7.0,1.0190000000000001,118.0,17.172,5.0,0.917,450.0,82.514,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1497,6.7,samples tested,14196669.0,5017841.0,4990511.0,4188317.0,3113.0,2889.0,260.32,92.01,91.51,76.8,530.0,156.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
792,Cote d'Ivoire,2022-06-17,21028,,,,514.0,0.019,0.0739,CIV,Africa,82659.0,45.0,38.0,801.0,1.0,0.28600000000000003,3055.3759999999997,1.663,1.405,29.608,0.037000000000000005,0.011000000000000001,1.51,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,1532591.0,635.0,56.65,0.023,514.0,0.019,0.0739,13.5,tests performed,12753769.0,8026397.0,5540193.0,87290.0,20396.0,0.0,47.14,29.67,20.48,0.32,0.0,5281.0,0.02,15.74,27053629.0,76.399,18.7,2.9330000000000003,1.5819999999999999,3601.006,28.2,303.74,2.42,6.4,17.4,19.351,1.13,57.78,0.5379999999999999,5946.8,11.58,-1.44,1157.17818
793,Ghana,2022-06-17,35309,,,,670.0,0.021,0.3179,GHA,Africa,163332.0,0.0,213.0,1445.0,0.0,0.0,5147.212,0.0,6.712000000000001,45.537,0.0,0.0,0.99,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2458238.0,2208.0,77.468,0.07,670.0,0.021,0.3179,3.1,tests performed,16203630.0,9786631.0,6410470.0,570557.0,60270.0,106898.0,51.06,30.84,20.2,1.8,3369.0,26922.0,0.085,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
794,North Macedonia,2022-06-17,71378,,,,713.0,0.342,0.0683,MKD,Europe,312879.0,72.0,48.714,9322.0,2.0,0.857,150230.402,34.571,23.39,4476.004,0.96,0.41200000000000003,1.06,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2068585.0,1124.0,993.2410000000001,0.54,713.0,0.342,0.0683,14.6,tests performed,1843815.0,849038.0,836339.0,158438.0,3869.0,442.0,88.53,40.77,40.16,7.61,212.0,347.0,0.017,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
795,Finland,2022-06-17,31733,11029515.0,4440.0,1987.8870000000002,4120.0,0.743,0.306,FIN,Europe,1125342.0,0.0,1538.4289999999999,4771.0,0.0,8.142999999999999,202824.22100000002,0.0,277.276,859.8939999999999,0.0,1.4680000000000002,1.24,13.0,2.343,351.0,63.262,3.0,2.256,79.0,59.395,11029515.0,4440.0,1987.8870000000002,0.8,4120.0,0.743,0.306,3.3,tests performed,12116461.0,4515765.0,4331885.0,3268811.0,5922.0,5839.0,218.38,81.39,78.08,58.91,1052.0,127.0,0.002,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
796,Sao Tome and Principe,2022-06-17,83636,,,,88.0,0.39399999999999996,0.0114,STP,Africa,6010.0,0.0,1.0,73.0,0.0,0.0,26906.752999999997,0.0,4.477,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,3927.0,473.0,17.581,2.1180000000000003,88.0,0.39399999999999996,0.0114,88.0,tests performed,214560.0,123088.0,91836.0,17869.0,9.0,204.0,96.06,55.11,41.11,8.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
797,Gabon,2022-06-17,32843,,,,111.0,0.049,0.0399,GAB,Africa,47742.0,31.0,4.428999999999999,304.0,0.0,0.0,20950.234,13.603,1.943,133.40200000000002,0.0,0.0,0.12,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1598993.0,2256.0,701.673,0.99,111.0,0.049,0.0399,25.1,tests performed,566886.0,308489.0,256088.0,2309.0,1486.0,32.0,24.88,13.54,11.24,0.1,14.0,18.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
798,Vietnam,2022-06-17,105096,,,,483.0,0.005,,VNM,Asia,10736408.0,1483.0,961.0,43083.0,0.0,0.14300000000000002,109366.773,15.107000000000001,9.789,438.866,0.0,0.001,0.87,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85819388.0,56715.0,874.202,0.578,483.0,0.005,0.9523,1.1,people tested,225255875.0,85418330.0,79699783.0,60137762.0,335942.0,266733.0,229.46,87.01,81.19,61.26,2717.0,59684.0,0.061,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
799,Dominican Republic,2022-06-17,26105,,,,4740.0,0.433,0.1931,DOM,North America,595927.0,963.0,915.143,4382.0,0.0,0.28600000000000003,54404.10400000001,87.915,83.546,400.04699999999997,0.0,0.026000000000000002,1.38,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3414919.0,3731.0,311.759,0.341,4740.0,0.433,0.1931,5.2,samples tested,15729904.0,7230311.0,5991518.0,2367313.0,4222.0,3363.0,143.6,66.01,54.7,21.61,307.0,510.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
800,Palau,2022-06-17,73782,59305.0,,3263.178,173.0,9.519,0.0297,PLW,Oceania,5181.0,16.0,5.143,6.0,0.0,0.0,285077.583,880.3789999999999,282.97900000000004,330.142,0.0,0.0,0.88,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59305.0,31201.0,3263.178,0.139,173.0,9.519,0.0297,33.6,tests performed,273365003.0,137369525.0,127262916.0,26505821.0,943523.0,880651.0,121.39,61.0,56.51,11.77,3911.0,71679.0,0.032,77.78,18174.0,47.236999999999995,23.5,4.495,2.78,13240.405,4.0,423.031,15.89,7.7,22.7,59.607,4.8,73.7,0.826,4286.8,18.62,-6.95,820.6952745
801,United States,2022-06-17,103236,912521698.0,406474.0,2741.0040000000004,502550.0,1.51,0.138,USA,North America,86301345.0,139238.0,107081.0,1013507.0,299.0,308.286,259229.31,418.23900000000003,321.647,3044.341,0.898,0.9259999999999999,0.99,2997.0,9.002,26227.0,78.78,241.0,5.156000000000001,31304.0,94.03,912521698.0,406474.0,2741.0040000000004,1.2209999999999999,502550.0,1.51,0.138,7.2,tests performed,594431080.0,259550809.0,222059017.0,122419548.0,287979.0,230052.0,179.04,78.18,66.88,36.87,693.0,35164.0,0.011000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
802,Democratic Republic of Congo,2022-06-17,24236,,,,704.0,0.008,0.0,COD,Africa,89932.0,0.0,0.0,1345.0,0.0,0.0,973.5219999999999,0.0,0.0,14.56,0.0,0.0,0.46,8.0,0.746,191.0,17.81,10.0,0.932,238.0,22.191999999999997,1039170.0,4000.0,11.249,0.373,704.0,0.008,0.0,6.6,tests performed,2952125.0,2416650.0,1710177.0,4240912.0,42303.0,40168.0,3.2,2.62,1.85,39.54,435.0,40168.0,0.043,31.48,92377986.0,35.879,17.0,3.02,1.745,808.133,77.1,318.949,6.1,30.5,38.3,4.4719999999999995,6.63,60.68,0.48,42100.6,15.74,5.93,3925.6274829999998
803,Spain,2022-06-17,91408,93162168.0,29943.0,1992.9779999999998,43694.0,0.935,0.31,ESP,Europe,12563399.0,48272.0,12057.857,107482.0,243.0,53.428999999999995,268763.339,1032.662,257.949,2299.3160000000003,5.1979999999999995,1.143,1.34,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,93162168.0,29943.0,1992.9779999999998,0.6409999999999999,43694.0,0.935,0.31,3.2,tests performed,94987684.0,41249657.0,40539246.0,25272972.0,47657.0,12231.0,203.2,88.24,86.72,54.07,262.0,722.0,0.002,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
804,Mauritania,2022-06-17,60990,,,,666.0,0.139,0.0124,MRT,Africa,59289.0,6.0,8.286,982.0,0.0,0.0,12416.258,1.2570000000000001,1.735,205.65,0.0,0.0,1.06,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,993570.0,1362.0,208.07299999999998,0.285,666.0,0.139,0.0124,80.4,tests performed,2845889.0,1924472.0,1332013.0,215488.0,3777.0,322.0,59.6,40.3,27.89,4.51,67.0,100.0,0.002,43.52,4775110.0,4.289,20.3,3.138,1.7919999999999998,3597.633,6.0,232.347,2.42,20.9,30.2,15.95,2.7,64.92,0.546,539.8,5.7,-1.02,1045.921333
805,Chad,2022-06-17,17105,,,,114.0,0.006999999999999999,0.0025,TCD,Africa,7420.0,0.0,0.28600000000000003,193.0,0.0,0.0,438.664,0.0,0.017,11.41,0.0,0.0,0.34,220.0,5.779,3505.0,92.072,,,760.0,65.335,218102.0,2691.0,12.894,40.467,114.0,0.006999999999999999,0.0025,398.6,tests performed,2355126.0,2216437.0,2091466.0,23536.0,12887.0,72.0,13.92,13.1,12.36,35.39,4.0,147.0,0.001,37.96,16914985.0,11.833,16.7,2.4859999999999998,1.446,1768.1529999999998,38.4,280.995,6.1,2.1,16.5,5.818,1.0,54.24,0.39799999999999996,188.6,6.81,13.94,335.6463149
806,Norway,2022-06-17,72801,11148313.0,2089.0,2039.713,1648.0,0.302,0.302,NOR,Europe,1439408.0,595.0,401.42900000000003,3250.0,0.0,5.7139999999999995,263356.331,108.86200000000001,73.446,594.625,0.0,1.045,1.32,41.0,2.387,467.0,85.443,7.0,1.298,146.0,26.709,11148313.0,2089.0,2039.713,0.382,1648.0,0.302,0.302,3.3,people tested,11393060.0,4340926.0,4044930.0,3007204.0,1447.0,1329.0,208.45,79.42,74.01,55.02,243.0,87.0,0.002,11.11,5465629.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
807,France,2022-06-17,32502,278054573.0,207637.0,4124.093,199513.0,2.9589999999999996,0.222,FRA,Europe,30139875.0,50605.0,47453.71400000001,149108.0,43.0,47.0,447033.23799999995,750.571,703.831,2211.563,0.638,0.6970000000000001,1.16,845.0,12.533,13895.0,206.09,393.0,5.829,3599.0,53.38,278054573.0,207637.0,4124.093,3.08,199513.0,2.9589999999999996,0.222,4.5,people tested,145286655.0,54449402.0,52887496.0,39029984.0,61717.0,38554.0,215.49,80.76,78.44,57.89,572.0,1051.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
808,Bermuda,2022-06-17,9976,,,,1039.0,16.733,0.0459,BMU,North America,15762.0,0.0,47.714,138.0,0.0,0.0,253849.12699999998,0.0,768.445,2222.509,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,36935.0,8589.0,594.8430000000001,138.327,1039.0,16.733,0.0459,21.8,samples tested,131612.0,48554.0,47657.0,35401.0,5470.0,6.0,211.96,78.2,76.75,57.01,97.0,5.0,0.008,22.22,62092.0,1308.82,18.8,3.2439999999999998,1.942,50669.315,49.6,139.547,13.0,0.6,12.3,11.035,0.5,82.59,0.545,15.4,2.8,-1.1,248.0190685
809,Bulgaria,2022-06-17,14422,,,,3068.0,0.445,0.0529,BGR,Europe,1167914.0,208.0,162.429,37223.0,4.0,3.8569999999999998,169344.99399999998,30.16,23.552,5397.254,0.58,0.5589999999999999,1.2,29.0,4.205,251.0,36.394,,,760.0,65.335,10058480.0,4881.0,1458.4579999999999,0.708,3068.0,0.445,0.0529,18.9,tests performed,4404787.0,2090864.0,2060929.0,762060.0,365.0,299.0,63.87,30.32,29.88,11.05,43.0,58.0,0.001,11.11,6896655.0,65.18,44.7,20.801,13.272,18563.307,1.5,424.68800000000005,5.81,30.1,44.4,97.164,7.454,75.05,0.816,66889.5,26.21,-5.49,9698.83226
810,United Arab Emirates,2022-06-17,101611,166707231.0,382308.0,16685.602,268572.0,26.881,0.005,ARE,Asia,924434.0,1433.0,1338.0,2306.0,0.0,0.14300000000000002,92525.905,143.428,133.91899999999998,230.80599999999998,0.0,0.013999999999999999,1.36,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,166707231.0,382308.0,16685.602,38.265,268572.0,26.881,0.005,200.7,tests performed,24909327.0,9991089.0,9792266.0,5125972.0,6152.0,795.0,249.32,100.0,98.01,51.31,80.0,0.0,0.0,37.96,9991083.0,112.44200000000001,34.0,1.1440000000000001,0.526,67293.483,0.1,317.84,17.26,1.2,37.4,21.221999999999998,1.2,77.97,0.89,179972.2,14.89,1.92,4140.449928
811,Malawi,2022-06-17,57342,,,,232.0,0.012,0.0702,MWI,Africa,86189.0,27.0,16.285999999999998,2643.0,0.0,0.14300000000000002,4386.726,1.374,0.8290000000000001,134.52,0.0,0.006999999999999999,1.38,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,587353.0,490.0,29.894000000000002,0.025,232.0,0.012,0.0702,14.2,tests performed,2166402.0,2047317.0,1590299.0,740.0,14163.0,0.0,11.03,10.42,8.09,0.0,0.0,64387.0,0.32799999999999996,47.22,19647681.0,197.519,18.1,2.9789999999999996,1.7830000000000001,1095.042,71.4,227.34900000000002,3.94,4.4,24.7,8.704,1.3,64.26,0.483,413.4,8.35,22.9,627.8943667000001
812,Trinidad and Tobago,2022-06-17,98007,764188.0,,544.536,780.0,0.556,0.23399999999999999,TTO,North America,165600.0,132.0,183.571,3973.0,5.0,2.4290000000000003,118001.33099999999,94.059,130.80700000000002,2831.034,3.563,1.7309999999999999,0.75,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,764188.0,1809.0,544.536,1.2890000000000001,780.0,0.556,0.23399999999999999,4.3,people tested,1568972.0,750711.0,713281.0,162292.0,366.0,271.0,111.8,53.49,50.83,11.56,193.0,52.0,0.004,13.89,1403374.0,266.88599999999997,36.2,10.014,5.819,28763.071,49.2,228.467,10.97,11.8,44.4,89.443,3.0,73.51,0.7959999999999999,97687.9,8.02,19.55,1396.5221060000001
813,Sweden,2022-06-17,93665,18402751.0,2417.0,1811.266,2354.0,0.23199999999999998,,SWE,Europe,2512853.0,0.0,274.714,19075.0,0.0,3.714,247324.181,0.0,27.038,1877.431,0.0,0.366,0.5,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18402751.0,2417.0,1811.266,0.23800000000000002,2354.0,0.23199999999999998,0.1183,8.5,tests performed,22631019.0,7837623.0,7649569.0,5426959.0,398.0,6723.0,222.74,77.14,75.29,53.41,662.0,143.0,0.001,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
814,New Zealand,2022-06-17,68853,,,,3451.0,0.6729999999999999,,NZL,Oceania,1270039.0,4584.0,5227.0,1324.0,9.0,10.0,247749.64399999997,894.212,1019.6439999999999,258.276,1.756,1.9509999999999998,0.94,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,7242169.0,1761.0,1412.7479999999998,0.344,3451.0,0.6729999999999999,0.685,1.5,tests performed,11107234.0,4291812.0,4109792.0,2705630.0,1504.0,1337.0,216.67,83.72,80.17,52.78,261.0,80.0,0.002,26.85,5126300.0,18.206,37.9,15.322000000000001,9.72,36085.843,15.0,128.797,8.08,14.8,17.2,47.782,2.61,82.29,0.9309999999999999,-1746.4,-2.07,9.86,-340.6745606
815,Mauritius,2022-06-17,61098,,,,12.0,0.009000000000000001,,MUS,Africa,227442.0,0.0,84.429,1000.0,0.0,0.5710000000000001,178606.093,0.0,66.3,785.2819999999999,0.0,0.449,0.23,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282514.0,1362.0,1007.135,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2551638.0,977183.0,944658.0,620077.0,35153.0,215.0,200.38,76.74,74.18,48.69,169.0,30.0,0.002,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
816,Cameroon,2022-06-17,15135,,,,608.0,0.022000000000000002,0.0,CMR,Africa,119947.0,0.0,0.0,1930.0,0.0,0.0,4405.8859999999995,0.0,0.0,70.893,0.0,0.0,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2717815.0,3334.0,99.831,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1837626.0,1558744.0,1215532.0,52011.0,9890.0,92.0,6.75,5.73,4.46,0.19,3.0,76.0,0.0,30.56,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
817,Denmark,2022-06-17,25108,64613562.0,7110.0,11114.778,6314.0,1.0859999999999999,0.1631,DNK,Europe,3150599.0,1194.0,1029.5710000000001,6421.0,0.0,2.4290000000000003,541963.7579999999,205.391,177.106,1104.536,0.0,0.418,1.42,7.0,1.204,226.0,38.876,10.0,0.932,281.0,48.336999999999996,64613562.0,7110.0,11114.778,1.2229999999999999,6314.0,1.0859999999999999,0.1631,6.1,tests performed,13218305.0,4829527.0,4792668.0,3642900.0,547.0,694.0,227.38,83.08,82.44,62.66,119.0,41.0,0.001,11.11,5813302.0,136.52,42.3,19.677,12.325,46682.515,0.2,114.76700000000001,6.41,19.3,18.8,4.4719999999999995,2.5,80.9,0.94,1780.7,1.29,0.54,306.3147244
818,Fiji,2022-06-17,30886,,,,857.0,0.9490000000000001,,FJI,Oceania,65268.0,0.0,15.571,865.0,0.0,0.14300000000000002,72287.155,0.0,17.246,958.025,0.0,0.158,1.53,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,551345.0,567.0,610.639,0.628,857.0,0.9490000000000001,0.6621,1.5,tests performed,1608898.0,706129.0,634685.0,134042.0,28295.0,55.0,178.19,78.21,70.29,14.85,61.0,24.0,0.003,57.41,902899.0,49.562,28.6,6.224,3.284,8702.975,1.4,412.82,14.49,10.2,34.8,7.96,2.3,67.44,0.743,-38.6,-3.8,10.79,-786.903961
819,South Africa,2022-06-17,89056,25576392.0,,425.975,15532.0,0.259,0.0735,ZAF,Africa,3984646.0,971.0,1141.857,101589.0,5.0,17.285999999999998,66364.31599999999,16.172,19.018,1691.9660000000001,0.083,0.28800000000000003,0.68,253.0,4.2139999999999995,2194.0,36.541,7.0,3.319,1489.0,24.799,25576392.0,22417.0,425.975,0.373,15532.0,0.259,0.0735,13.6,people tested,36565633.0,21937255.0,18957381.0,3361395.0,7179.0,22804.0,60.9,36.54,31.57,5.6,380.0,8914.0,0.015,43.52,60041996.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
820,Austria,2022-06-17,5451,189249374.0,61109.0,20927.554,87627.0,9.69,0.0546,AUT,Europe,4349916.0,7605.0,4783.0,19984.0,1.0,3.0,481021.936,840.975,528.913,2209.869,0.111,0.332,1.6,36.0,3.9810000000000003,523.0,57.833999999999996,,,,,189249374.0,61109.0,20927.554,6.757999999999999,87627.0,9.69,0.0546,18.3,tests performed,18399451.0,6830775.0,6623659.0,5296302.0,4140.0,1844.0,203.46,75.54,73.25,58.57,204.0,82.0,0.001,35.19,9043072.0,106.749,44.4,19.202,13.748,45436.685999999994,0.7,145.183,6.35,28.4,30.9,94.04299999999999,7.37,81.54,0.922,17273.6,8.5,6.4,1910.147348
821,Burundi,2022-06-17,14638,,,,1633.0,0.133,0.0131,BDI,Africa,42398.0,13.0,21.429000000000002,38.0,0.0,0.0,3459.528,1.061,1.7480000000000002,3.1010000000000004,0.0,0.0,0.9,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1609334.0,3281.0,131.316,0.268,1633.0,0.133,0.0131,76.2,tests performed,16232.0,14388.0,13811.0,768430.0,93.0,39.0,0.13,0.12,0.11,11.14,3.0,39.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
822,United States Virgin Islands,2022-06-17,104052,115053.0,52.0,1103.965,55.0,0.528,0.191,VIR,North America,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115053.0,52.0,1103.965,0.499,55.0,0.528,0.191,5.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
823,Saint Lucia,2022-06-17,83299,,,,168.0,0.9109999999999999,0.2134,LCA,North America,26704.0,0.0,35.857,376.0,0.0,0.7140000000000001,144814.833,0.0,194.452,2039.0339999999999,0.0,3.8739999999999997,0.83,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,207725.0,117.0,1126.485,0.634,168.0,0.9109999999999999,0.2134,4.7,tests performed,121134.0,59464.0,54114.0,7556.0,71.0,26.0,65.69,32.25,29.35,4.1,141.0,10.0,0.005,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
824,Togo,2022-06-17,97458,,,,387.0,0.046,0.0203,TGO,Africa,37231.0,11.0,7.857,273.0,0.0,0.0,4391.358,1.297,0.927,32.2,0.0,0.0,1.28,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,747055.0,877.0,88.11399999999999,0.10300000000000001,387.0,0.046,0.0203,49.3,tests performed,3290821.0,2092750.0,1557538.0,87104.0,7881.0,0.0,38.81,24.68,18.37,1.03,0.0,428.0,0.005,29.17,8478242.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,61.04,0.515,97687.9,8.02,19.55,1396.5221060000001
825,Belgium,2022-06-17,9554,34302432.0,12969.0,2948.886,11337.0,0.975,0.253,BEL,Europe,4187940.0,0.0,2526.857,31856.0,0.0,5.7139999999999995,360025.77,0.0,217.227,2738.573,0.0,0.491,1.58,49.0,4.212,880.0,75.65100000000001,,,464.0,39.889,34302432.0,12969.0,2948.886,1.115,11337.0,0.975,0.253,4.0,tests performed,25602402.0,9247280.0,9149626.0,7635007.0,8343.0,9167.0,220.1,79.5,78.66,65.64,788.0,97.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
826,Nigeria,2022-06-17,69834,,,,3681.0,0.017,0.0079,NGA,Africa,256467.0,0.0,29.0,3144.0,0.0,0.0,1213.1789999999999,0.0,0.13699999999999998,14.872,0.0,0.0,1.42,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5219585.0,11989.0,24.69,0.057,3681.0,0.017,0.0079,126.9,tests performed,46391592.0,27401621.0,16817979.0,942369.0,186047.0,301975.0,21.94,12.96,7.96,0.45,1428.0,67082.0,0.032,40.74,211400704.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,54.69,0.539,8148.4,31.97,5.18,1215.747423
827,Ireland,2022-06-17,44683,12316311.0,5243.0,2471.7129999999997,4774.0,0.958,0.29,IRL,Europe,1578284.0,0.0,1109.286,7442.0,0.0,3.714,316739.797,0.0,222.618,1493.507,0.0,0.745,0.91,28.0,5.619,515.0,103.353,13.0,2.597,422.0,84.693,12316311.0,5243.0,2471.7129999999997,1.052,4774.0,0.958,0.29,3.4,tests performed,10963725.0,4089854.0,4041334.0,3073301.0,1709.0,1325.0,220.03,82.08,81.1,61.68,266.0,92.0,0.002,11.11,4982904.0,69.874,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,82.3,0.955,3219.2,4.29,15.34,646.0489706000001
828,Somalia,2022-06-17,88188,,,,252.0,0.015,0.0624,SOM,Africa,26675.0,0.0,15.714,1361.0,0.0,0.0,1630.5510000000002,0.0,0.961,83.193,0.0,0.0,0.38,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,493663.0,3998.0,30.176,1.923,252.0,0.015,0.0624,16.0,tests performed,2996795.0,2498354.0,1525974.0,2343.0,17966.0,16453.0,18.32,15.27,9.33,0.33,1006.0,19619.0,0.12,40.74,16359500.0,23.5,16.8,2.7310000000000003,1.496,2205.923,25.1,365.769,6.05,20.1,25.0,9.831,0.9,57.4,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
829,Guam,2022-06-17,37086,323103.0,1681.0,1898.5510000000002,432.0,2.5380000000000003,0.10800000000000001,GUM,Oceania,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,323103.0,1681.0,1898.5510000000002,9.878,432.0,2.5380000000000003,0.10800000000000001,9.3,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
830,Ethiopia,2022-06-17,29938,,,,4150.0,0.035,0.1771,ETH,Africa,482888.0,856.0,735.143,7522.0,4.0,0.857,4096.568,7.2620000000000005,6.237,63.813,0.034,0.006999999999999999,1.19,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,4993374.0,4118.0,42.361000000000004,0.035,4150.0,0.035,0.1771,5.6,tests performed,29419678.0,24770491.0,21292024.0,346411.0,159930.0,43258.0,24.96,21.01,18.06,0.29,367.0,329306.0,0.27899999999999997,30.56,117876226.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
831,Bangladesh,2022-06-17,7799,,,,1691.0,0.01,0.126,BGD,Asia,1955427.0,433.0,213.143,29131.0,0.0,0.0,11758.184,2.6039999999999996,1.2819999999999998,175.168,0.0,0.0,2.82,50.0,5.529,874.0,96.649,,,,,13804340.0,5986.0,83.007,0.036000000000000004,1691.0,0.01,0.126,7.9,tests performed,274455275.0,129173653.0,118438732.0,27107823.0,274839.0,358283.0,165.03,77.67,71.22,16.3,2154.0,9805.0,0.006,34.26,166303494.0,1265.036,27.5,5.098,3.262,3523.9840000000004,14.8,298.003,8.38,1.0,44.7,34.808,0.8,72.59,0.632,43744.8,33.01,2.0,4278.913044
832,Iceland,2022-06-17,41089,1372431.0,530.0,3721.423,530.0,1.4369999999999998,,ISL,Europe,191079.0,0.0,152.143,153.0,0.0,0.0,518121.326,0.0,412.54400000000004,414.86800000000005,0.0,0.0,1.5,1.0,2.7119999999999997,30.0,81.347,21.0,2.06,9.0,24.404,1372431.0,530.0,3721.423,1.4369999999999998,530.0,1.4369999999999998,0.2219,4.5,tests performed,805469.0,309770.0,290193.0,250542.0,1925.0,61.0,218.41,84.0,78.69,67.94,165.0,10.0,0.003,11.11,368792.0,3.404,37.3,14.431,9.207,46482.958,0.2,117.992,5.31,14.3,15.2,84.169,2.91,82.99,0.9490000000000001,213.9,4.1,13.64,580.0017353999999
833,Nepal,2022-06-17,67258,,,,2969.0,0.1,,NPL,Asia,979333.0,24.0,13.0,11952.0,0.0,0.0,33002.043,0.809,0.43799999999999994,402.764,0.0,0.0,1.44,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,6946964.0,5062.0,234.102,0.171,2969.0,0.1,0.005,200.0,samples tested,45057574.0,22571837.0,20090817.0,5827235.0,152337.0,127358.0,151.84,76.06,67.7,19.64,4292.0,15606.0,0.053,46.3,29674920.0,204.43,25.0,5.809,3.2119999999999997,2442.804,15.0,260.797,7.26,9.5,37.8,47.782,0.3,70.78,0.602,2633.7,21.49,55.05,4193.449258
834,Bahrain,2022-06-17,6987,,,,5295.0,3.029,0.2377,BHR,Asia,602465.0,1143.0,1258.714,1491.0,0.0,0.28600000000000003,344601.455,653.78,719.967,852.831,0.0,0.163,1.33,50.0,5.529,874.0,96.649,,,,,9925545.0,7215.0,5677.271,4.127,5295.0,3.029,0.2377,4.2,units unclear,3450025.0,1237735.0,1222205.0,990085.0,263.0,307.0,197.34,70.8,69.91,56.63,176.0,49.0,0.003,17.59,1748295.0,1935.9070000000002,32.4,2.372,1.3869999999999998,43290.705,0.7,151.689,16.52,5.8,37.6,83.241,2.0,77.29,0.852,43744.8,33.01,2.0,4278.913044
835,Croatia,2022-06-17,21870,,,,1812.0,0.444,0.1416,HRV,Europe,1141115.0,68.0,256.57099999999997,16024.0,2.0,1.429,279571.507,16.66,62.86,3925.857,0.49,0.35,1.11,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,4912067.0,5587.0,1203.4489999999998,1.369,1812.0,0.444,0.1416,7.1,people tested,5256551.0,2315200.0,2244697.0,594785.0,278.0,159.0,128.78,56.72,54.99,14.57,39.0,27.0,0.001,14.81,4081657.0,73.726,44.0,19.724,13.052999999999999,22669.797000000002,0.7,253.782,5.59,34.3,39.9,19.351,5.54,78.49,0.851,19749.3,16.18,-5.95,4838.549638
836,Taiwan,2022-06-17,95398,12694602.0,69093.0,532.1569999999999,78299.0,3.282,0.7822,TWN,Asia,3190787.0,55222.0,61243.857,4868.0,154.0,153.0,133757.532,2314.902,2567.3379999999997,204.06599999999997,6.456,6.414,0.9,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,12694602.0,69093.0,532.1569999999999,2.8960000000000004,78299.0,3.282,0.7822,1.3,people tested,56748727.0,21143972.0,19160571.0,16444184.0,152136.0,75836.0,237.89,88.64,80.32,68.93,3179.0,5879.0,0.025,26.85,23855008.0,214.243,42.2,18.436,8.353,57410.166,0.5,103.95700000000001,5.59,22.6,28.9,70.598,1.5,80.46,0.5670000000000001,-1625.5,-0.37,15.75,-68.14082812
837,Guinea,2022-06-17,37944,,,,873.0,0.065,0.0,GIN,Africa,36817.0,0.0,0.0,442.0,0.0,0.0,2727.743,0.0,0.0,32.747,0.0,0.0,0.01,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,701242.0,10381.0,51.95399999999999,0.569,873.0,0.065,0.0,72.1,tests performed,6127699.0,4477740.0,2511039.0,39278.0,522.0,8187.0,45.4,33.18,18.6,61.97,607.0,2120.0,0.016,49.07,13497237.0,51.755,19.0,3.135,1.733,1998.9260000000002,35.3,336.717,2.42,35.3,52.0,17.45,0.3,61.6,0.47700000000000004,43113.3,25.35,10.04,2362.38969
838,Malaysia,2022-06-17,58223,60592847.0,30284.0,1848.685,36873.0,1.125,0.0534,MYS,Asia,4536795.0,2130.0,1968.1429999999998,35731.0,1.0,3.1430000000000002,138417.37900000002,64.986,60.048,1090.151,0.031,0.096,1.09,35.0,1.068,473.0,14.431,10.0,5.282,835.0,25.476,60592847.0,30284.0,1848.685,0.924,36873.0,1.125,0.0534,18.7,people tested,71139147.0,28029957.0,27193587.0,16130439.0,16862.0,10113.0,217.05,85.52,82.97,49.21,309.0,621.0,0.002,50.0,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
839,Zimbabwe,2022-06-17,106780,,,,1773.0,0.11699999999999999,0.0582,ZWE,Africa,254753.0,251.0,103.14299999999999,5533.0,7.0,2.1430000000000002,16879.811,16.631,6.834,366.61400000000003,0.46399999999999997,0.142,0.86,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,2365708.0,3537.0,156.751,0.23399999999999999,1773.0,0.11699999999999999,0.0582,17.2,tests performed,11886084.0,6277180.0,4575674.0,1033230.0,11967.0,7327.0,78.76,41.59,30.32,6.85,485.0,1957.0,0.013000000000000001,38.89,15092171.0,42.729,19.6,2.822,1.882,1899.775,21.4,307.846,1.82,1.6,30.7,36.791,1.7,61.49,0.5710000000000001,38486.9,10.93,1.96,1134.110282
840,Saudi Arabia,2022-06-17,84476,43098042.0,23648.0,1219.502,31068.0,0.879,0.0319,SAU,Asia,783076.0,945.0,991.2860000000001,9183.0,3.0,2.286,22157.921000000002,26.74,28.049,259.842,0.085,0.065,1.14,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,43098042.0,23648.0,1219.502,0.669,31068.0,0.879,0.0319,31.3,tests performed,60953969.0,25960748.0,24199236.0,10793985.0,113359.0,47889.0,172.48,73.46,68.47,30.54,1355.0,6276.0,0.018000000000000002,11.11,35340680.0,15.322000000000001,31.9,3.295,1.845,49045.41099999999,32.3,259.538,17.72,1.8,25.4,41.34,2.7,75.13,0.8540000000000001,133.0,21.63,-19.49,3910.614525
841,Kosovo,2022-06-17,50512,,,,194.0,0.109,0.0641,OWID_KOS,Europe,228507.0,25.0,12.429,3139.0,0.0,0.0,128222.365,14.027999999999999,6.974,1761.39,0.0,0.0,1.71,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1844866.0,1719.0,1035.212,0.965,194.0,0.109,0.0641,15.6,tests performed,1830149.0,903529.0,823550.0,103070.0,43.0,47.0,102.7,50.7,46.21,5.78,26.0,11.0,0.001,37.04,1782115.0,168.155,23.2,3.895,2.21,9795.834,0.6,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,5869.8,25.36,-11.76,3293.726836
842,Eswatini,2022-06-17,29106,,,,238.0,0.203,0.0774,SWZ,Africa,72999.0,19.0,18.429000000000002,1413.0,1.0,0.429,62266.232,16.207,15.719000000000001,1205.252,0.853,0.366,0.58,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,547721.0,333.0,467.19199999999995,0.284,238.0,0.203,0.0774,12.9,tests performed,535393.0,387468.0,336066.0,66331.0,7504.0,0.0,45.67,33.05,28.67,5.66,0.0,0.0,0.0,23.15,1172369.0,79.492,21.5,3.1630000000000003,1.845,7738.975,0.5,333.436,3.94,1.7,16.5,24.096999999999998,2.1,60.19,0.611,3805.5,9.78,12.82,2871.66802
843,Luxembourg,2022-06-17,55747,4293688.0,1594.0,6763.695,1623.0,2.557,0.34600000000000003,LUX,Europe,254865.0,692.0,427.42900000000003,1084.0,0.0,0.0,401479.804,1090.083,673.313,1707.5870000000002,0.0,0.0,1.43,2.0,3.1510000000000002,20.0,31.505,10.0,5.282,1.0,1.575,4293688.0,1594.0,6763.695,2.511,1623.0,2.557,0.34600000000000003,2.9,tests performed,1301896.0,481211.0,37870.0,388410.0,403.0,226.0,205.08,75.8,5.97,61.18,356.0,11.0,0.002,19.44,634814.0,231.447,39.7,14.312000000000001,9.842,94277.965,0.2,128.275,4.42,20.9,26.0,1.188,4.51,82.25,0.9159999999999999,-48.9,-0.46,7.27,-77.03043726
844,Czechia,2022-06-17,24133,54571154.0,4780.0,5088.432,3793.0,0.354,0.086,CZE,Europe,3925168.0,439.0,327.143,40307.0,0.0,0.857,365998.284,40.934,30.504,3758.385,0.0,0.08,1.27,7.0,0.653,111.0,10.35,6.0,0.5589999999999999,110.0,10.257,54571154.0,4780.0,5088.432,0.446,3793.0,0.354,0.086,11.6,tests performed,17660304.0,6964693.0,6878324.0,4227806.0,2582.0,1077.0,164.67,64.94,64.14,39.42,100.0,65.0,0.001,14.81,10724553.0,137.17600000000002,43.3,19.027,11.58,32605.906000000003,0.7,227.485,6.82,30.5,38.3,85.198,6.63,79.38,0.9,42100.6,15.74,5.93,3925.6274829999998
845,Kenya,2022-06-17,50119,,,,2757.0,0.05,0.1171,KEN,Africa,328709.0,390.0,322.857,5651.0,0.0,0.0,5978.081,7.093,5.872000000000001,102.772,0.0,0.0,1.48,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3706945.0,2868.0,67.417,0.052000000000000005,2757.0,0.05,0.1171,8.5,tests performed,18367309.0,12576597.0,9223230.0,335015.0,13702.0,12048.0,33.4,22.87,16.77,0.61,219.0,4649.0,0.008,37.04,54985702.0,87.324,20.0,2.6860000000000004,1.528,2993.028,36.8,218.637,2.92,1.2,20.4,24.651,1.4,66.7,0.601,83124.6,26.77,-14.32,4376.140237
846,Uganda,2022-06-17,100054,,,,1464.0,0.031,0.0663,UGA,Africa,166725.0,132.0,97.0,3613.0,0.0,1.571,3538.0409999999997,2.801,2.0580000000000003,76.671,0.0,0.033,0.74,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,2729243.0,10103.0,57.917,0.214,1464.0,0.031,0.0663,15.1,tests performed,21268120.0,15896844.0,10790397.0,74990.0,134275.0,15895.0,45.13,33.73,22.9,0.16,337.0,9702.0,0.021,28.7,47123533.0,213.75900000000001,16.4,2.168,1.308,1697.707,41.6,213.333,2.5,3.4,16.7,21.221999999999998,0.5,63.37,0.544,20481.6,16.84,40.84,1715.9856710000001
847,Estonia,2022-06-17,29004,3421123.0,869.0,2581.613,985.0,0.743,0.1217,EST,Europe,578494.0,0.0,119.85700000000001,2586.0,0.0,1.714,436537.30600000004,0.0,90.445,1951.421,0.0,1.294,1.16,4.0,3.0180000000000002,70.0,52.823,1.0,0.752,62.0,46.614,3421123.0,869.0,2581.613,0.6559999999999999,985.0,0.743,0.1217,8.2,tests performed,1992900.0,862835.0,847441.0,475688.0,176.0,152.0,150.39,65.11,63.95,35.9,115.0,46.0,0.003,11.11,1325188.0,31.033,42.7,19.452,13.491,29481.252,0.5,255.56900000000002,4.02,24.5,39.3,24.64,4.69,78.74,0.892,3805.5,9.78,12.82,2871.66802
848,Italy,2022-06-17,46388,223904665.0,185819.0,3709.028,170581.0,2.826,0.1661,ITA,Europe,17809934.0,36170.0,28332.429,167658.0,41.0,50.428999999999995,295025.346,599.164,469.333,2777.29,0.679,0.835,1.38,191.0,3.1639999999999997,4511.0,74.726,145.0,2.4019999999999997,2626.0,43.5,223904665.0,185819.0,3709.028,3.0780000000000003,170581.0,2.826,0.1661,6.0,tests performed,138080216.0,50798017.0,47943213.0,40846802.0,18354.0,15340.0,228.73,84.15,79.42,67.66,254.0,461.0,0.001,22.22,60367471.0,205.859,47.9,23.021,16.24,35220.084,2.0,113.15100000000001,4.78,19.8,27.8,94.57600000000001,3.18,83.51,0.892,180753.4,11.84,-8.54,2994.218525
849,Panama,2022-06-17,75264,,,,10021.0,2.287,0.18100000000000002,PAN,North America,900333.0,1451.0,1813.714,8318.0,2.0,3.286,205481.215,331.159,413.94,1898.401,0.456,0.75,0.84,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,6436730.0,7609.0,1469.0420000000001,1.7369999999999999,10021.0,2.287,0.18100000000000002,5.5,tests performed,8326845.0,3481615.0,3111772.0,1728629.0,5925.0,5440.0,190.04,79.46,71.02,39.45,1242.0,325.0,0.006999999999999999,28.7,4381583.0,55.133,29.7,7.917999999999999,5.03,22267.037,2.2,128.346,8.33,2.4,9.9,59.607,2.3,78.51,0.815,7503.4,19.42,-1.22,1712.4861039999998
850,Mexico,2022-06-17,62000,15568002.0,11680.0,119.51299999999999,13116.0,0.10099999999999999,0.48,MEX,North America,5852596.0,0.0,5390.0,325340.0,0.0,28.0,44929.343,0.0,41.378,2497.578,0.0,0.215,1.44,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15568002.0,11680.0,119.51299999999999,0.09,13116.0,0.10099999999999999,0.48,2.1,people tested,209030212.0,88302201.0,79947470.0,53110007.0,157958.0,37857.0,160.47,67.79,61.37,40.77,291.0,13600.0,0.01,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
851,India,2022-06-17,41919,856910352.0,519903.0,614.974,387438.0,0.278,0.0259,IND,Asia,43283793.0,13216.0,10051.143,524840.0,23.0,11.857000000000001,31063.236,9.485,7.212999999999999,376.659,0.017,0.009000000000000001,1.48,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,856910352.0,519903.0,614.974,0.373,387438.0,0.278,0.0259,38.5,samples tested,1957644567.0,1014376400.0,904021638.0,39246529.0,1690335.0,1536525.0,140.49,72.8,64.88,2.82,1103.0,184156.0,0.013000000000000001,37.04,1393409033.0,450.41900000000004,28.2,5.989,3.4139999999999997,6426.674,21.2,282.28,10.39,1.9,20.6,59.55,0.53,69.66,0.645,213.9,4.1,13.64,580.0017353999999
852,Lithuania,2022-06-17,54900,8717835.0,896.0,3240.9970000000003,807.0,0.3,0.19899999999999998,LTU,Europe,1157689.0,197.0,176.857,9157.0,1.0,0.5710000000000001,430389.737,73.238,65.75,3404.264,0.37200000000000005,0.212,1.2,1.0,0.536,52.0,19.332,10.0,5.282,1.0,25.605,8717835.0,896.0,3240.9970000000003,0.33299999999999996,807.0,0.3,0.19899999999999998,5.0,tests performed,4487924.0,1952198.0,1876432.0,933825.0,170.0,103.0,166.85,72.58,69.76,34.72,38.0,19.0,0.001,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
853,Bolivia,2022-06-17,11514,4440371.0,6982.0,375.255,6277.0,0.53,0.0726,BOL,South America,914827.0,575.0,456.0,21951.0,0.0,0.14300000000000002,77311.92,48.593,38.537,1855.076,0.0,0.012,1.43,22.0,1.859,170.0,14.367,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,13859901.0,7224495.0,5997460.0,1636598.0,10225.0,8717.0,117.13,61.05,50.68,13.83,737.0,1354.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
854,Saint Kitts and Nevis,2022-06-17,83180,,,,537.0,10.029,0.02,KNA,North America,5899.0,9.0,10.714,43.0,0.0,0.0,110166.959,168.08,200.095,803.048,0.0,0.0,1.16,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,90175.0,87.0,1684.066,1.625,537.0,10.029,0.02,50.1,people tested,60467.0,31162.0,26294.0,3011.0,626.0,18.0,112.93,58.2,49.11,5.62,336.0,9.0,0.017,66.67,53546.0,212.865,20.3,2.9739999999999998,1.642,24654.385,56.0,191.375,12.84,4.7,21.0,4.617,2.3,76.23,0.779,12.2,3.33,8.11,227.8414821
855,Jamaica,2022-06-17,47209,,,,1458.0,0.49,0.136,JAM,North America,141306.0,280.0,198.28599999999997,3093.0,0.0,1.857,47522.383,94.166,66.685,1040.202,0.0,0.625,0.86,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1118817.0,2223.0,376.267,0.748,1458.0,0.49,0.136,7.4,samples tested,1452176.0,809323.0,705188.0,41747.0,677.0,591.0,48.84,27.22,23.72,1.4,199.0,291.0,0.01,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
856,Guinea-Bissau,2022-06-17,38047,,,,195.0,0.09699999999999999,0.0015,GNB,Africa,8307.0,0.0,0.28600000000000003,171.0,0.0,0.0,4121.5779999999995,0.0,0.142,84.84299999999999,0.0,0.0,0.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,141581.0,390.0,70.24600000000001,0.19399999999999998,195.0,0.09699999999999999,0.0015,681.8,tests performed,562717.0,529346.0,341781.0,81.0,1658.0,718.0,27.92,26.26,16.96,0.0,356.0,18.0,0.001,49.07,2015490.0,66.191,19.4,3.002,1.565,1548.675,67.1,382.474,2.42,35.3,52.0,6.403,0.3,58.32,0.48,43113.3,25.35,10.04,2362.38969
857,Malta,2022-06-17,59791,1943320.0,1222.0,3765.3940000000002,1172.0,2.271,0.1766,MLT,Europe,97278.0,260.0,207.0,728.0,0.0,0.7140000000000001,188486.72699999998,503.778,401.085,1410.579,0.0,1.3840000000000001,1.57,3.0,5.813,77.0,149.196,1.0,1.9380000000000002,36.0,69.75399999999999,1943320.0,1222.0,3765.3940000000002,2.3680000000000003,1172.0,2.271,0.1766,5.7,tests performed,1310994.0,476679.0,469588.0,399090.0,632.0,555.0,254.02,92.36,90.99,77.33,1075.0,13.0,0.003,13.89,516100.0,1454.037,42.4,19.426,11.324000000000002,36513.323,0.2,168.71099999999998,8.83,20.9,30.2,52.232,4.485,82.53,0.895,539.8,5.7,-1.02,1045.921333
858,Azerbaijan,2022-06-17,5873,,,,2341.0,0.22899999999999998,0.0106,AZE,Asia,792959.0,174.0,24.857,9715.0,2.0,0.28600000000000003,77563.564,17.02,2.431,950.2760000000001,0.196,0.027999999999999997,0.65,50.0,5.529,874.0,96.649,,,,,6901005.0,6872.0,675.0239999999999,0.672,2341.0,0.22899999999999998,0.0106,94.2,tests performed,13750600.0,5351876.0,4851827.0,3299020.0,2123.0,1487.0,134.5,52.35,47.46,32.27,145.0,224.0,0.002,36.11,10223344.0,119.309,32.4,6.018,3.8710000000000004,15847.419,0.7,559.812,7.11,0.3,42.5,83.241,4.7,73.0,0.7559999999999999,43744.8,33.01,2.0,4278.913044
859,Netherlands,2022-06-17,68011,30673598.0,5108.0,1786.1429999999998,4171.0,0.243,0.6709999999999999,NLD,Europe,8132678.0,3858.0,2927.143,22429.0,1.0,1.571,473570.924,224.65400000000002,170.449,1306.055,0.057999999999999996,0.092,1.54,23.0,1.339,436.0,25.389,29.0,1.689,361.0,21.021,30673598.0,5108.0,1786.1429999999998,0.297,4171.0,0.243,0.6709999999999999,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
860,Australia,2022-06-17,4638,73061559.0,82346.0,2833.137,62340.0,2.417,0.142,AUS,Oceania,7778643.0,24843.0,25847.0,9332.0,63.0,44.0,301635.549,963.347,1002.279,361.871,2.443,1.706,0.98,103.0,3.9939999999999998,2815.0,109.15799999999999,,,,,73061559.0,82346.0,2833.137,3.193,62340.0,2.417,0.142,7.0,tests performed,57806676.0,22338902.0,21647523.0,13820251.0,14002.0,8005.0,224.16,86.62,83.94,53.59,310.0,1160.0,0.004,13.89,25788217.0,3.202,37.9,15.504000000000001,10.129,44648.71,0.5,107.791,5.07,13.0,16.5,94.04299999999999,3.84,83.44,0.9440000000000001,4853.0,1.35,8.37,188.1867211
861,El Salvador,2022-06-17,27796,1907623.0,4673.0,292.64799999999997,4655.0,0.7140000000000001,0.092,SLV,North America,164134.0,0.0,0.0,4136.0,1.0,0.28600000000000003,25179.718999999997,0.0,0.0,634.502,0.153,0.044000000000000004,0.09,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1907623.0,4673.0,292.64799999999997,0.7170000000000001,4655.0,0.7140000000000001,0.092,10.9,tests performed,10875762.0,4609638.0,4314494.0,1951630.0,46995.0,3561.0,166.84,70.72,66.19,29.94,546.0,270.0,0.004,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
862,Serbia,2022-06-17,86122,9821003.0,5774.0,1429.227,6103.0,0.888,0.0456,SRB,Europe,2021926.0,325.0,278.286,16106.0,1.0,1.143,294246.114,47.29600000000001,40.498000000000005,2343.868,0.146,0.166,1.21,10.0,1.455,80.0,11.642000000000001,9.0,1.669,7292.0,49.975,9821003.0,5774.0,1429.227,0.84,6103.0,0.888,0.0456,21.9,people tested,8533114.0,3353655.0,3277747.0,1901712.0,221.0,182.0,124.18,48.8,47.7,27.68,26.0,46.0,0.001,11.11,6871547.0,80.291,41.2,17.366,1.796,14048.881000000001,38.0,439.415,10.08,37.7,40.2,97.719,5.609,76.0,0.8059999999999999,58394.0,24.45,1.98,8497.940857
863,Suriname,2022-06-17,92941,,,,27.0,0.046,,SUR,South America,80766.0,0.0,13.286,1355.0,0.0,0.429,136475.622,0.0,22.45,2289.633,0.0,0.7240000000000001,1.02,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,84019.0,198.0,141.972,0.335,27.0,0.046,0.508,2.0,tests performed,505699.0,267820.0,237879.0,48889.0,398.0,14.0,85.45,45.26,40.2,8.26,24.0,6.0,0.001,44.44,591798.0,3.612,29.6,6.933,4.229,13767.118999999999,0.7,258.314,12.54,7.4,42.9,67.779,3.1,71.68,0.738,48.2,1.23,14.57,81.44670986
864,Ecuador,2022-06-17,26935,2867868.0,4960.0,160.319,3853.0,0.215,0.273,ECU,South America,896483.0,4307.0,1286.4289999999999,35693.0,31.0,5.857,50115.119000000006,240.77,71.914,1995.307,1.733,0.327,0.99,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2867868.0,4960.0,160.319,0.27699999999999997,3853.0,0.215,0.273,3.7,people tested,35682696.0,15182093.0,14004047.0,7060157.0,20863.0,21750.0,199.47,84.87,78.29,39.47,1216.0,895.0,0.005,75.0,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
865,Latvia,2022-06-17,52487,7254532.0,1932.0,3885.8,2072.0,1.11,0.0997,LVA,Europe,831727.0,206.0,206.571,5844.0,2.0,1.0,445504.23299999995,110.34100000000001,110.647,3130.2659999999996,1.071,0.536,1.23,3.0,1.607,294.0,157.477,11.0,5.81,93.0,49.651,7254532.0,1932.0,3885.8,1.035,2072.0,1.11,0.0997,10.0,tests performed,2893342.0,1345864.0,1305552.0,527877.0,222.0,128.0,154.98,72.09,69.93,28.28,69.0,14.0,0.001,11.11,1866934.0,31.212,43.9,19.754,14.136,25063.846,0.7,350.06,4.91,25.6,51.0,49.839,5.57,75.29,0.866,8297.0,12.2,2.87,4444.184958
866,Slovakia,2022-06-17,87213,51228330.0,2203.0,9400.953000000001,2169.0,0.39799999999999996,0.096,SVK,Europe,2545879.0,228.0,200.857,20126.0,4.0,2.0,467196.34,41.84,36.859,3693.3390000000004,0.7340000000000001,0.36700000000000005,1.14,7.0,1.285,136.0,24.956999999999997,21.0,3.8510000000000004,976.0,178.96400000000003,51228330.0,2203.0,9400.953000000001,0.40399999999999997,2169.0,0.39799999999999996,0.096,10.4,tests performed,7074772.0,2822238.0,2768338.0,1652520.0,2675.0,108.0,129.83,51.79,50.8,30.33,20.0,14.0,0.0,11.11,5449270.0,113.12799999999999,41.2,15.07,9.167,30155.152000000002,0.7,287.959,7.29,23.1,37.7,19.275,5.82,77.54,0.86,26567.1,20.98,1.28,4875.350276
867,Switzerland,2022-06-17,94423,21256420.0,10790.0,2438.923,9006.0,1.033,0.377,CHE,Europe,3701895.0,0.0,2373.429,13817.0,0.0,0.429,424748.729,0.0,272.323,1585.338,0.0,0.049,1.17,24.0,2.7539999999999996,456.0,52.321000000000005,241.0,5.156000000000001,218.0,25.013,21256420.0,10790.0,2438.923,1.238,9006.0,1.033,0.377,2.7,tests performed,15746483.0,6087177.0,6001596.0,3772664.0,2264.0,1431.0,180.67,69.84,68.86,43.29,164.0,94.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
868,Afghanistan,2022-06-17,139,,,,435.0,0.011000000000000001,0.22,AFG,Asia,181534.0,69.0,95.714,7713.0,0.0,0.5710000000000001,4557.099,1.732,2.403,193.622,0.0,0.013999999999999999,1.2,,,,,,,,,981844.0,,24.648000000000003,,435.0,0.011000000000000001,0.22,4.5,tests performed,6295222.0,5573175.0,4923085.0,,383.0,9195.0,15.8,13.99,12.36,,231.0,8615.0,0.022000000000000002,11.11,39835428.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
869,Bahamas,2022-06-17,6148,,,,180.0,0.45299999999999996,0.2746,BHS,North America,35564.0,48.0,49.428999999999995,815.0,0.0,0.429,89601.274,120.93299999999999,124.53200000000001,2053.342,0.0,1.08,0.97,50.0,5.529,874.0,96.649,,,,,239960.0,567.0,604.564,1.429,180.0,0.45299999999999996,0.2746,3.6,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
870,Chile,2022-06-17,17925,39475379.0,87467.0,2054.686,70843.0,3.687,0.1489,CHL,South America,3870747.0,13104.0,10548.286,58194.0,23.0,20.0,201471.688,682.061,549.036,3028.987,1.197,1.041,1.06,161.0,8.38,3505.0,92.072,94.0,4.893,859.0,44.711000000000006,39475379.0,87467.0,2054.686,4.553,70843.0,3.687,0.1489,6.7,tests performed,58699985.0,17991524.0,17562748.0,23720430.0,100829.0,83968.0,305.53,93.65,91.41,123.46,4371.0,1327.0,0.006999999999999999,27.31,19212362.0,24.281999999999996,35.4,11.087,6.938,22767.037,1.3,127.993,8.46,34.2,41.5,5.818,2.11,80.18,0.851,51537.3,19.01,15.69,2682.507232
871,Haiti,2022-06-17,38606,206594.0,,17.9,197.0,0.017,0.0363,HTI,North America,31054.0,0.0,7.143,837.0,0.0,0.0,2690.595,0.0,0.619,72.52,0.0,0.0,1.29,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,319983.0,219752.0,145544.0,68657.0,4278.0,4299.0,2.77,1.9,1.26,8.69,372.0,4026.0,0.035,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
872,Japan,2022-06-17,48077,53051063.0,118508.0,420.871,214029.0,1.6980000000000002,0.0659,JPN,Asia,9109632.0,14684.0,14098.428999999998,30999.0,18.0,19.285999999999998,72269.532,116.493,111.84700000000001,245.925,0.14300000000000002,0.153,0.88,302.0,2.396,5237.0,41.547,259.0,4.29,2964.0,49.099,53051063.0,118508.0,420.871,0.94,214029.0,1.6980000000000002,0.0659,15.2,people tested,283529718.0,103682569.0,102259613.0,77587536.0,204299.0,119861.0,224.93,82.25,81.13,61.55,951.0,5189.0,0.004,39.81,126050796.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
873,Mali,2022-06-17,59088,,,,419.0,0.02,0.0048,MLI,Africa,31136.0,1.0,2.0,736.0,0.0,0.14300000000000002,1492.9229999999998,0.048,0.096,35.29,0.0,0.006999999999999999,0.85,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,704711.0,605.0,33.79,0.028999999999999998,419.0,0.02,0.0048,209.5,tests performed,2308245.0,1695963.0,1245359.0,161938.0,1683.0,7053.0,11.07,8.13,5.97,29.79,338.0,6112.0,0.028999999999999998,40.74,20855724.0,15.196,16.4,2.519,1.486,2014.306,0.1,268.024,2.42,1.6,23.0,52.232,0.1,59.31,0.434,160.6,14.41,3.78,295.42695269999996
874,Lesotho,2022-06-17,52643,,,,188.0,0.087,0.0,LSO,Africa,33746.0,0.0,0.0,699.0,0.0,0.0,15629.899,0.0,0.0,323.751,0.0,0.0,0.26,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,458609.0,553.0,212.41099999999997,0.256,188.0,0.087,0.0,21.6,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
875,Mozambique,2022-06-17,64758,,,,589.0,0.018000000000000002,0.1577,MOZ,Africa,226975.0,98.0,92.85700000000001,2209.0,0.0,0.429,7057.012,3.0469999999999997,2.887,68.681,0.0,0.013000000000000001,1.28,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1336051.0,939.0,41.54,0.028999999999999998,589.0,0.018000000000000002,0.1577,6.3,tests performed,31616078.0,14978771.0,14098645.0,353032.0,295812.0,0.0,98.3,46.57,43.83,1.1,0.0,0.0,0.0,28.7,32163045.0,37.728,17.7,3.158,1.87,1136.103,62.9,329.94199999999995,3.3,5.1,29.1,12.227,0.7,60.85,0.456,2633.7,21.49,55.05,4193.449258
876,Slovenia,2022-06-17,88085,5320981.0,3539.0,2559.735,3020.0,1.453,0.128,SVN,Europe,1030354.0,467.0,361.85699999999997,6646.0,1.0,0.28600000000000003,495666.811,224.657,174.077,3197.155,0.48100000000000004,0.13699999999999998,1.3,7.0,3.367,53.0,25.496,2.0,0.948,29.0,13.751,5320981.0,3539.0,2559.735,1.702,3020.0,1.453,0.128,7.8,tests performed,2995121.0,1265699.0,1222001.0,656618.0,102.0,79.0,144.08,60.89,58.79,31.59,38.0,6.0,0.0,11.11,2078723.0,102.619,44.5,19.062,12.93,31400.84,0.7,153.493,7.25,20.1,25.0,19.275,4.5,81.32,0.917,5202.5,10.13,-6.54,2502.73846
877,Myanmar,2022-06-17,65568,,,,5964.0,0.109,0.0011,MMR,Asia,613474.0,7.0,6.7139999999999995,19434.0,0.0,0.0,11193.553,0.128,0.12300000000000001,354.596,0.0,0.0,0.95,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,8296334.0,16383.0,151.376,0.299,5964.0,0.109,0.0011,888.3,samples tested,62259560.0,33004742.0,27027467.0,2227351.0,3800.0,187094.0,113.6,60.22,49.31,4.06,3414.0,110614.0,0.20199999999999999,51.85,54806014.0,81.721,29.1,5.732,3.12,5591.597,6.4,202.104,4.61,6.3,35.2,79.28699999999999,0.9,67.13,0.583,2633.7,21.49,55.05,4193.449258
878,Cape Verde,2022-06-17,16766,,,,,,,CPV,Africa,57808.0,165.0,124.571,402.0,0.0,0.0,102879.33300000001,293.64599999999996,221.696,715.429,0.0,0.0,1.66,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,560.0,1633.3339999999998,0.997,324.0,0.5770000000000001,0.1168,8.6,tests performed,762486.0,355232.0,307398.0,142.0,4461.0,404.0,135.7,63.22,54.71,0.03,719.0,5.0,0.001,19.44,561901.0,135.58,25.7,4.46,3.437,6222.554,0.5,182.21900000000002,2.42,2.1,16.5,2.735,2.1,72.98,0.665,188.6,6.81,13.94,335.6463149
879,Qatar,2022-06-17,80481,7498968.0,10294.0,2558.917,14297.0,4.879,,QAT,Asia,374591.0,442.0,429.42900000000003,678.0,0.0,0.14300000000000002,127823.898,150.826,146.536,231.358,0.0,0.049,1.33,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,7498968.0,10294.0,2558.917,3.513,14297.0,4.879,0.23800000000000002,4.2,tests performed,6933713.0,2639416.0,2639416.0,1654881.0,4802.0,3329.0,236.6,90.07,90.07,56.47,1136.0,544.0,0.019,40.74,2930524.0,227.322,31.9,1.307,0.617,116935.6,0.5,176.69,16.52,0.8,26.9,78.46300000000001,1.2,80.23,0.848,1147.4,22.0,20.31,391.5340738
880,Namibia,2022-06-17,66381,,,,710.0,0.27399999999999997,0.2406,NAM,Africa,168761.0,66.0,170.857,4054.0,0.0,1.714,65225.575,25.509,66.036,1566.858,0.0,0.6629999999999999,0.61,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1050977.0,778.0,406.199,0.301,710.0,0.27399999999999997,0.2406,4.2,tests performed,825518.0,496475.0,426681.0,64392.0,3837.0,127.0,31.91,19.19,16.49,2.49,49.0,1243.0,0.048,23.15,2587344.0,3.0780000000000003,22.0,3.552,2.085,9541.808,13.4,243.81099999999998,3.94,9.7,34.2,44.6,0.9,63.71,0.6459999999999999,2633.7,21.49,55.05,4193.449258
881,Greece,2022-06-17,36179,,,,77156.0,7.44,0.07400000000000001,GRC,Europe,3532260.0,7204.0,5713.143,30070.0,13.0,10.429,340598.416,694.6460000000001,550.89,2899.502,1.254,1.006,1.36,1000.0,11.919,16108.0,238.91299999999998,15.0,1.405,655.0,63.117,83816775.0,73217.0,8082.0380000000005,7.06,77156.0,7.44,0.07400000000000001,13.5,samples tested,21054496.0,7917626.0,7627359.0,6085530.0,2368.0,1543.0,203.02,76.35,73.55,58.68,149.0,94.0,0.001,24.07,10370747.0,83.479,45.3,20.396,14.524000000000001,24574.382,1.5,175.695,4.55,35.3,52.0,41.047,4.21,82.24,0.888,31443.0,10.58,12.88,3031.8934600000002
882,South Sudan,2022-06-17,90580,,,,578.0,0.051,0.0131,SSD,Africa,17697.0,18.0,7.571000000000001,138.0,0.0,0.0,1554.9089999999999,1.5819999999999999,0.665,12.125,0.0,0.0,0.59,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,401608.0,798.0,35.286,0.07,578.0,0.051,0.0131,76.3,tests performed,1059464.0,1009259.0,967199.0,37830478.0,4158.0,11064.0,9.31,8.87,8.5,73.74,972.0,11063.0,0.09699999999999999,16.67,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
883,Saint Vincent and the Grenadines,2022-06-17,83564,,,,42.0,0.377,0.2483,VCT,North America,8956.0,20.0,10.429,110.0,1.0,0.28600000000000003,80489.62400000001,179.745,93.72399999999999,988.595,8.987,2.568,1.06,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108037.0,59.0,970.953,0.53,42.0,0.377,0.2483,4.0,tests performed,71303.0,36679.0,30774.0,3850.0,20.0,3.0,64.08,32.96,27.66,3.46,27.0,6.0,0.005,66.67,111269.0,281.78700000000003,31.8,7.724,4.832,10727.146,56.0,252.675,11.62,4.7,21.0,87.20200000000001,2.6,72.53,0.738,12.2,3.33,8.11,227.8414821
884,Pakistan,2022-06-17,73722,,,,12388.0,0.055,0.0083,PAK,Asia,1531830.0,151.0,102.571,30383.0,0.0,0.28600000000000003,6802.089,0.6709999999999999,0.455,134.916,0.0,0.001,1.55,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28807107.0,31201.0,127.91799999999999,0.139,12388.0,0.055,0.0083,120.8,tests performed,257955368.0,136065930.0,124539559.0,14747807.0,720610.0,718872.0,114.55,60.42,55.3,6.55,3192.0,74026.0,0.033,77.78,225199929.0,255.57299999999998,23.5,4.495,2.78,5034.708,4.0,423.031,8.35,2.8,36.7,59.607,0.6,67.27,0.557,4286.8,18.62,-6.95,820.6952745
885,Israel,2022-06-17,45538,51640224.0,18845.0,5558.090999999999,22178.0,2.387,0.295,ISR,Asia,4220524.0,10960.0,6411.429,10882.0,0.0,2.1430000000000002,454259.391,1179.636,690.069,1171.241,0.0,0.231,1.47,38.0,4.09,847.0,91.163,20.0,2.153,715.0,76.956,51640224.0,18845.0,5558.090999999999,2.028,22178.0,2.387,0.295,3.4,people tested,18171769.0,6711454.0,6143719.0,5316596.0,243.0,867.0,195.58,72.24,66.13,57.22,93.0,66.0,0.001,14.81,9291000.0,402.606,30.6,11.732999999999999,7.359,33132.32,0.5,93.32,6.74,15.4,35.4,94.57600000000001,2.99,82.97,0.919,10022.5,8.92,-9.47,1078.7321060000002
886,Albania,2022-06-17,989,,,,139.0,0.048,0.517,ALB,Europe,277141.0,320.0,71.857,3497.0,0.0,0.0,96466.19099999999,111.384,25.011999999999997,1217.223,0.0,0.0,1.9,,,,,,,,,1611248.0,511.0,560.837,0.17800000000000002,139.0,0.048,0.517,1.9,tests performed,2883079.0,1322864.0,1244383.0,313660.0,2541.0,1129.0,100.35,46.05,43.31,10.92,393.0,186.0,0.006,11.11,2872934.0,104.87100000000001,38.0,13.187999999999999,8.642999999999999,11803.431,1.1,304.195,10.08,7.1,51.2,37.746,2.89,78.57,0.795,16257.3,32.6,-3.38,5658.779492000001
887,Barbados,2022-06-17,7915,,,,522.0,1.814,0.1804,BRB,North America,82730.0,87.0,94.14299999999999,471.0,0.0,0.5710000000000001,287548.48699999996,302.39,327.217,1637.076,0.0,1.986,0.9,50.0,5.529,874.0,96.649,,,,,695574.0,734.0,2417.639,2.551,522.0,1.814,0.1804,5.5,tests performed,315725.0,162464.0,153230.0,29645608.0,2.0,23.0,109.74,56.47,53.26,17.83,80.0,0.0,0.0,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
888,Saint Vincent and the Grenadines,2022-06-18,83565,,,,44.0,0.395,0.237,VCT,North America,8956.0,0.0,10.429,110.0,0.0,0.28600000000000003,80489.62400000001,0.0,93.72399999999999,988.595,0.0,2.568,1.05,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108037.0,59.0,970.953,0.53,44.0,0.395,0.237,4.2,tests performed,71303.0,36679.0,30774.0,3850.0,20.0,7.0,64.08,32.96,27.66,3.46,63.0,7.0,0.006,66.67,111269.0,281.78700000000003,31.8,7.724,4.832,10727.146,56.0,252.675,11.62,4.7,21.0,87.20200000000001,2.6,72.53,0.738,12.2,3.33,8.11,227.8414821
889,Singapore,2022-06-18,86377,,24000.0,,24000.0,4.401,0.1536,SGP,Asia,1364562.0,3782.0,3687.0,1402.0,0.0,0.7140000000000001,250213.07,693.487,676.067,257.078,0.0,0.131,1.2,7.0,1.0190000000000001,118.0,17.172,7.0,1.284,463.0,84.898,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1536,6.5,samples tested,14199619.0,5018008.0,4991233.0,4190378.0,2950.0,2761.0,260.37,92.01,91.52,76.84,506.0,157.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
890,Belgium,2022-06-18,9555,34310862.0,8430.0,2949.611,11340.0,0.975,0.258,BEL,Europe,4187940.0,0.0,2526.857,31856.0,0.0,5.7139999999999995,360025.77,0.0,217.227,2738.573,0.0,0.491,1.6,50.0,4.298,883.0,75.90899999999999,,,487.0,41.86600000000001,34310862.0,8430.0,2949.611,0.725,11340.0,0.975,0.258,3.9,tests performed,25608254.0,9247390.0,9149859.0,7640517.0,5852.0,9185.0,220.15,79.5,78.66,65.68,790.0,88.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
891,Bahamas,2022-06-18,6149,240874.0,,606.867,166.0,0.418,0.2728,BHS,North America,35603.0,39.0,45.286,815.0,0.0,0.429,89699.53199999999,98.258,114.095,2053.342,0.0,1.08,0.96,50.0,5.529,874.0,96.649,,,,,240874.0,567.0,606.867,1.429,166.0,0.418,0.2728,3.7,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
892,Albania,2022-06-18,990,,,,148.0,0.052000000000000005,0.4353,ALB,Europe,277141.0,0.0,64.429,3497.0,0.0,0.0,96466.19099999999,0.0,22.426,1217.223,0.0,0.0,1.92,,,,,,,,,1611248.0,511.0,560.837,0.17800000000000002,148.0,0.052000000000000005,0.4353,2.3,tests performed,2883079.0,1322864.0,1244383.0,313660.0,2541.0,1129.0,100.35,46.05,43.31,10.92,393.0,186.0,0.006,11.11,2872934.0,104.87100000000001,38.0,13.187999999999999,8.642999999999999,11803.431,1.1,304.195,10.08,7.1,51.2,37.746,2.89,78.57,0.795,16257.3,32.6,-3.38,5658.779492000001
893,Austria,2022-06-18,5452,189308093.0,58719.0,20934.047,87877.0,9.718,0.0544,AUT,Europe,4349916.0,0.0,4783.0,19984.0,0.0,3.0,481021.936,0.0,528.913,2209.869,0.0,0.332,1.57,35.0,3.87,534.0,59.051,,,,,189308093.0,58719.0,20934.047,6.492999999999999,87877.0,9.718,0.0544,18.4,tests performed,18399451.0,6830775.0,6623659.0,5296302.0,4140.0,1925.0,203.46,75.54,73.25,58.57,213.0,84.0,0.001,35.19,9043072.0,106.749,44.4,19.202,13.748,45436.685999999994,0.7,145.183,6.35,28.4,30.9,94.04299999999999,7.37,81.54,0.922,17273.6,8.5,6.4,1910.147348
894,Ethiopia,2022-06-18,29939,,,,4111.0,0.035,0.1805,ETH,Africa,483739.0,851.0,742.143,7522.0,0.0,0.857,4103.788,7.218999999999999,6.296,63.813,0.0,0.006999999999999999,1.13,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,4993374.0,4118.0,42.361000000000004,0.035,4111.0,0.035,0.1805,5.5,tests performed,29419678.0,24770491.0,21292024.0,346411.0,159930.0,43258.0,24.96,21.01,18.06,0.29,367.0,329306.0,0.27899999999999997,30.56,117876226.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
895,Mauritius,2022-06-18,61099,,,,12.0,0.009000000000000001,,MUS,Africa,227442.0,0.0,84.429,1000.0,0.0,0.5710000000000001,178606.093,0.0,66.3,785.2819999999999,0.0,0.449,0.24,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282514.0,1362.0,1007.135,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2551638.0,977183.0,944658.0,620077.0,35153.0,215.0,200.38,76.74,74.18,48.69,169.0,30.0,0.002,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
896,Czechia,2022-06-18,24134,54573004.0,1850.0,5088.604,3763.0,0.35100000000000003,0.08800000000000001,CZE,Europe,3925291.0,123.0,331.85699999999997,40307.0,0.0,0.857,366009.75399999996,11.469000000000001,30.944000000000003,3758.385,0.0,0.08,1.3,5.0,0.466,87.0,8.112,5.0,0.466,106.0,9.884,54573004.0,1850.0,5088.604,0.17300000000000001,3763.0,0.35100000000000003,0.08800000000000001,11.4,tests performed,17660466.0,6964706.0,6878363.0,4227916.0,162.0,1068.0,164.67,64.94,64.14,39.42,100.0,64.0,0.001,14.81,10724553.0,137.17600000000002,43.3,19.027,11.58,32605.906000000003,0.7,227.485,6.82,30.5,38.3,85.198,6.63,79.38,0.9,42100.6,15.74,5.93,3925.6274829999998
897,Ireland,2022-06-18,44684,12321223.0,4912.0,2472.699,4836.0,0.971,0.29,IRL,Europe,1578284.0,0.0,1109.286,7442.0,0.0,3.714,316739.797,0.0,222.618,1493.507,0.0,0.745,0.9,27.0,5.419,537.0,107.76799999999999,13.0,2.597,422.0,84.693,12321223.0,4912.0,2472.699,0.986,4836.0,0.971,0.29,3.4,tests performed,10964944.0,4089932.0,4041463.0,3074313.0,1219.0,1321.0,220.05,82.08,81.11,61.7,265.0,82.0,0.002,11.11,4982904.0,69.874,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,82.3,0.955,3219.2,4.29,15.34,646.0489706000001
898,Finland,2022-06-18,31734,11032124.0,2609.0,1988.3570000000002,4032.0,0.727,0.313,FIN,Europe,1125342.0,0.0,1538.4289999999999,4771.0,0.0,8.142999999999999,202824.22100000002,0.0,277.276,859.8939999999999,0.0,1.4680000000000002,1.24,13.0,2.343,351.0,63.262,3.0,2.256,79.0,59.395,11032124.0,2609.0,1988.3570000000002,0.47,4032.0,0.727,0.313,3.2,tests performed,12116461.0,4515765.0,4331885.0,3268811.0,5922.0,5746.0,218.38,81.39,78.08,58.91,1036.0,126.0,0.002,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
899,Burundi,2022-06-18,14639,,,,1442.0,0.11800000000000001,0.0149,BDI,Africa,42398.0,0.0,21.429000000000002,38.0,0.0,0.0,3459.528,0.0,1.7480000000000002,3.1010000000000004,0.0,0.0,0.89,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1609334.0,3281.0,131.316,0.268,1442.0,0.11800000000000001,0.0149,67.3,tests performed,16232.0,14388.0,13811.0,768430.0,93.0,39.0,0.13,0.12,0.11,11.14,3.0,39.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
900,Fiji,2022-06-18,30887,,,,732.0,0.8109999999999999,,FJI,Oceania,65268.0,0.0,15.571,865.0,0.0,0.14300000000000002,72287.155,0.0,17.246,958.025,0.0,0.158,1.56,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,551345.0,567.0,610.639,0.628,732.0,0.8109999999999999,0.6621,1.5,tests performed,1608898.0,706129.0,634685.0,134042.0,28295.0,57.0,178.19,78.21,70.29,14.85,63.0,25.0,0.003,57.41,902899.0,49.562,28.6,6.224,3.284,8702.975,1.4,412.82,14.49,10.2,34.8,7.96,2.3,67.44,0.743,-38.6,-3.8,10.79,-786.903961
901,New Zealand,2022-06-18,68854,,,,3411.0,0.665,,NZL,Oceania,1273389.0,3350.0,5058.571,1329.0,5.0,9.714,248403.137,653.493,986.788,259.251,0.975,1.895,0.95,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,7242169.0,1761.0,1412.7479999999998,0.344,3411.0,0.665,0.685,1.5,tests performed,11109086.0,4291958.0,4110524.0,2706604.0,1852.0,1341.0,216.71,83.72,80.19,52.8,262.0,81.0,0.002,26.85,5126300.0,18.206,37.9,15.322000000000001,9.72,36085.843,15.0,128.797,8.08,14.8,17.2,47.782,2.61,82.29,0.9309999999999999,-1746.4,-2.07,9.86,-340.6745606
902,Switzerland,2022-06-18,94424,21263412.0,6992.0,2439.725,9136.0,1.048,0.387,CHE,Europe,3701895.0,0.0,2373.429,13817.0,0.0,0.429,424748.729,0.0,272.323,1585.338,0.0,0.049,1.17,25.0,2.8680000000000003,492.0,56.451,241.0,5.156000000000001,220.0,25.241999999999997,21263412.0,6992.0,2439.725,0.802,9136.0,1.048,0.387,2.6,tests performed,15747122.0,6087219.0,6001664.0,3773104.0,639.0,1384.0,180.68,69.84,68.86,43.29,159.0,89.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
903,Guinea,2022-06-18,37945,,,,1040.0,0.077,0.0,GIN,Africa,36817.0,0.0,0.0,442.0,0.0,0.0,2727.743,0.0,0.0,32.747,0.0,0.0,0.01,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,701242.0,10381.0,51.95399999999999,0.569,1040.0,0.077,0.0,72.1,tests performed,6127699.0,4477740.0,2511039.0,39278.0,522.0,8187.0,45.4,33.18,18.6,61.97,607.0,2120.0,0.016,49.07,13497237.0,51.755,19.0,3.135,1.733,1998.9260000000002,35.3,336.717,2.42,35.3,52.0,17.45,0.3,61.6,0.47700000000000004,43113.3,25.35,10.04,2362.38969
904,Bulgaria,2022-06-18,14423,,,,3075.0,0.446,0.0546,BGR,Europe,1168035.0,121.0,168.0,37224.0,1.0,4.0,169362.539,17.545,24.36,5397.399,0.145,0.58,1.24,26.0,3.77,246.0,35.669000000000004,,,760.0,65.335,10058480.0,4881.0,1458.4579999999999,0.708,3075.0,0.446,0.0546,18.3,tests performed,4404806.0,2090864.0,2060931.0,762077.0,19.0,293.0,63.87,30.32,29.88,11.05,42.0,58.0,0.001,11.11,6896655.0,65.18,44.7,20.801,13.272,18563.307,1.5,424.68800000000005,5.81,30.1,44.4,97.164,7.454,75.05,0.816,66889.5,26.21,-5.49,9698.83226
905,Chile,2022-06-18,17926,39554979.0,79600.0,2058.83,70951.0,3.693,0.1479,CHL,South America,3882425.0,11678.0,10493.571000000002,58226.0,32.0,21.429000000000002,202079.526,607.8380000000001,546.189,3030.653,1.666,1.115,1.04,168.0,8.744,3505.0,92.072,98.0,5.101,852.0,44.346000000000004,39554979.0,79600.0,2058.83,4.143,70951.0,3.693,0.1479,6.8,tests performed,58728914.0,17991881.0,17563227.0,23748523.0,28929.0,82325.0,305.68,93.65,91.42,123.61,4285.0,1311.0,0.006999999999999999,27.31,19212362.0,24.281999999999996,35.4,11.087,6.938,22767.037,1.3,127.993,8.46,34.2,41.5,5.818,2.11,80.18,0.851,51537.3,19.01,15.69,2682.507232
906,Lesotho,2022-06-18,52644,,,,204.0,0.094,0.0,LSO,Africa,33746.0,0.0,0.0,699.0,0.0,0.0,15629.899,0.0,0.0,323.751,0.0,0.0,0.25,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,458609.0,553.0,212.41099999999997,0.256,204.0,0.094,0.0,21.6,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
907,Malawi,2022-06-18,57343,,,,236.0,0.012,0.0678,MWI,Africa,86202.0,13.0,16.0,2643.0,0.0,0.14300000000000002,4387.388,0.662,0.8140000000000001,134.52,0.0,0.006999999999999999,1.37,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,587353.0,490.0,29.894000000000002,0.025,236.0,0.012,0.0678,14.8,tests performed,2166402.0,2047317.0,1590299.0,740.0,14163.0,0.0,11.03,10.42,8.09,0.0,0.0,64387.0,0.32799999999999996,47.22,19647681.0,197.519,18.1,2.9789999999999996,1.7830000000000001,1095.042,71.4,227.34900000000002,3.94,4.4,24.7,8.704,1.3,64.26,0.483,413.4,8.35,22.9,627.8943667000001
908,Mozambique,2022-06-18,64759,,,,618.0,0.019,0.1514,MOZ,Africa,227083.0,108.0,93.571,2209.0,0.0,0.429,7060.37,3.358,2.909,68.681,0.0,0.013000000000000001,1.23,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1336051.0,939.0,41.54,0.028999999999999998,618.0,0.019,0.1514,6.6,tests performed,31616078.0,14978771.0,14098645.0,353032.0,295812.0,0.0,98.3,46.57,43.83,1.1,0.0,0.0,0.0,28.7,32163045.0,37.728,17.7,3.158,1.87,1136.103,62.9,329.94199999999995,3.3,5.1,29.1,12.227,0.7,60.85,0.456,2633.7,21.49,55.05,4193.449258
909,Qatar,2022-06-18,80482,7513530.0,14562.0,2563.886,14197.0,4.845,,QAT,Asia,374923.0,332.0,439.57099999999997,678.0,0.0,0.14300000000000002,127937.18800000001,113.29,149.998,231.358,0.0,0.049,1.34,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,7513530.0,14562.0,2563.886,4.968999999999999,14197.0,4.845,0.23800000000000002,4.2,tests performed,6933713.0,2639416.0,2639416.0,1654881.0,4802.0,3344.0,236.6,90.07,90.07,56.47,1141.0,550.0,0.019,40.74,2930524.0,227.322,31.9,1.307,0.617,116935.6,0.5,176.69,16.52,0.8,26.9,78.46300000000001,1.2,80.23,0.848,1147.4,22.0,20.31,391.5340738
910,South Sudan,2022-06-18,90581,,,,578.0,0.051,0.0131,SSD,Africa,17697.0,0.0,7.571000000000001,138.0,0.0,0.0,1554.9089999999999,0.0,0.665,12.125,0.0,0.0,0.57,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,401608.0,798.0,35.286,0.07,578.0,0.051,0.0131,76.3,tests performed,1059464.0,1009259.0,967199.0,37830478.0,4158.0,11064.0,9.31,8.87,8.5,73.74,972.0,11063.0,0.09699999999999999,16.67,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
911,France,2022-06-18,32503,278234000.0,179427.0,4126.754,201691.0,2.991,0.22699999999999998,FRA,Europe,30139875.0,0.0,47453.71400000001,149108.0,0.0,41.428999999999995,447033.23799999995,0.0,703.831,2211.563,0.0,0.614,1.2,829.0,12.296,13876.0,205.808,381.0,5.651,3579.0,53.083999999999996,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,145304381.0,54450221.0,52888969.0,39045418.0,17726.0,38295.0,215.51,80.76,78.44,57.91,568.0,1037.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
912,Denmark,2022-06-18,25109,64618345.0,4783.0,11115.601,6463.0,1.112,0.1593,DNK,Europe,3150599.0,0.0,1029.5710000000001,6421.0,0.0,2.4290000000000003,541963.7579999999,0.0,177.106,1104.536,0.0,0.418,1.42,6.0,1.032,225.0,38.704,10.0,0.932,297.0,51.09,64618345.0,4783.0,11115.601,0.823,6463.0,1.112,0.1593,6.3,tests performed,13218443.0,4829533.0,4792688.0,3643012.0,138.0,685.0,227.38,83.08,82.44,62.67,118.0,39.0,0.001,11.11,5813302.0,136.52,42.3,19.677,12.325,46682.515,0.2,114.76700000000001,6.41,19.3,18.8,4.4719999999999995,2.5,80.9,0.94,1780.7,1.29,0.54,306.3147244
913,Puerto Rico,2022-06-18,80029,3019115.0,930.0,1067.487,2884.0,1.02,,PRI,North America,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3019115.0,930.0,1067.487,0.32899999999999996,2884.0,1.02,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
914,Sweden,2022-06-18,93666,18405168.0,2417.0,1811.504,2385.0,0.235,,SWE,Europe,2512853.0,0.0,274.714,19075.0,0.0,3.714,247324.181,0.0,27.038,1877.431,0.0,0.366,0.5,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18405168.0,2417.0,1811.504,0.23800000000000002,2385.0,0.235,0.1183,8.5,tests performed,22631019.0,7837623.0,7649569.0,5426959.0,398.0,6638.0,222.74,77.14,75.29,53.41,653.0,145.0,0.001,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
915,Vietnam,2022-06-18,105097,,,,552.0,0.006,,VNM,Asia,10737107.0,699.0,837.571,43083.0,0.0,0.0,109373.89300000001,7.12,8.532,438.866,0.0,0.0,0.87,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85819388.0,56715.0,874.202,0.578,552.0,0.006,0.9523,1.1,people tested,225650647.0,85506332.0,79763349.0,60380966.0,394772.0,305565.0,229.86,87.1,81.25,61.51,3113.0,64649.0,0.066,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
916,India,2022-06-18,41920,857395276.0,484924.0,615.322,407428.0,0.292,0.0262,IND,Asia,43296692.0,12899.0,10667.857,524855.0,15.0,13.429,31072.493,9.257,7.656000000000001,376.67,0.011000000000000001,0.01,1.45,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,857395276.0,484924.0,615.322,0.348,407428.0,0.292,0.0262,38.2,samples tested,1959268288.0,1014571652.0,905029095.0,39667541.0,1623721.0,1536534.0,140.61,72.81,64.95,2.85,1103.0,182202.0,0.013000000000000001,37.04,1393409033.0,450.41900000000004,28.2,5.989,3.4139999999999997,6426.674,21.2,282.28,10.39,1.9,20.6,59.55,0.53,69.66,0.645,213.9,4.1,13.64,580.0017353999999
917,Guinea-Bissau,2022-06-18,38048,,,,218.0,0.10800000000000001,0.0013,GNB,Africa,8307.0,0.0,0.28600000000000003,171.0,0.0,0.0,4121.5779999999995,0.0,0.142,84.84299999999999,0.0,0.0,0.31,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,141581.0,390.0,70.24600000000001,0.19399999999999998,218.0,0.10800000000000001,0.0013,762.2,tests performed,562717.0,529346.0,341781.0,81.0,1658.0,718.0,27.92,26.26,16.96,0.0,356.0,18.0,0.001,49.07,2015490.0,66.191,19.4,3.002,1.565,1548.675,67.1,382.474,2.42,35.3,52.0,6.403,0.3,58.32,0.48,43113.3,25.35,10.04,2362.38969
918,Sao Tome and Principe,2022-06-18,83637,,,,99.0,0.44299999999999995,0.0101,STP,Africa,6010.0,0.0,1.0,73.0,0.0,0.0,26906.752999999997,0.0,4.477,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,3927.0,473.0,17.581,2.1180000000000003,99.0,0.44299999999999995,0.0101,99.0,tests performed,214560.0,123088.0,91836.0,17869.0,9.0,204.0,96.06,55.11,41.11,8.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
919,Netherlands,2022-06-18,68012,30677471.0,3873.0,1786.368,4372.0,0.255,0.6759999999999999,NLD,Europe,8132678.0,0.0,2927.143,22429.0,0.0,1.571,473570.924,0.0,170.449,1306.055,0.0,0.092,1.51,23.0,1.339,436.0,25.389,29.0,1.689,361.0,21.021,30677471.0,3873.0,1786.368,0.226,4372.0,0.255,0.6759999999999999,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
920,Taiwan,2022-06-18,95399,12761345.0,66743.0,534.955,74549.0,3.125,0.7718,TWN,Asia,3244453.0,53666.0,57536.71400000001,5049.0,181.0,148.714,136007.207,2249.674,2411.9339999999997,211.65400000000002,7.587999999999999,6.234,0.89,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,12761345.0,66743.0,534.955,2.798,74549.0,3.125,0.7718,1.3,people tested,56748727.0,21143972.0,19160571.0,16444184.0,152136.0,77825.0,237.89,88.64,80.32,68.93,3262.0,5514.0,0.023,26.85,23855008.0,214.243,42.2,18.436,8.353,57410.166,0.5,103.95700000000001,5.59,22.6,28.9,70.598,1.5,80.46,0.5670000000000001,-1625.5,-0.37,15.75,-68.14082812
921,Suriname,2022-06-18,92942,,,,26.0,0.044000000000000004,,SUR,South America,80766.0,0.0,13.286,1355.0,0.0,0.429,136475.622,0.0,22.45,2289.633,0.0,0.7240000000000001,0.99,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,84019.0,198.0,141.972,0.335,26.0,0.044000000000000004,0.508,2.0,tests performed,505699.0,267820.0,237879.0,48889.0,398.0,14.0,85.45,45.26,40.2,8.26,24.0,6.0,0.001,44.44,591798.0,3.612,29.6,6.933,4.229,13767.118999999999,0.7,258.314,12.54,7.4,42.9,67.779,3.1,71.68,0.738,48.2,1.23,14.57,81.44670986
922,Croatia,2022-06-18,21871,,,,1738.0,0.426,0.159,HRV,Europe,1141546.0,431.0,276.286,16027.0,3.0,1.571,279677.102,105.594,67.69,3926.592,0.735,0.385,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,4912067.0,5587.0,1203.4489999999998,1.369,1738.0,0.426,0.159,6.3,people tested,5256560.0,2315202.0,2244697.0,594785.0,9.0,144.0,128.78,56.72,54.99,14.57,35.0,27.0,0.001,14.81,4081657.0,73.726,44.0,19.724,13.052999999999999,22669.797000000002,0.7,253.782,5.59,34.3,39.9,19.351,5.54,78.49,0.851,19749.3,16.18,-5.95,4838.549638
923,Ghana,2022-06-18,35310,,,,850.0,0.027000000000000003,0.2506,GHA,Africa,163332.0,0.0,213.0,1445.0,0.0,0.0,5147.212,0.0,6.712000000000001,45.537,0.0,0.0,0.99,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2458238.0,2208.0,77.468,0.07,850.0,0.027000000000000003,0.2506,4.0,tests performed,16203630.0,9786631.0,6410470.0,570557.0,60270.0,106898.0,51.06,30.84,20.2,1.8,3369.0,26922.0,0.085,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
924,Mali,2022-06-18,59089,,,,434.0,0.021,0.0049,MLI,Africa,31137.0,1.0,2.1430000000000002,736.0,0.0,0.14300000000000002,1492.971,0.048,0.10300000000000001,35.29,0.0,0.006999999999999999,0.87,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,704711.0,605.0,33.79,0.028999999999999998,434.0,0.021,0.0049,202.5,tests performed,2308245.0,1695963.0,1245359.0,161938.0,1683.0,7053.0,11.07,8.13,5.97,29.79,338.0,6112.0,0.028999999999999998,40.74,20855724.0,15.196,16.4,2.519,1.486,2014.306,0.1,268.024,2.42,1.6,23.0,52.232,0.1,59.31,0.434,160.6,14.41,3.78,295.42695269999996
925,Japan,2022-06-18,48078,53112020.0,60957.0,421.35400000000004,213746.0,1.696,0.0656,JPN,Asia,9124454.0,14822.0,14024.714,31019.0,20.0,20.0,72387.119,117.588,111.262,246.083,0.159,0.159,0.9,302.0,2.396,5237.0,41.547,259.0,4.29,2964.0,49.099,53112020.0,60957.0,421.35400000000004,0.484,213746.0,1.696,0.0656,15.2,people tested,283763548.0,103696019.0,102280671.0,77786858.0,233830.0,115784.0,225.12,82.27,81.14,61.71,919.0,4927.0,0.004,39.81,126050796.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
926,Central African Republic,2022-06-18,16948,,,,131.0,0.027000000000000003,0.0,CAF,Africa,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,93621.0,2691.0,19.029,40.467,131.0,0.027000000000000003,0.0,1.8,tests performed,1193681.0,1101130.0,1044746.0,23536.0,12887.0,1694.0,24.26,22.38,21.23,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
927,Cameroon,2022-06-18,15136,,,,608.0,0.022000000000000002,0.0,CMR,Africa,119947.0,0.0,0.0,1930.0,0.0,0.0,4405.8859999999995,0.0,0.0,70.893,0.0,0.0,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2717815.0,3334.0,99.831,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1837626.0,1558744.0,1215532.0,52011.0,9890.0,92.0,6.75,5.73,4.46,0.19,3.0,76.0,0.0,30.56,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
928,Azerbaijan,2022-06-18,5874,,,,2341.0,0.22899999999999998,0.0122,AZE,Asia,792985.0,26.0,28.570999999999998,9716.0,1.0,0.429,77566.108,2.543,2.795,950.3739999999999,0.098,0.042,0.74,50.0,5.529,874.0,96.649,,,,,6901005.0,6872.0,675.0239999999999,0.672,2341.0,0.22899999999999998,0.0122,81.9,tests performed,13752122.0,5352065.0,4852083.0,3299954.0,1522.0,1492.0,134.52,52.35,47.46,32.28,146.0,219.0,0.002,36.11,10223344.0,119.309,32.4,6.018,3.8710000000000004,15847.419,0.7,559.812,7.11,0.3,42.5,83.241,4.7,73.0,0.7559999999999999,43744.8,33.01,2.0,4278.913044
929,Gabon,2022-06-18,32844,,,,113.0,0.05,0.0392,GAB,Africa,47742.0,0.0,4.428999999999999,304.0,0.0,0.0,20950.234,0.0,1.943,133.40200000000002,0.0,0.0,0.12,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1598993.0,2256.0,701.673,0.99,113.0,0.05,0.0392,25.5,tests performed,566886.0,308489.0,256088.0,2309.0,1486.0,32.0,24.88,13.54,11.24,0.1,14.0,18.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
930,Slovakia,2022-06-18,87214,51229252.0,922.0,9401.122,2149.0,0.39399999999999996,0.1,SVK,Europe,2546134.0,255.0,208.0,20130.0,4.0,2.286,467243.135,46.795,38.17,3694.073,0.7340000000000001,0.419,1.17,6.0,1.101,145.0,26.609,21.0,3.8510000000000004,976.0,178.96400000000003,51229252.0,922.0,9401.122,0.16899999999999998,2149.0,0.39399999999999996,0.1,10.0,tests performed,7074772.0,2822238.0,2768338.0,1652520.0,2675.0,110.0,129.83,51.79,50.8,30.33,20.0,15.0,0.0,11.11,5449270.0,113.12799999999999,41.2,15.07,9.167,30155.152000000002,0.7,287.959,7.29,23.1,37.7,19.275,5.82,77.54,0.86,26567.1,20.98,1.28,4875.350276
931,Trinidad and Tobago,2022-06-18,98008,765211.0,1023.0,545.265,830.0,0.591,0.20600000000000002,TTO,North America,165706.0,106.0,171.429,3977.0,4.0,2.571,118076.86300000001,75.532,122.155,2833.885,2.85,1.8319999999999999,0.75,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,765211.0,1023.0,545.265,0.7290000000000001,830.0,0.591,0.20600000000000002,4.9,people tested,1569406.0,750796.0,713324.0,162615.0,366.0,241.0,111.83,53.5,50.83,11.59,172.0,50.0,0.004,13.89,1403374.0,266.88599999999997,36.2,10.014,5.819,28763.071,49.2,228.467,10.97,11.8,44.4,89.443,3.0,73.51,0.7959999999999999,97687.9,8.02,19.55,1396.5221060000001
932,Democratic Republic of Congo,2022-06-18,24237,,,,708.0,0.008,0.0,COD,Africa,89932.0,0.0,0.0,1345.0,0.0,0.0,973.5219999999999,0.0,0.0,14.56,0.0,0.0,0.47,8.0,0.746,191.0,17.81,10.0,0.932,238.0,22.191999999999997,1039170.0,4000.0,11.249,0.373,708.0,0.008,0.0,6.6,tests performed,2952125.0,2416650.0,1710177.0,4240912.0,42303.0,40168.0,3.2,2.62,1.85,39.54,435.0,40168.0,0.043,31.48,92377986.0,35.879,17.0,3.02,1.745,808.133,77.1,318.949,6.1,30.5,38.3,4.4719999999999995,6.63,60.68,0.48,42100.6,15.74,5.93,3925.6274829999998
933,Dominican Republic,2022-06-18,26106,,,,4790.0,0.43700000000000006,0.154,DOM,North America,595927.0,0.0,737.571,4382.0,0.0,0.28600000000000003,54404.10400000001,0.0,67.335,400.04699999999997,0.0,0.026000000000000002,1.37,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3414919.0,3731.0,311.759,0.341,4790.0,0.43700000000000006,0.154,6.5,samples tested,15731950.0,7230664.0,5991859.0,2367838.0,2046.0,3304.0,143.62,66.01,54.7,21.62,302.0,501.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
934,Mauritania,2022-06-18,60991,,,,656.0,0.13699999999999998,0.012,MRT,Africa,59293.0,4.0,7.857,982.0,0.0,0.0,12417.096000000001,0.838,1.645,205.65,0.0,0.0,1.15,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,993570.0,1362.0,208.07299999999998,0.285,656.0,0.13699999999999998,0.012,83.5,tests performed,2845889.0,1924472.0,1332013.0,215488.0,3777.0,322.0,59.6,40.3,27.89,4.51,67.0,100.0,0.002,43.52,4775110.0,4.289,20.3,3.138,1.7919999999999998,3597.633,6.0,232.347,2.42,20.9,30.2,15.95,2.7,64.92,0.546,539.8,5.7,-1.02,1045.921333
935,Norway,2022-06-18,72802,11149027.0,714.0,2039.8429999999998,1650.0,0.302,0.22699999999999998,NOR,Europe,1439656.0,248.0,413.85699999999997,3250.0,0.0,5.7139999999999995,263401.705,45.373999999999995,75.72,594.625,0.0,1.045,1.32,41.0,2.387,467.0,85.443,7.0,1.298,146.0,26.709,11149027.0,714.0,2039.8429999999998,0.131,1650.0,0.302,0.22699999999999998,4.4,people tested,11393203.0,4340948.0,4044972.0,3007283.0,143.0,1330.0,208.45,79.42,74.01,55.02,243.0,87.0,0.002,11.11,5465629.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
936,Barbados,2022-06-18,7916,697476.0,,2424.25,507.0,1.7619999999999998,0.1812,BRB,North America,82826.0,96.0,91.85700000000001,471.0,0.0,0.5710000000000001,287882.158,333.67199999999997,319.272,1637.076,0.0,1.986,0.91,50.0,5.529,874.0,96.649,,,,,697476.0,734.0,2424.25,2.551,507.0,1.7619999999999998,0.1812,5.5,tests performed,315725.0,162464.0,153231.0,29645608.0,2.0,23.0,109.74,56.47,53.26,17.83,80.0,0.0,0.0,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
937,Kenya,2022-06-18,50120,,,,2696.0,0.049,0.1256,KEN,Africa,329107.0,398.0,338.57099999999997,5651.0,0.0,0.0,5985.32,7.2379999999999995,6.157,102.772,0.0,0.0,1.42,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3706945.0,2868.0,67.417,0.052000000000000005,2696.0,0.049,0.1256,8.0,tests performed,18367309.0,12576597.0,9223230.0,335015.0,13702.0,12048.0,33.4,22.87,16.77,0.61,219.0,4649.0,0.008,37.04,54985702.0,87.324,20.0,2.6860000000000004,1.528,2993.028,36.8,218.637,2.92,1.2,20.4,24.651,1.4,66.7,0.601,83124.6,26.77,-14.32,4376.140237
938,Afghanistan,2022-06-18,140,,,,435.0,0.011000000000000001,0.2332,AFG,Asia,181574.0,40.0,101.429,7713.0,0.0,0.5710000000000001,4558.103,1.004,2.546,193.622,0.0,0.013999999999999999,1.18,,,,,,,,,981844.0,,24.648000000000003,,435.0,0.011000000000000001,0.2332,4.3,tests performed,6295222.0,5573175.0,4923085.0,,383.0,9380.0,15.8,13.99,12.36,,235.0,8770.0,0.022000000000000002,11.11,39835428.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
939,United Arab Emirates,2022-06-18,101612,167032108.0,324877.0,16718.118000000002,278699.0,27.895,0.0049,ARE,Asia,925898.0,1464.0,1378.714,2308.0,2.0,0.429,92672.436,146.531,137.994,231.00599999999997,0.2,0.043,1.33,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,167032108.0,324877.0,16718.118000000002,32.516999999999996,278699.0,27.895,0.0049,202.1,tests performed,24909327.0,9991089.0,9792266.0,5125972.0,6152.0,795.0,249.32,100.0,98.01,51.31,80.0,0.0,0.0,37.96,9991083.0,112.44200000000001,34.0,1.1440000000000001,0.526,67293.483,0.1,317.84,17.26,1.2,37.4,21.221999999999998,1.2,77.97,0.89,179972.2,14.89,1.92,4140.449928
940,Chad,2022-06-18,17106,,,,123.0,0.006999999999999999,0.0023,TCD,Africa,7420.0,0.0,0.28600000000000003,193.0,0.0,0.0,438.664,0.0,0.017,11.41,0.0,0.0,0.34,220.0,5.779,3505.0,92.072,,,760.0,65.335,218102.0,2691.0,12.894,40.467,123.0,0.006999999999999999,0.0023,430.1,tests performed,2355126.0,2216437.0,2091466.0,23536.0,12887.0,72.0,13.92,13.1,12.36,35.39,4.0,147.0,0.001,37.96,16914985.0,11.833,16.7,2.4859999999999998,1.446,1768.1529999999998,38.4,280.995,6.1,2.1,16.5,5.818,1.0,54.24,0.39799999999999996,188.6,6.81,13.94,335.6463149
941,Luxembourg,2022-06-18,55748,4295166.0,1478.0,6766.023,1656.0,2.609,0.353,LUX,Europe,254865.0,0.0,427.42900000000003,1084.0,0.0,0.0,401479.804,0.0,673.313,1707.5870000000002,0.0,0.0,1.42,2.0,3.1510000000000002,21.0,33.080999999999996,10.0,5.282,1.0,1.575,4295166.0,1478.0,6766.023,2.3280000000000003,1656.0,2.609,0.353,2.8,tests performed,1302018.0,481222.0,37870.0,388510.0,122.0,223.0,205.1,75.81,5.97,61.2,351.0,11.0,0.002,19.44,634814.0,231.447,39.7,14.312000000000001,9.842,94277.965,0.2,128.275,4.42,20.9,26.0,1.188,4.51,82.25,0.9159999999999999,-48.9,-0.46,7.27,-77.03043726
942,Serbia,2022-06-18,86123,9825885.0,4882.0,1429.9379999999999,6138.0,0.893,0.0484,SRB,Europe,2022252.0,326.0,297.0,16108.0,2.0,1.286,294293.55600000004,47.442,43.222,2344.159,0.29100000000000004,0.187,1.25,9.0,1.31,77.0,11.206,9.0,1.669,7292.0,49.975,9825885.0,4882.0,1429.9379999999999,0.71,6138.0,0.893,0.0484,20.7,people tested,8533114.0,3353655.0,3277747.0,1901712.0,221.0,181.0,124.18,48.8,47.7,27.68,26.0,46.0,0.001,11.11,6871547.0,80.291,41.2,17.366,1.796,14048.881000000001,38.0,439.415,10.08,37.7,40.2,97.719,5.609,76.0,0.8059999999999999,58394.0,24.45,1.98,8497.940857
943,Rwanda,2022-06-18,82834,5510555.0,4375.0,415.06,4334.0,0.326,0.006999999999999999,RWA,Africa,130531.0,21.0,30.285999999999998,1459.0,0.0,0.0,9831.72,1.5819999999999999,2.281,109.89299999999999,0.0,0.0,1.27,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5510555.0,4375.0,415.06,0.33,4334.0,0.326,0.006999999999999999,143.1,samples tested,22214312.0,9061143.0,8527099.0,4626070.0,211071.0,7495.0,167.32,68.25,64.23,34.84,565.0,733.0,0.006,66.67,13276517.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,69.02,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
944,Australia,2022-06-18,4639,73121700.0,60141.0,2835.469,61372.0,2.38,0.17300000000000001,AUS,Oceania,7801241.0,22598.0,26733.429,9372.0,40.0,46.286,302511.841,876.2919999999999,1036.653,363.42199999999997,1.551,1.795,0.99,111.0,4.303999999999999,2905.0,112.648,,,,,73121700.0,60141.0,2835.469,2.332,61372.0,2.38,0.17300000000000001,5.8,tests performed,57812219.0,22339650.0,21649102.0,13823467.0,5543.0,7966.0,224.18,86.63,83.95,53.6,309.0,1236.0,0.005,13.89,25788217.0,3.202,37.9,15.504000000000001,10.129,44648.71,0.5,107.791,5.07,13.0,16.5,94.04299999999999,3.84,83.44,0.9440000000000001,4853.0,1.35,8.37,188.1867211
945,Slovenia,2022-06-18,88086,5322387.0,1406.0,2560.4120000000003,3032.0,1.459,0.13,SVN,Europe,1030354.0,0.0,361.85699999999997,6646.0,0.0,0.28600000000000003,495666.811,0.0,174.077,3197.155,0.0,0.13699999999999998,1.32,6.0,2.886,53.0,25.496,2.0,0.948,29.0,13.751,5322387.0,1406.0,2560.4120000000003,0.6759999999999999,3032.0,1.459,0.13,7.7,tests performed,2995121.0,1265699.0,1222001.0,656618.0,102.0,80.0,144.08,60.89,58.79,31.59,38.0,6.0,0.0,11.11,2078723.0,102.619,44.5,19.062,12.93,31400.84,0.7,153.493,7.25,20.1,25.0,19.275,4.5,81.32,0.917,5202.5,10.13,-6.54,2502.73846
946,Namibia,2022-06-18,66382,,,,698.0,0.27,0.1087,NAM,Africa,168851.0,90.0,75.857,4056.0,2.0,1.143,65260.36,34.785,29.319000000000003,1567.631,0.773,0.442,0.59,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1050977.0,778.0,406.199,0.301,698.0,0.27,0.1087,9.2,tests performed,825518.0,496475.0,426681.0,64392.0,3837.0,127.0,31.91,19.19,16.49,2.49,49.0,1243.0,0.048,23.15,2587344.0,3.0780000000000003,22.0,3.552,2.085,9541.808,13.4,243.81099999999998,3.94,9.7,34.2,44.6,0.9,63.71,0.6459999999999999,2633.7,21.49,55.05,4193.449258
947,Uganda,2022-06-18,100055,,,,1464.0,0.031,0.0671,UGA,Africa,166809.0,84.0,98.286,3614.0,1.0,1.714,3539.824,1.7830000000000001,2.086,76.692,0.021,0.036000000000000004,0.76,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,2729243.0,10103.0,57.917,0.214,1464.0,0.031,0.0671,14.9,tests performed,21268120.0,15896844.0,10790397.0,74990.0,134275.0,15895.0,45.13,33.73,22.9,0.16,337.0,9702.0,0.021,28.7,47123533.0,213.75900000000001,16.4,2.168,1.308,1697.707,41.6,213.333,2.5,3.4,16.7,21.221999999999998,0.5,63.37,0.544,20481.6,16.84,40.84,1715.9856710000001
948,Jamaica,2022-06-18,47210,1122493.0,,377.504,1217.0,0.409,0.1295,JAM,North America,141306.0,0.0,157.571,3093.0,0.0,1.571,47522.383,0.0,52.993,1040.202,0.0,0.528,0.85,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1122493.0,2223.0,377.504,0.748,1217.0,0.409,0.1295,7.7,samples tested,1452176.0,809323.0,705188.0,41747.0,677.0,565.0,48.84,27.22,23.72,1.4,190.0,293.0,0.01,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
949,Ecuador,2022-06-18,26936,2870685.0,2817.0,160.477,4020.0,0.225,0.271,ECU,South America,896483.0,0.0,1286.4289999999999,35693.0,0.0,5.857,50115.119000000006,0.0,71.914,1995.307,0.0,0.327,0.98,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2870685.0,2817.0,160.477,0.157,4020.0,0.225,0.271,3.7,people tested,35687504.0,15182240.0,14004302.0,7064576.0,4808.0,20902.0,199.5,84.87,78.29,39.49,1168.0,878.0,0.005,75.0,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
950,Saint Kitts and Nevis,2022-06-18,83181,,,,565.0,10.552,0.019,KNA,North America,5899.0,0.0,10.714,43.0,0.0,0.0,110166.959,0.0,200.095,803.048,0.0,0.0,1.14,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,90175.0,87.0,1684.066,1.625,565.0,10.552,0.019,52.7,people tested,60467.0,31162.0,26294.0,3011.0,626.0,18.0,112.93,58.2,49.11,5.62,336.0,9.0,0.017,66.67,53546.0,212.865,20.3,2.9739999999999998,1.642,24654.385,56.0,191.375,12.84,4.7,21.0,4.617,2.3,76.23,0.779,12.2,3.33,8.11,227.8414821
951,Estonia,2022-06-18,29005,3421729.0,606.0,2582.071,971.0,0.733,0.1234,EST,Europe,578494.0,0.0,119.85700000000001,2586.0,0.0,1.714,436537.30600000004,0.0,90.445,1951.421,0.0,1.294,1.15,5.0,3.773,72.0,54.332,1.0,0.752,62.0,46.614,3421729.0,606.0,2582.071,0.457,971.0,0.733,0.1234,8.1,tests performed,1992984.0,862858.0,847458.0,475757.0,84.0,153.0,150.39,65.11,63.95,35.9,115.0,45.0,0.003,11.11,1325188.0,31.033,42.7,19.452,13.491,29481.252,0.5,255.56900000000002,4.02,24.5,39.3,24.64,4.69,78.74,0.892,3805.5,9.78,12.82,2871.66802
952,Pakistan,2022-06-18,73723,,,,12064.0,0.054000000000000006,0.0095,PAK,Asia,1531982.0,152.0,114.714,30383.0,0.0,0.28600000000000003,6802.764,0.675,0.509,134.916,0.0,0.001,1.58,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28807107.0,31201.0,127.91799999999999,0.139,12064.0,0.054000000000000006,0.0095,105.2,tests performed,258680119.0,136132226.0,124633798.0,15333936.0,724751.0,720419.0,114.87,60.45,55.34,6.81,3199.0,72881.0,0.032,77.78,225199929.0,255.57299999999998,23.5,4.495,2.78,5034.708,4.0,423.031,8.35,2.8,36.7,59.607,0.6,67.27,0.557,4286.8,18.62,-6.95,820.6952745
953,Lithuania,2022-06-18,54901,8718050.0,215.0,3241.077,766.0,0.285,0.20800000000000002,LTU,Europe,1157928.0,239.0,184.857,9158.0,1.0,0.7140000000000001,430478.59,88.852,68.72399999999999,3404.636,0.37200000000000005,0.266,1.23,1.0,0.536,52.0,19.332,10.0,5.282,1.0,25.605,8718050.0,215.0,3241.077,0.08,766.0,0.285,0.20800000000000002,4.8,tests performed,4487937.0,1952201.0,1876437.0,933830.0,13.0,101.0,166.85,72.58,69.76,34.72,38.0,19.0,0.001,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
954,Italy,2022-06-18,46389,224097705.0,193040.0,3712.2259999999997,171410.0,2.839,0.1757,ITA,Europe,17844905.0,34971.0,30120.0,167703.0,45.0,48.286,295604.648,579.302,498.944,2778.0359999999996,0.745,0.8,1.39,193.0,3.197,4524.0,74.941,147.0,2.435,2737.0,45.339,224097705.0,193040.0,3712.2259999999997,3.198,171410.0,2.839,0.1757,5.7,tests performed,138093358.0,50798480.0,47943740.0,40858954.0,13142.0,15190.0,228.75,84.15,79.42,67.68,252.0,442.0,0.001,22.22,60367471.0,205.859,47.9,23.021,16.24,35220.084,2.0,113.15100000000001,4.78,19.8,27.8,94.57600000000001,3.18,83.51,0.892,180753.4,11.84,-8.54,2994.218525
955,El Salvador,2022-06-18,27797,1912252.0,4629.0,293.358,4649.0,0.713,0.096,SLV,North America,164134.0,0.0,0.0,4137.0,1.0,0.28600000000000003,25179.718999999997,0.0,0.0,634.655,0.153,0.044000000000000004,0.09,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1912252.0,4629.0,293.358,0.71,4649.0,0.713,0.096,10.4,tests performed,10875762.0,4609638.0,4314494.0,1951630.0,46995.0,3538.0,166.84,70.72,66.19,29.94,543.0,270.0,0.004,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
956,North Macedonia,2022-06-18,71379,,,,714.0,0.34299999999999997,0.0682,MKD,Europe,312879.0,0.0,48.714,9322.0,0.0,0.857,150230.402,0.0,23.39,4476.004,0.0,0.41200000000000003,1.1,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2068585.0,1124.0,993.2410000000001,0.54,714.0,0.34299999999999997,0.0682,14.7,tests performed,1843815.0,849038.0,836339.0,158438.0,3869.0,442.0,88.53,40.77,40.16,7.61,212.0,347.0,0.017,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
957,Cote d'Ivoire,2022-06-18,21029,,,,550.0,0.02,0.0499,CIV,Africa,82659.0,0.0,27.429000000000002,801.0,0.0,0.28600000000000003,3055.3759999999997,0.0,1.014,29.608,0.0,0.011000000000000001,1.5,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,1532591.0,635.0,56.65,0.023,550.0,0.02,0.0499,20.1,tests performed,12753769.0,8026397.0,5540193.0,87290.0,20396.0,0.0,47.14,29.67,20.48,0.32,0.0,5281.0,0.02,15.74,27053629.0,76.399,18.7,2.9330000000000003,1.5819999999999999,3601.006,28.2,303.74,2.42,6.4,17.4,19.351,1.13,57.78,0.5379999999999999,5946.8,11.58,-1.44,1157.17818
958,Panama,2022-06-18,75265,6467420.0,,1476.046,9666.0,2.206,0.1836,PAN,North America,902386.0,2053.0,1775.1429999999998,8319.0,1.0,3.0,205949.767,468.55199999999996,405.13699999999994,1898.629,0.228,0.685,0.84,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,6467420.0,7609.0,1476.046,1.7369999999999999,9666.0,2.206,0.1836,5.4,tests performed,8326845.0,3481615.0,3111772.0,1728629.0,5925.0,4552.0,190.04,79.46,71.02,39.45,1039.0,300.0,0.006999999999999999,28.7,4381583.0,55.133,29.7,7.917999999999999,5.03,22267.037,2.2,128.346,8.33,2.4,9.9,59.607,2.3,78.51,0.815,7503.4,19.42,-1.22,1712.4861039999998
959,Guam,2022-06-18,37087,323516.0,413.0,1900.9779999999998,486.0,2.8560000000000003,0.10300000000000001,GUM,Oceania,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,323516.0,413.0,1900.9779999999998,2.427,486.0,2.8560000000000003,0.10300000000000001,9.7,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
960,Mexico,2022-06-18,62001,15569464.0,1462.0,119.524,12427.0,0.095,0.488,MEX,North America,5852596.0,0.0,4476.286,325340.0,0.0,22.0,44929.343,0.0,34.364000000000004,2497.578,0.0,0.16899999999999998,1.47,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209030212.0,88302201.0,79947470.0,53110007.0,157958.0,35491.0,160.47,67.79,61.37,40.77,272.0,12363.0,0.009000000000000001,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
961,Greece,2022-06-18,36180,,,,77770.0,7.499,0.0783,GRC,Europe,3539423.0,7163.0,6088.0,30079.0,9.0,9.571,341289.109,690.693,587.036,2900.37,0.868,0.9229999999999999,1.37,1000.0,11.919,16108.0,238.91299999999998,15.0,1.405,655.0,63.117,83816775.0,73217.0,8082.0380000000005,7.06,77770.0,7.499,0.0783,12.8,samples tested,21054900.0,7917650.0,7627376.0,6085895.0,404.0,1536.0,203.02,76.35,73.55,58.68,148.0,94.0,0.001,24.07,10370747.0,83.479,45.3,20.396,14.524000000000001,24574.382,1.5,175.695,4.55,35.3,52.0,41.047,4.21,82.24,0.888,31443.0,10.58,12.88,3031.8934600000002
962,Saint Lucia,2022-06-18,83300,,,,160.0,0.868,0.2402,LCA,North America,26722.0,18.0,38.429,376.0,0.0,0.7140000000000001,144912.446,97.613,208.39700000000002,2039.0339999999999,0.0,3.8739999999999997,0.83,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,207725.0,117.0,1126.485,0.634,160.0,0.868,0.2402,4.2,tests performed,121134.0,59464.0,54114.0,7556.0,71.0,24.0,65.69,32.25,29.35,4.1,130.0,9.0,0.005,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
963,South Africa,2022-06-18,89057,,,,15103.0,0.252,0.0664,ZAF,Africa,3984646.0,0.0,1002.571,101589.0,0.0,16.0,66364.31599999999,0.0,16.698,1691.9660000000001,0.0,0.266,0.68,207.0,3.448,1970.0,32.81,7.0,3.319,945.0,15.739,25576392.0,22417.0,425.975,0.373,15103.0,0.252,0.0664,15.1,people tested,36594656.0,21948222.0,18968591.0,3372056.0,29023.0,22199.0,60.95,36.55,31.59,5.62,370.0,8715.0,0.015,43.52,60041996.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
964,Bermuda,2022-06-18,9977,,,,1005.0,16.186,0.0475,BMU,North America,15762.0,0.0,47.714,138.0,0.0,0.0,253849.12699999998,0.0,768.445,2222.509,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,36935.0,8589.0,594.8430000000001,138.327,1005.0,16.186,0.0475,21.1,samples tested,131612.0,48554.0,47657.0,35401.0,5470.0,6.0,211.96,78.2,76.75,57.01,97.0,5.0,0.008,22.22,62092.0,1308.82,18.8,3.2439999999999998,1.942,50669.315,49.6,139.547,13.0,0.6,12.3,11.035,0.5,82.59,0.545,15.4,2.8,-1.1,248.0190685
965,United States Virgin Islands,2022-06-18,104053,115065.0,12.0,1104.08,55.0,0.528,0.19399999999999998,VIR,North America,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115065.0,12.0,1104.08,0.115,55.0,0.528,0.19399999999999998,5.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
966,Eswatini,2022-06-18,29107,,,,236.0,0.201,0.0751,SWZ,Africa,73003.0,4.0,17.714000000000002,1414.0,1.0,0.5710000000000001,62269.644,3.412,15.11,1206.105,0.853,0.48700000000000004,0.6,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,547721.0,333.0,467.19199999999995,0.284,236.0,0.201,0.0751,13.3,tests performed,535393.0,387468.0,336066.0,66331.0,7504.0,0.0,45.67,33.05,28.67,5.66,0.0,0.0,0.0,23.15,1172369.0,79.492,21.5,3.1630000000000003,1.845,7738.975,0.5,333.436,3.94,1.7,16.5,24.096999999999998,2.1,60.19,0.611,3805.5,9.78,12.82,2871.66802
967,Nigeria,2022-06-18,69835,,,,4734.0,0.022000000000000002,0.0067,NGA,Africa,256573.0,106.0,31.570999999999998,3144.0,0.0,0.0,1213.681,0.501,0.149,14.872,0.0,0.0,1.43,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5219585.0,11989.0,24.69,0.057,4734.0,0.022000000000000002,0.0067,149.9,tests performed,46391592.0,27401621.0,16817979.0,942369.0,186047.0,301975.0,21.94,12.96,7.96,0.45,1428.0,67082.0,0.032,40.74,211400704.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,54.69,0.539,8148.4,31.97,5.18,1215.747423
968,Latvia,2022-06-18,52488,7256406.0,1874.0,3886.804,2028.0,1.0859999999999999,0.1019,LVA,Europe,831727.0,0.0,206.571,5844.0,0.0,1.0,445504.23299999995,0.0,110.647,3130.2659999999996,0.0,0.536,1.24,3.0,1.607,294.0,157.477,11.0,5.81,93.0,49.651,7256406.0,1874.0,3886.804,1.004,2028.0,1.0859999999999999,0.1019,9.8,tests performed,2893378.0,1345869.0,1305556.0,527904.0,36.0,127.0,154.98,72.09,69.93,28.28,68.0,15.0,0.001,11.11,1866934.0,31.212,43.9,19.754,14.136,25063.846,0.7,350.06,4.91,25.6,51.0,49.839,5.57,75.29,0.866,8297.0,12.2,2.87,4444.184958
969,Nepal,2022-06-18,67259,,,,2960.0,0.1,,NPL,Asia,979344.0,11.0,13.286,11952.0,0.0,0.0,33002.414,0.371,0.44799999999999995,402.764,0.0,0.0,1.44,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,6946964.0,5062.0,234.102,0.171,2960.0,0.1,0.005,200.0,samples tested,45122852.0,22578546.0,20107569.0,5870095.0,65278.0,124982.0,152.06,76.09,67.76,19.78,4212.0,16161.0,0.054000000000000006,46.3,29674920.0,204.43,25.0,5.809,3.2119999999999997,2442.804,15.0,260.797,7.26,9.5,37.8,47.782,0.3,70.78,0.602,2633.7,21.49,55.05,4193.449258
970,Bahrain,2022-06-18,6988,,,,5326.0,3.0460000000000003,0.2475,BHR,Asia,603848.0,1383.0,1318.1429999999998,1491.0,0.0,0.28600000000000003,345392.511,791.056,753.959,852.831,0.0,0.163,1.34,50.0,5.529,874.0,96.649,,,,,9925545.0,7215.0,5677.271,4.127,5326.0,3.0460000000000003,0.2475,4.0,units unclear,3450284.0,1237778.0,1222296.0,990210.0,259.0,314.0,197.35,70.8,69.91,56.64,180.0,48.0,0.003,17.59,1748295.0,1935.9070000000002,32.4,2.372,1.3869999999999998,43290.705,0.7,151.689,16.52,5.8,37.6,83.241,2.0,77.29,0.852,43744.8,33.01,2.0,4278.913044
971,Malta,2022-06-18,59792,1944590.0,1270.0,3767.855,1214.0,2.352,0.1838,MLT,Europe,97557.0,279.0,223.143,730.0,2.0,0.857,189027.32,540.5930000000001,432.36400000000003,1414.455,3.875,1.661,1.6,3.0,5.813,77.0,149.196,1.0,1.9380000000000002,36.0,69.75399999999999,1944590.0,1270.0,3767.855,2.461,1214.0,2.352,0.1838,5.4,tests performed,1311277.0,476691.0,469599.0,399350.0,283.0,535.0,254.07,92.36,90.99,77.38,1037.0,14.0,0.003,13.89,516100.0,1454.037,42.4,19.426,11.324000000000002,36513.323,0.2,168.71099999999998,8.83,20.9,30.2,52.232,4.485,82.53,0.895,539.8,5.7,-1.02,1045.921333
972,Togo,2022-06-18,97459,748328.0,,88.265,390.0,0.046,0.0242,TGO,Africa,37242.0,11.0,9.429,273.0,0.0,0.0,4392.656,1.297,1.112,32.2,0.0,0.0,1.29,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,748328.0,877.0,88.265,0.10300000000000001,390.0,0.046,0.0242,41.4,tests performed,3290821.0,2092750.0,1557538.0,87104.0,7881.0,0.0,38.81,24.68,18.37,1.03,0.0,428.0,0.005,29.17,8478242.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,61.04,0.515,97687.9,8.02,19.55,1396.5221060000001
973,Iceland,2022-06-18,41090,1372861.0,430.0,3722.5890000000004,435.0,1.18,,ISL,Europe,191079.0,0.0,152.143,153.0,0.0,0.0,518121.326,0.0,412.54400000000004,414.86800000000005,0.0,0.0,1.54,1.0,2.7119999999999997,30.0,81.347,21.0,2.06,9.0,24.404,1372861.0,430.0,3722.5890000000004,1.166,435.0,1.18,0.2219,4.5,tests performed,805469.0,309770.0,290193.0,250542.0,1925.0,61.0,218.41,84.0,78.69,67.94,165.0,10.0,0.003,11.11,368792.0,3.404,37.3,14.431,9.207,46482.958,0.2,117.992,5.31,14.3,15.2,84.169,2.91,82.99,0.9490000000000001,213.9,4.1,13.64,580.0017353999999
974,Saudi Arabia,2022-06-18,84477,43125205.0,27163.0,1220.271,30688.0,0.868,0.0327,SAU,Asia,783907.0,831.0,1002.429,9185.0,2.0,2.1430000000000002,22181.435,23.514,28.365,259.899,0.057,0.061,1.12,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,43125205.0,27163.0,1220.271,0.769,30688.0,0.868,0.0327,30.6,tests performed,60953969.0,25960748.0,24199236.0,10793985.0,113359.0,47889.0,172.48,73.46,68.47,30.54,1355.0,6276.0,0.018000000000000002,11.11,35340680.0,15.322000000000001,31.9,3.295,1.845,49045.41099999999,32.3,259.538,17.72,1.8,25.4,41.34,2.7,75.13,0.8540000000000001,133.0,21.63,-19.49,3910.614525
975,Somalia,2022-06-18,88189,,,,252.0,0.015,0.0624,SOM,Africa,26675.0,0.0,15.714,1361.0,0.0,0.0,1630.5510000000002,0.0,0.961,83.193,0.0,0.0,0.39,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,493663.0,3998.0,30.176,1.923,252.0,0.015,0.0624,16.0,tests performed,2996795.0,2498354.0,1525974.0,2343.0,17966.0,16153.0,18.32,15.27,9.33,0.33,987.0,18264.0,0.11199999999999999,40.74,16359500.0,23.5,16.8,2.7310000000000003,1.496,2205.923,25.1,365.769,6.05,20.1,25.0,9.831,0.9,57.4,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
976,Kosovo,2022-06-18,50513,,,,172.0,0.09699999999999999,0.0772,OWID_KOS,Europe,228523.0,16.0,13.286,3140.0,1.0,0.14300000000000002,128231.34300000001,8.978,7.455,1761.951,0.561,0.08,1.75,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1844866.0,1719.0,1035.212,0.965,172.0,0.09699999999999999,0.0772,12.9,tests performed,1830153.0,903530.0,823550.0,103073.0,4.0,41.0,102.7,50.7,46.21,5.78,23.0,9.0,0.001,37.04,1782115.0,168.155,23.2,3.895,2.21,9795.834,0.6,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,5869.8,25.36,-11.76,3293.726836
977,Cape Verde,2022-06-18,16767,,500.0,,,,,CPV,Africa,58029.0,221.0,141.286,402.0,0.0,0.0,103272.641,393.30800000000005,251.442,715.429,0.0,0.0,1.65,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,500.0,1633.3339999999998,0.89,324.0,0.5770000000000001,0.1168,8.6,tests performed,762486.0,355232.0,307398.0,142.0,4461.0,404.0,135.7,63.22,54.71,0.03,719.0,5.0,0.001,19.44,561901.0,135.58,25.7,4.46,3.437,6222.554,0.5,182.21900000000002,2.42,2.1,16.5,2.735,2.1,72.98,0.665,188.6,6.81,13.94,335.6463149
978,Bangladesh,2022-06-18,7800,,,,1732.0,0.01,0.1423,BGD,Asia,1955731.0,304.0,246.429,29131.0,0.0,0.0,11760.011,1.828,1.482,175.168,0.0,0.0,2.74,50.0,5.529,874.0,96.649,,,,,13804340.0,5986.0,83.007,0.036000000000000004,1732.0,0.01,0.1423,7.0,tests performed,275306648.0,129212143.0,118590639.0,27778457.0,274839.0,271748.0,165.54,77.7,71.31,16.7,1634.0,9097.0,0.005,34.26,166303494.0,1265.036,27.5,5.098,3.262,3523.9840000000004,14.8,298.003,8.38,1.0,44.7,34.808,0.8,72.59,0.632,43744.8,33.01,2.0,4278.913044
979,Zimbabwe,2022-06-18,106781,,,,1782.0,0.11800000000000001,0.0579,ZWE,Africa,254753.0,0.0,103.14299999999999,5533.0,0.0,2.1430000000000002,16879.811,0.0,6.834,366.61400000000003,0.0,0.142,0.84,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,2365708.0,3537.0,156.751,0.23399999999999999,1782.0,0.11800000000000001,0.0579,17.3,tests performed,11889379.0,6278211.0,4576849.0,1034319.0,3295.0,5363.0,78.78,41.6,30.33,6.85,355.0,1469.0,0.01,38.89,15092171.0,42.729,19.6,2.822,1.882,1899.775,21.4,307.846,1.82,1.6,30.7,36.791,1.7,61.49,0.5710000000000001,38486.9,10.93,1.96,1134.110282
980,Malaysia,2022-06-18,58224,60617559.0,24712.0,1849.4389999999999,36870.0,1.125,0.055,MYS,Asia,4538922.0,2127.0,2027.8570000000002,35732.0,1.0,3.0,138482.27300000002,64.895,61.87,1090.181,0.031,0.092,1.1,23.0,0.7020000000000001,471.0,14.37,10.0,5.282,835.0,25.476,60617559.0,24712.0,1849.4389999999999,0.754,36870.0,1.125,0.055,18.2,people tested,71154597.0,28030640.0,27207535.0,16131263.0,15450.0,10574.0,217.09,85.52,83.01,49.22,323.0,620.0,0.002,50.0,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
981,Israel,2022-06-18,45539,51652506.0,12282.0,5559.4130000000005,22324.0,2.403,0.304,ISR,Asia,4226245.0,5721.0,6637.857,10896.0,14.0,3.571,454875.148,615.757,714.439,1172.748,1.507,0.384,1.45,39.0,4.198,901.0,96.976,24.0,2.583,785.0,84.49,51652506.0,12282.0,5559.4130000000005,1.3219999999999998,22324.0,2.403,0.304,3.3,people tested,18171801.0,6711457.0,6143722.0,5316622.0,32.0,867.0,195.58,72.24,66.13,57.22,93.0,67.0,0.001,14.81,9291000.0,402.606,30.6,11.732999999999999,7.359,33132.32,0.5,93.32,6.74,15.4,35.4,94.57600000000001,2.99,82.97,0.919,10022.5,8.92,-9.47,1078.7321060000002
982,Palau,2022-06-18,73783,,,,159.0,8.749,0.0323,PLW,Oceania,5181.0,0.0,5.143,6.0,0.0,0.0,285077.583,0.0,282.97900000000004,330.142,0.0,0.0,0.87,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59305.0,31201.0,3263.178,0.139,159.0,8.749,0.0323,30.9,tests performed,273365003.0,137369525.0,127262916.0,26505821.0,943523.0,880651.0,121.39,61.0,56.51,11.77,3911.0,71679.0,0.032,77.78,18174.0,47.236999999999995,23.5,4.495,2.78,13240.405,4.0,423.031,15.89,7.7,22.7,59.607,4.8,73.7,0.826,4286.8,18.62,-6.95,820.6952745
983,Myanmar,2022-06-18,65569,,,,5863.0,0.107,0.0011,MMR,Asia,613485.0,11.0,6.428999999999999,19434.0,0.0,0.0,11193.753,0.201,0.11699999999999999,354.596,0.0,0.0,0.99,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,8296334.0,16383.0,151.376,0.299,5863.0,0.107,0.0011,912.0,samples tested,62259560.0,33004742.0,27027467.0,2227351.0,3800.0,187094.0,113.6,60.22,49.31,4.06,3414.0,110614.0,0.20199999999999999,51.85,54806014.0,81.721,29.1,5.732,3.12,5591.597,6.4,202.104,4.61,6.3,35.2,79.28699999999999,0.9,67.13,0.583,2633.7,21.49,55.05,4193.449258
984,Myanmar,2022-06-19,65570,,,,5762.0,0.105,0.0012,MMR,Asia,613490.0,5.0,6.7139999999999995,19434.0,0.0,0.0,11193.845,0.091,0.12300000000000001,354.596,0.0,0.0,1.03,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,8296334.0,16383.0,151.376,0.299,5762.0,0.105,0.0012,858.2,samples tested,62259560.0,33004742.0,27027467.0,2227351.0,3800.0,187094.0,113.6,60.22,49.31,4.06,3414.0,110614.0,0.20199999999999999,51.85,54806014.0,81.721,29.1,5.732,3.12,5591.597,6.4,202.104,4.61,6.3,35.2,79.28699999999999,0.9,67.13,0.583,2633.7,21.49,55.05,4193.449258
985,Azerbaijan,2022-06-19,5875,,,,2341.0,0.22899999999999998,0.0137,AZE,Asia,793010.0,25.0,32.143,9716.0,0.0,0.429,77568.553,2.445,3.1439999999999997,950.3739999999999,0.0,0.042,0.82,50.0,5.529,874.0,96.649,,,,,6901005.0,6872.0,675.0239999999999,0.672,2341.0,0.22899999999999998,0.0137,72.8,tests performed,13753387.0,5352263.0,4852231.0,3300756.0,1265.0,1461.0,134.53,52.35,47.46,32.29,143.0,215.0,0.002,36.11,10223344.0,119.309,32.4,6.018,3.8710000000000004,15847.419,0.7,559.812,7.11,0.3,42.5,83.241,4.7,73.0,0.7559999999999999,43744.8,33.01,2.0,4278.913044
986,Suriname,2022-06-19,92943,,,,26.0,0.044000000000000004,,SUR,South America,80766.0,0.0,13.286,1355.0,0.0,0.429,136475.622,0.0,22.45,2289.633,0.0,0.7240000000000001,0.97,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,84019.0,198.0,141.972,0.335,26.0,0.044000000000000004,0.508,2.0,tests performed,505699.0,267820.0,237879.0,48889.0,398.0,14.0,85.45,45.26,40.2,8.26,24.0,6.0,0.001,44.44,591798.0,3.612,29.6,6.933,4.229,13767.118999999999,0.7,258.314,12.54,7.4,42.9,67.779,3.1,71.68,0.738,48.2,1.23,14.57,81.44670986
987,Bahamas,2022-06-19,6150,,,,146.0,0.368,0.3053,BHS,North America,35644.0,41.0,44.571000000000005,815.0,0.0,0.429,89802.829,103.29700000000001,112.295,2053.342,0.0,1.08,0.95,50.0,5.529,874.0,96.649,,,,,240874.0,567.0,606.867,1.429,146.0,0.368,0.3053,3.3,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
988,Jamaica,2022-06-19,47211,,,,957.0,0.322,0.1258,JAM,North America,141306.0,0.0,120.429,3093.0,0.0,1.429,47522.383,0.0,40.501,1040.202,0.0,0.48,0.84,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1122493.0,2223.0,377.504,0.748,957.0,0.322,0.1258,7.9,samples tested,1452176.0,809323.0,705188.0,41747.0,677.0,539.0,48.84,27.22,23.72,1.4,181.0,296.0,0.01,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
989,Guinea-Bissau,2022-06-19,38049,,,,241.0,0.12,0.0006,GNB,Africa,8307.0,0.0,0.14300000000000002,171.0,0.0,0.0,4121.5779999999995,0.0,0.071,84.84299999999999,0.0,0.0,0.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,141581.0,390.0,70.24600000000001,0.19399999999999998,241.0,0.12,0.0006,1685.3,tests performed,572775.0,529604.0,342039.0,179.0,1658.0,718.0,28.42,26.28,16.97,0.01,356.0,18.0,0.001,49.07,2015490.0,66.191,19.4,3.002,1.565,1548.675,67.1,382.474,2.42,35.3,52.0,6.403,0.3,58.32,0.48,43113.3,25.35,10.04,2362.38969
990,Afghanistan,2022-06-19,141,,,,435.0,0.011000000000000001,0.2634,AFG,Asia,181666.0,92.0,114.571,7713.0,0.0,0.5710000000000001,4560.413,2.31,2.8760000000000003,193.622,0.0,0.013999999999999999,1.17,,,,,,,,,981844.0,,24.648000000000003,,435.0,0.011000000000000001,0.2634,3.8,tests performed,6295222.0,5573175.0,4923085.0,,383.0,9565.0,15.8,13.99,12.36,,240.0,8925.0,0.022000000000000002,11.11,39835428.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
991,India,2022-06-19,41921,857841663.0,446387.0,615.6419999999999,426029.0,0.306,0.0266,IND,Asia,43309473.0,12781.0,11338.857,524873.0,18.0,14.571,31081.665,9.172,8.137,376.68300000000005,0.013000000000000001,0.01,1.41,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,857841663.0,446387.0,615.6419999999999,0.32,426029.0,0.306,0.0266,37.6,samples tested,1960498702.0,1014700077.0,905759251.0,40039374.0,1230414.0,1501084.0,140.7,72.82,65.0,2.87,1077.0,175216.0,0.013000000000000001,37.04,1393409033.0,450.41900000000004,28.2,5.989,3.4139999999999997,6426.674,21.2,282.28,10.39,1.9,20.6,59.55,0.53,69.66,0.645,213.9,4.1,13.64,580.0017353999999
992,Kenya,2022-06-19,50121,,,,2634.0,0.048,0.1313,KEN,Africa,329353.0,246.0,345.85699999999997,5651.0,0.0,0.0,5989.793000000001,4.474,6.29,102.772,0.0,0.0,1.37,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3706945.0,2868.0,67.417,0.052000000000000005,2634.0,0.048,0.1313,7.6,tests performed,18535975.0,12641679.0,9326814.0,376018.0,13702.0,12048.0,33.71,22.99,16.96,0.68,219.0,4649.0,0.008,37.04,54985702.0,87.324,20.0,2.6860000000000004,1.528,2993.028,36.8,218.637,2.92,1.2,20.4,24.651,1.4,66.7,0.601,83124.6,26.77,-14.32,4376.140237
993,Ethiopia,2022-06-19,29940,,,,4072.0,0.035,0.1816,ETH,Africa,484138.0,399.0,739.2860000000001,7523.0,1.0,1.0,4107.173,3.385,6.272,63.821000000000005,0.008,0.008,1.07,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,4993374.0,4118.0,42.361000000000004,0.035,4072.0,0.035,0.1816,5.5,tests performed,30025290.0,29380780.0,25902313.0,562630.0,159930.0,43258.0,25.47,24.93,21.97,0.48,367.0,329306.0,0.27899999999999997,30.56,117876226.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
994,Saint Lucia,2022-06-19,83301,208260.0,,1129.387,152.0,0.8240000000000001,0.1729,LCA,North America,26722.0,0.0,26.285999999999998,376.0,0.0,0.7140000000000001,144912.446,0.0,142.546,2039.0339999999999,0.0,3.8739999999999997,0.83,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208260.0,117.0,1129.387,0.634,152.0,0.8240000000000001,0.1729,5.8,tests performed,121134.0,59464.0,54114.0,7556.0,71.0,23.0,65.69,32.25,29.35,4.1,125.0,9.0,0.005,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
995,Bermuda,2022-06-19,9978,,,,970.0,15.622,0.0492,BMU,North America,15762.0,0.0,47.714,138.0,0.0,0.0,253849.12699999998,0.0,768.445,2222.509,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,36935.0,8589.0,594.8430000000001,138.327,970.0,15.622,0.0492,20.3,samples tested,131612.0,48554.0,47657.0,35401.0,5470.0,6.0,211.96,78.2,76.75,57.01,97.0,5.0,0.008,22.22,62092.0,1308.82,18.8,3.2439999999999998,1.942,50669.315,49.6,139.547,13.0,0.6,12.3,11.035,0.5,82.59,0.545,15.4,2.8,-1.1,248.0190685
996,Nepal,2022-06-19,67260,,,,2951.0,0.099,,NPL,Asia,979362.0,18.0,14.286,11952.0,0.0,0.0,33003.021,0.607,0.48100000000000004,402.764,0.0,0.0,1.47,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,6946964.0,5062.0,234.102,0.171,2951.0,0.099,0.005,200.0,samples tested,45175161.0,22581229.0,20112984.0,5914332.0,52309.0,114078.0,152.23,76.1,67.78,19.93,3844.0,16032.0,0.054000000000000006,46.3,29674920.0,204.43,25.0,5.809,3.2119999999999997,2442.804,15.0,260.797,7.26,9.5,37.8,47.782,0.3,70.78,0.602,2633.7,21.49,55.05,4193.449258
997,Burundi,2022-06-19,14640,,,,1251.0,0.102,0.0171,BDI,Africa,42398.0,0.0,21.429000000000002,38.0,0.0,0.0,3459.528,0.0,1.7480000000000002,3.1010000000000004,0.0,0.0,0.89,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1609334.0,3281.0,131.316,0.268,1251.0,0.102,0.0171,58.4,tests performed,16780.0,14929.0,14350.0,3.0,93.0,39.0,0.14,0.12,0.12,0.0,3.0,39.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
998,Fiji,2022-06-19,30888,555590.0,,615.34,606.0,0.6709999999999999,,FJI,Oceania,65268.0,0.0,15.571,865.0,0.0,0.14300000000000002,72287.155,0.0,17.246,958.025,0.0,0.158,1.59,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,555590.0,567.0,615.34,0.628,606.0,0.6709999999999999,0.6621,1.5,tests performed,1608898.0,706129.0,634685.0,134042.0,28295.0,58.0,178.19,78.21,70.29,14.85,64.0,26.0,0.003,57.41,902899.0,49.562,28.6,6.224,3.284,8702.975,1.4,412.82,14.49,10.2,34.8,7.96,2.3,67.44,0.743,-38.6,-3.8,10.79,-786.903961