forked from Pedro-vd20/css_twitter_research_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
merged_data.csv
We can't make this file beautiful and searchable because it's too large.
9781 lines (9781 loc) · 878 KB
/
merged_data.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
country,date,sentiment,Imports,Exports,immigrants,percPop,emigrants,kilometers,miles,ideology,rsf
Angola,2022-02-22,,1390.0,21140000.0,656434.0,2.0,668066.0,6753.0,4196.0,1.0,
Australia,2022-02-22,0.31666666666666665,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Belgium,2022-02-22,-0.11875,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Botswana,2022-02-22,0.0,135610.0,396780.0,1079708.0,0.51,1897128.0,7889.0,4902.0,3.0,58.0
Canada,2022-02-22,0.0,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Colombia,2022-02-22,0.0,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Croatia,2022-02-22,,65410000.0,46590000.0,528056.0,12.86,1039526.0,1267.0,787.0,2.0,70.0
Cuba,2022-02-22,,1590000.0,3490000.0,3024.0,0.03,1757300.0,9538.0,5927.0,0.0,27.0
Czechia,2022-02-22,,,,,,,,,,
Denmark,2022-02-22,,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Estonia,2022-02-22,,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Finland,2022-02-22,0.0,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-02-22,0.0,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-02-22,,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Iceland,2022-02-22,,127190000.0,1220000.0,65424.0,19.17,43251.0,3445.0,2141.0,3.0,82.0
India,2022-02-22,0.022222222222222223,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-02-22,,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Italy,2022-02-22,-0.375,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-02-22,0.0,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kenya,2022-02-22,-0.15,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
Laos,2022-02-22,,928660.0,254140.0,48731.0,0.67,1296051.0,7006.0,4353.0,0.0,
Latvia,2022-02-22,,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Mali,2022-02-22,,6600000.0,28210000.0,485829.0,2.4,1303511.0,4668.0,2901.0,0.0,54.0
Mexico,2022-02-22,0.0,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Netherlands,2022-02-22,0.0,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
Nigeria,2022-02-22,-0.2916666666666667,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-02-22,,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-02-22,-0.02666666666666666,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Peru,2022-02-22,0.0,30040000.0,126540000.0,1224519.0,3.71,1519635.0,11963.0,7433.0,2.0,
Philippines,2022-02-22,0.0,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-02-22,,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-02-22,,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-02-22,0.0,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Russia,2022-02-22,-0.2375,5850000000.0,3350000000.0,11636911.0,7.97,10756697.0,4666.0,2899.0,1.0,45.0
Russian Federation,2022-02-22,,,,,,,,,,
Saudi Arabia,2022-02-22,,176730000.0,779550000.0,13454842.0,38.65,299268.0,2986.0,1855.0,0.0,33.0
Serbia,2022-02-22,,191120000.0,195730000.0,823011.0,9.42,1003962.0,919.0,571.0,1.0,61.0
Slovenia,2022-02-22,,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
South Sudan,2022-02-22,0.24,6000.0,3930000.0,882252.0,7.88,2575870.0,4615.0,2868.0,0.0,47.0
Sudan,2022-02-22,-0.0159090909090909,9180000.0,53030000.0,1379147.0,3.15,2104887.0,3950.0,2454.0,0.0,
Sweden,2022-02-22,,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Tunisia,2022-02-22,0.0,41870000.0,386050000.0,60145.0,0.51,902268.0,2409.0,1497.0,,58.0
Turkey,2022-02-22,,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Ukraine,2022-02-22,0.2166666666666667,,,,,,,,,
United Arab Emirates,2022-02-22,,81730000.0,516970000.0,8716332.0,88.13,203214.0,3418.0,2124.0,0.0,44.0
United Kingdom,2022-02-22,0.08333333333333333,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-02-22,0.02367724867724867,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
"Venezuela, Bolivarian Republic of",2022-02-22,,,,,,,,,,
Algeria,2022-02-23,,44780000.0,410230000.0,250378.0,0.57,2022337.0,3392.0,2108.0,1.0,45.0
Argentina,2022-02-23,0.0,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Armenia,2022-02-23,,24500000.0,130870000.0,190349.0,6.42,958190.0,1437.0,893.0,2.0,68.0
Australia,2022-02-23,-0.0007575757575757671,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Bahamas,2022-02-23,0.0,12600.0,197610.0,63583.0,16.17,53793.0,9211.0,5723.0,,
Belgium,2022-02-23,0.0,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Belize,2022-02-23,0.0,1120000.0,69180.0,62043.0,15.6,52756.0,10602.0,6588.0,,
Cambodia,2022-02-23,,26730000.0,2370000.0,79341.0,0.47,1104819.0,7775.0,4831.0,1.0,43.0
Canada,2022-02-23,-0.022280844155844165,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-02-23,1.0,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
Czechia,2022-02-23,-0.1125,,,,,,,,,
Dominican Republic,2022-02-23,-0.05,7250000.0,360740000.0,603794.0,5.57,1608567.0,9263.0,5756.0,2.0,
Ecuador,2022-02-23,-0.05,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Estonia,2022-02-23,0.0,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Ethiopia,2022-02-23,0.0,6560000.0,245730000.0,1085517.0,0.94,946129.0,4449.0,2764.0,1.0,50.0
Finland,2022-02-23,-0.1625,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-02-23,,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-02-23,0.08124999999999999,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Honduras,2022-02-23,0.0,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
India,2022-02-23,0.1263678451178451,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-02-23,,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Italy,2022-02-23,,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-02-23,-0.05,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kenya,2022-02-23,0.15833333333333335,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
"Korea, Republic of",2022-02-23,0.0333333333333333,,,,,,,,,
Laos,2022-02-23,,928660.0,254140.0,48731.0,0.67,1296051.0,7006.0,4353.0,0.0,
Latvia,2022-02-23,0.0,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lebanon,2022-02-23,-0.05,4400000.0,386040000.0,1712762.0,25.09,856814.0,1661.0,1032.0,1.0,46.0
Lesotho,2022-02-23,,1320.0,6100.0,12060.0,0.56,202164.0,8677.0,5392.0,2.0,
Macedonia,2022-02-23,,21530000.0,120710000.0,,,,1055.0,656.0,2.0,68.0
Malta,2022-02-23,,17620000.0,30370000.0,114760.0,25.99,102793.0,1949.0,1211.0,2.0,61.0
Mexico,2022-02-23,,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Nepal,2022-02-23,0.4333333333333333,31580.0,20470000.0,487564.0,1.67,2599701.0,5001.0,3107.0,2.0,62.0
Netherlands,2022-02-23,1.0,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
Nigeria,2022-02-23,0.1375,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-02-23,-0.25,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-02-23,0.05524553571428571,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Panama,2022-02-23,0.0,4300000.0,5000000.0,313165.0,7.26,139520.0,10867.0,6752.0,2.0,
Peru,2022-02-23,,30040000.0,126540000.0,1224519.0,3.71,1519635.0,11963.0,7433.0,2.0,
Philippines,2022-02-23,0.0,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-02-23,0.0,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-02-23,-0.05,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Qatar,2022-02-23,,17410000.0,140220000.0,2226192.0,77.27,25705.0,3098.0,1925.0,0.0,49.0
Republic of Slovenia,2022-02-23,,,,,,,,,,
Russian Federation,2022-02-23,,,,,,,,,,
Saint Lucia,2022-02-23,-0.15,,,,,,,,,
Seychelles,2022-02-23,,283620.0,678930.0,13050.0,13.27,29258.0,6356.0,3949.0,3.0,83.0
Slovenia,2022-02-23,,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
Spain,2022-02-23,0.0681818181818181,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sudan,2022-02-23,0.3375,9180000.0,53030000.0,1379147.0,3.15,2104887.0,3950.0,2454.0,0.0,
Sweden,2022-02-23,1.0,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-02-23,0.3333333333333333,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
"Tanzania, United Republic of",2022-02-23,-0.05,,,,,,,,,
Trinidad and Tobago,2022-02-23,0.13333333333333333,,,,,,,,,
Turkey,2022-02-23,0.0,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-02-23,0.125,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-02-23,0.3,,,,,,,,,
United Arab Emirates,2022-02-23,,81730000.0,516970000.0,8716332.0,88.13,203214.0,3418.0,2124.0,0.0,44.0
United Kingdom,2022-02-23,0.08712121212121211,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-02-23,0.15373020796407894,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Uzbekistan,2022-02-23,,260800000.0,402820000.0,1162007.0,3.47,2027823.0,2722.0,1691.0,1.0,45.0
Zimbabwe,2022-02-23,-0.1,2420000.0,40920.0,416141.0,2.8,1243314.0,7497.0,4658.0,1.0,44.0
Angola,2022-02-24,,1390.0,21140000.0,656434.0,2.0,668066.0,6753.0,4196.0,1.0,
Argentina,2022-02-24,0.5,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-02-24,-0.05,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-02-24,-0.25,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Bangladesh,2022-02-24,-0.3,123310000.0,250570000.0,2115408.0,1.28,7401763.0,5813.0,3612.0,1.0,36.0
Belgium,2022-02-24,0.13333333333333333,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Belize,2022-02-24,0.0824074074074074,1120000.0,69180.0,62043.0,15.6,52756.0,10602.0,6588.0,,
Brazil,2022-02-24,,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Canada,2022-02-24,0.04,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-02-24,,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
China,2022-02-24,0.0,10640000000.0,7990000000.0,1039675.0,0.07,10461170.0,5947.0,3695.0,0.0,25.0
Cuba,2022-02-24,,1590000.0,3490000.0,3024.0,0.03,1757300.0,9538.0,5927.0,0.0,27.0
Dominican Republic,2022-02-24,,7250000.0,360740000.0,603794.0,5.57,1608567.0,9263.0,5756.0,2.0,
Ecuador,2022-02-24,,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Finland,2022-02-24,,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-02-24,0.4291666666666667,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Gambia,2022-02-24,,,37350000.0,,,,5758.0,3578.0,1.0,69.0
Georgia,2022-02-24,0.0,199360000.0,430520000.0,79368.0,1.99,861077.0,1165.0,724.0,2.0,59.0
Germany,2022-02-24,0.06257068452380952,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Greece,2022-02-24,0.0333333333333333,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Guatemala,2022-02-24,,67270000.0,53900000.0,84311.0,0.47,1368431.0,10836.0,6733.0,2.0,
Guinea-Bissau,2022-02-24,,,,,,,,,,
Haiti,2022-02-24,,160800.0,36590000.0,18884.0,0.17,1769671.0,9389.0,5834.0,1.0,64.0
India,2022-02-24,0.05566603535353534,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-02-24,0.273015873015873,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Ireland,2022-02-24,0.2444444444444444,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Israel,2022-02-24,,211520000.0,711700000.0,1953575.0,22.57,358691.0,1952.0,1213.0,3.0,59.0
Italy,2022-02-24,,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-02-24,,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kenya,2022-02-24,0.0,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
Latvia,2022-02-24,0.0,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lithuania,2022-02-24,0.0,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Luxembourg,2022-02-24,0.0,19270000.0,15670000.0,298062.0,47.62,81757.0,1821.0,1132.0,3.0,79.0
Mali,2022-02-24,0.0,6600000.0,28210000.0,485829.0,2.4,1303511.0,4668.0,2901.0,0.0,54.0
Mauritius,2022-02-24,,772010.0,3130000.0,28893.0,2.27,182973.0,8080.0,5021.0,2.0,66.0
Mexico,2022-02-24,0.0,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Monaco,2022-02-24,,,,,,,,,,
Morocco,2022-02-24,0.0,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Netherlands,2022-02-24,-0.05,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
Nigeria,2022-02-24,0.07492063492063492,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-02-24,-0.25,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-02-24,-0.056250000000000015,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
"Palestine, State of",2022-02-24,0.0,,,,,,,,,
Panama,2022-02-24,0.0,4300000.0,5000000.0,313165.0,7.26,139520.0,10867.0,6752.0,2.0,
Peru,2022-02-24,,30040000.0,126540000.0,1224519.0,3.71,1519635.0,11963.0,7433.0,2.0,
Philippines,2022-02-24,0.00189393939393935,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-02-24,-0.5,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-02-24,,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Senegal,2022-02-24,,2440000.0,123960000.0,274929.0,1.64,693765.0,5608.0,3485.0,2.0,63.0
Sierra Leone,2022-02-24,-0.4,231790.0,6680000.0,53746.0,0.67,152486.0,5980.0,3716.0,2.0,71.0
Slovenia,2022-02-24,0.0,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
Somalia,2022-02-24,-0.3999999999999999,3490000.0,21610000.0,58590.0,0.37,2034221.0,5014.0,3116.0,0.0,44.0
South Africa,2022-02-24,0.0,95950000.0,21870000.0,2860495.0,4.82,914901.0,8816.0,5478.0,2.0,75.0
Spain,2022-02-24,,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sudan,2022-02-24,,9180000.0,53030000.0,1379147.0,3.15,2104887.0,3950.0,2454.0,0.0,
Switzerland,2022-02-24,,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Thailand,2022-02-24,0.0,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Trinidad and Tobago,2022-02-24,,,,,,,,,,
Turkey,2022-02-24,0.0,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-02-24,0.0,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-02-24,-0.02500000000000005,,,,,,,,,
United Kingdom,2022-02-24,0.1438333333333333,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-02-24,0.060622093955427295,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Uruguay,2022-02-24,-0.5,1860000.0,3200000.0,108267.0,3.12,367060.0,12435.0,7727.0,3.0,72.0
"Venezuela, Bolivarian Republic of",2022-02-24,,,,,,,,,,
Zambia,2022-02-24,0.0,316900.0,461100.0,187955.0,1.02,200700.0,6848.0,4255.0,1.0,
Afghanistan,2022-02-25,,447880.0,4550000.0,144098.0,0.37,5853838.0,3411.0,2119.0,0.0,38.0
Argentina,2022-02-25,0.0375,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-02-25,0.0014545454545454584,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-02-25,0.25,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Bahamas,2022-02-25,0.25,12600.0,197610.0,63583.0,16.17,53793.0,9211.0,5723.0,,
Bangladesh,2022-02-25,0.0,123310000.0,250570000.0,2115408.0,1.28,7401763.0,5813.0,3612.0,1.0,36.0
Belgium,2022-02-25,,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Bosnia and Herzegovina,2022-02-25,,,,,,,,,,
Brazil,2022-02-25,,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Canada,2022-02-25,0.155,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-02-25,0.0625,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
Colombia,2022-02-25,0.3,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Cuba,2022-02-25,,1590000.0,3490000.0,3024.0,0.03,1757300.0,9538.0,5927.0,0.0,27.0
Cyprus,2022-02-25,0.0,32570000.0,46310000.0,190366.0,15.77,173210.0,1485.0,923.0,3.0,65.0
Czechia,2022-02-25,,,,,,,,,,
Denmark,2022-02-25,0.0,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Egypt,2022-02-25,0.0,144920000.0,1910000000.0,543937.0,0.53,3610461.0,2397.0,1489.0,1.0,30.0
Ethiopia,2022-02-25,0.0,6560000.0,245730000.0,1085517.0,0.94,946129.0,4449.0,2764.0,1.0,50.0
Finland,2022-02-25,0.1047619047619047,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-02-25,-0.02763888888888885,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-02-25,-0.01799242424242425,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Ghana,2022-02-25,0.0,129940000.0,136990000.0,476412.0,1.53,1004324.0,5415.0,3365.0,2.0,67.0
Greece,2022-02-25,-0.4,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Hungary,2022-02-25,0.125,1520000000.0,1580000000.0,584567.0,6.05,714420.0,881.0,547.0,1.0,59.0
India,2022-02-25,0.007152777777777789,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-02-25,0.61,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
"Iran, Islamic Republic of",2022-02-25,,,,,,,,,,
Ireland,2022-02-25,0.0,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Italy,2022-02-25,-0.0259259259259259,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Jamaica,2022-02-25,-0.1999999999999999,454190.0,73730.0,23629.0,0.8,1118931.0,9801.0,6090.0,2.0,
Japan,2022-02-25,0.3625,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kazakhstan,2022-02-25,-0.0625,806180000.0,424540000.0,3732073.0,19.88,4203899.0,2626.0,1632.0,1.0,48.0
Kenya,2022-02-25,-0.05,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
"Korea, Republic of",2022-02-25,,,,,,,,,,
Kuwait,2022-02-25,0.0,2020000.0,38150000.0,3110159.0,72.83,212271.0,2536.0,1576.0,1.0,
Latvia,2022-02-25,,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Malaysia,2022-02-25,0.0333333333333333,276460000.0,136390000.0,3476560.0,10.74,1860037.0,8248.0,5125.0,1.0,
Mexico,2022-02-25,0.0,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Morocco,2022-02-25,-0.1999999999999999,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Nepal,2022-02-25,0.06818181818181815,31580.0,20470000.0,487564.0,1.67,2599701.0,5001.0,3107.0,2.0,62.0
Netherlands,2022-02-25,0.1,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
Nigeria,2022-02-25,0.13333333333333336,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-02-25,0.0,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-02-25,0.1292410714285714,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Philippines,2022-02-25,0.1282738095238095,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-02-25,0.07857142857142856,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Romania,2022-02-25,0.3,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Saint Vincent and the Grenadines,2022-02-25,0.0,,,,,,,,,
San Marino,2022-02-25,,2680000.0,1710000.0,5543.0,16.34,2407.0,1518.0,943.0,,
Saudi Arabia,2022-02-25,,176730000.0,779550000.0,13454842.0,38.65,299268.0,2986.0,1855.0,0.0,33.0
Seychelles,2022-02-25,0.4166666666666667,283620.0,678930.0,13050.0,13.27,29258.0,6356.0,3949.0,3.0,83.0
Sierra Leone,2022-02-25,0.125,231790.0,6680000.0,53746.0,0.67,152486.0,5980.0,3716.0,2.0,71.0
Slovenia,2022-02-25,-0.0666666666666666,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
South Africa,2022-02-25,0.0,95950000.0,21870000.0,2860495.0,4.82,914901.0,8816.0,5478.0,2.0,75.0
Spain,2022-02-25,-0.15,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sweden,2022-02-25,,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-02-25,0.0,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Thailand,2022-02-25,0.0,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Trinidad and Tobago,2022-02-25,0.0,,,,,,,,,
Turkey,2022-02-25,,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-02-25,0.85,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-02-25,0.09523809523809523,,,,,,,,,
United Arab Emirates,2022-02-25,-0.0769230769230769,81730000.0,516970000.0,8716332.0,88.13,203214.0,3418.0,2124.0,0.0,44.0
United Kingdom,2022-02-25,0.08411306042884992,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-02-25,0.036381172839506176,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Venezuela,2022-02-25,,671980.0,5040000.0,1324193.0,4.66,5415337.0,10042.0,6240.0,1.0,37.0
"Venezuela, Bolivarian Republic of",2022-02-25,,,,,,,,,,
Yemen,2022-02-25,,2380000.0,234710000.0,387113.0,1.3,1301166.0,3979.0,2472.0,0.0,
Zimbabwe,2022-02-25,-0.10046296296296298,2420000.0,40920.0,416141.0,2.8,1243314.0,7497.0,4658.0,1.0,44.0
Albania,2022-02-26,0.1,6810000.0,39770000.0,48810.0,1.7,1250451.0,1181.0,734.0,1.0,56.0
Argentina,2022-02-26,,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-02-26,0.06704545454545455,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Belgium,2022-02-26,0.0,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Bosnia and Herzegovina,2022-02-26,,,,,,,,,,
Brazil,2022-02-26,,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Cabo Verde,2022-02-26,,,,,,,,,,
Canada,2022-02-26,0.14895833333333336,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-02-26,0.0,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
Colombia,2022-02-26,0.0,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Czechia,2022-02-26,0.65,,,,,,,,,
Denmark,2022-02-26,-0.0625,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Dominican Republic,2022-02-26,,7250000.0,360740000.0,603794.0,5.57,1608567.0,9263.0,5756.0,2.0,
Ecuador,2022-02-26,,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Egypt,2022-02-26,0.0,144920000.0,1910000000.0,543937.0,0.53,3610461.0,2397.0,1489.0,1.0,30.0
Finland,2022-02-26,,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-02-26,0.019090909090909096,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-02-26,0.2727232142857143,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Greece,2022-02-26,0.0,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Guatemala,2022-02-26,,67270000.0,53900000.0,84311.0,0.47,1368431.0,10836.0,6733.0,2.0,
Honduras,2022-02-26,0.1999999999999999,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
India,2022-02-26,-0.06198350694444445,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Ireland,2022-02-26,0.11388888888888889,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Israel,2022-02-26,0.0035714285714285,211520000.0,711700000.0,1953575.0,22.57,358691.0,1952.0,1213.0,3.0,59.0
Italy,2022-02-26,,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Jamaica,2022-02-26,0.0499999999999999,454190.0,73730.0,23629.0,0.8,1118931.0,9801.0,6090.0,2.0,
Japan,2022-02-26,0.0,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kenya,2022-02-26,0.125,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
Kiribati,2022-02-26,0.0,,,3126.0,2.62,5103.0,14367.0,8927.0,,
Latvia,2022-02-26,,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lesotho,2022-02-26,0.0,1320.0,6100.0,12060.0,0.56,202164.0,8677.0,5392.0,2.0,
Lithuania,2022-02-26,,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Maldives,2022-02-26,-0.05,1290000.0,2980000.0,70079.0,12.96,3715.0,6552.0,4071.0,2.0,
Mali,2022-02-26,0.0,6600000.0,28210000.0,485829.0,2.4,1303511.0,4668.0,2901.0,0.0,54.0
Malta,2022-02-26,0.6770833333333333,17620000.0,30370000.0,114760.0,25.99,102793.0,1949.0,1211.0,2.0,61.0
Mexico,2022-02-26,,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Morocco,2022-02-26,0.25416666666666665,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Netherlands,2022-02-26,0.125,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
New Zealand,2022-02-26,0.0333333333333333,23900000.0,11800000.0,1381724.0,28.65,806159.0,17058.0,10599.0,3.0,83.0
Nicaragua,2022-02-26,0.0,1780000.0,183860.0,42167.0,0.64,718154.0,10781.0,6699.0,1.0,37.0
Nigeria,2022-02-26,0.041666666666666664,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Pakistan,2022-02-26,0.3,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Philippines,2022-02-26,-0.05,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-02-26,-0.0625,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-02-26,0.0,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Russian Federation,2022-02-26,0.0,,,,,,,,,
Saint Lucia,2022-02-26,,,,,,,,,,
South Africa,2022-02-26,-0.04166666666666665,95950000.0,21870000.0,2860495.0,4.82,914901.0,8816.0,5478.0,2.0,75.0
South Sudan,2022-02-26,0.0,6000.0,3930000.0,882252.0,7.88,2575870.0,4615.0,2868.0,0.0,47.0
Spain,2022-02-26,-0.1,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sudan,2022-02-26,0.018750000000000003,9180000.0,53030000.0,1379147.0,3.15,2104887.0,3950.0,2454.0,0.0,
Sweden,2022-02-26,,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-02-26,,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
"Taiwan, Province of China",2022-02-26,0.0,,,,,,,,,
"Tanzania, United Republic of",2022-02-26,0.4,,,,,,,,,
Thailand,2022-02-26,,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Timor-Leste,2022-02-26,,,,,,,,,,
Trinidad and Tobago,2022-02-26,0.0,,,,,,,,,
Turkey,2022-02-26,0.0849702380952381,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-02-26,0.0,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-02-26,-0.08333333333333333,,,,,,,,,
United Arab Emirates,2022-02-26,-0.4583333333333333,81730000.0,516970000.0,8716332.0,88.13,203214.0,3418.0,2124.0,0.0,44.0
United Kingdom,2022-02-26,0.09418661816578484,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-02-26,0.029148434148434158,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
United States Minor Outlying Islands,2022-02-26,0.0,,,,,,,,,
Uruguay,2022-02-26,0.1,1860000.0,3200000.0,108267.0,3.12,367060.0,12435.0,7727.0,3.0,72.0
"Venezuela, Bolivarian Republic of",2022-02-26,0.04999999999999999,,,,,,,,,
Zambia,2022-02-26,0.5,316900.0,461100.0,187955.0,1.02,200700.0,6848.0,4255.0,1.0,
Argentina,2022-02-27,-0.1,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Armenia,2022-02-27,0.0,24500000.0,130870000.0,190349.0,6.42,958190.0,1437.0,893.0,2.0,68.0
Australia,2022-02-27,0.06556712962962961,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Belgium,2022-02-27,0.27999999999999997,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Bosnia and Herzegovina,2022-02-27,,,,,,,,,,
Brazil,2022-02-27,0.0,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Bulgaria,2022-02-27,0.1083333333333333,514730000.0,781770000.0,184363.0,2.65,1683626.0,767.0,477.0,2.0,59.0
Canada,2022-02-27,-0.04901357323232325,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-02-27,-0.07499999999999996,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
Cuba,2022-02-27,,1590000.0,3490000.0,3024.0,0.03,1757300.0,9538.0,5927.0,0.0,27.0
Czechia,2022-02-27,0.0,,,,,,,,,
Ecuador,2022-02-27,,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Equatorial Guinea,2022-02-27,0.25,,2630000.0,230618.0,16.44,128774.0,5568.0,3460.0,1.0,43.0
Estonia,2022-02-27,0.0,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Fiji,2022-02-27,,60210.0,54380.0,14087.0,1.57,233856.0,15483.0,9621.0,1.0,
Finland,2022-02-27,0.2,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-02-27,0.04837962962962962,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-02-27,0.2388888888888889,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Honduras,2022-02-27,0.0,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
India,2022-02-27,-0.015563725490196079,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-02-27,,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Ireland,2022-02-27,0.75,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Israel,2022-02-27,0.0,211520000.0,711700000.0,1953575.0,22.57,358691.0,1952.0,1213.0,3.0,59.0
Italy,2022-02-27,0.04469696969696968,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-02-27,0.06666666666666667,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kenya,2022-02-27,0.0,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
"Korea, Republic of",2022-02-27,,,,,,,,,,
Latvia,2022-02-27,,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lebanon,2022-02-27,,4400000.0,386040000.0,1712762.0,25.09,856814.0,1661.0,1032.0,1.0,46.0
Libya,2022-02-27,,147070000.0,425010000.0,826537.0,12.03,185518.0,2733.0,1698.0,0.0,
Morocco,2022-02-27,,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Namibia,2022-02-27,0.0,418360.0,331430.0,109391.0,4.31,47770.0,8032.0,4991.0,2.0,81.0
Nepal,2022-02-27,0.0,31580.0,20470000.0,487564.0,1.67,2599701.0,5001.0,3107.0,2.0,62.0
Netherlands,2022-02-27,0.14074074074074075,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
Nigeria,2022-02-27,-0.5,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Pakistan,2022-02-27,-0.3,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Philippines,2022-02-27,0.012731481481481483,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-02-27,-0.016666666666666666,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-02-27,,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-02-27,0.0,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Russian Federation,2022-02-27,,,,,,,,,,
Saudi Arabia,2022-02-27,0.075,176730000.0,779550000.0,13454842.0,38.65,299268.0,2986.0,1855.0,0.0,33.0
Sierra Leone,2022-02-27,,231790.0,6680000.0,53746.0,0.67,152486.0,5980.0,3716.0,2.0,71.0
Singapore,2022-02-27,0.25,46170000.0,21790000.0,2523648.0,43.14,348464.0,8623.0,5358.0,1.0,44.0
Slovenia,2022-02-27,,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
Spain,2022-02-27,0.08310185185185184,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sri Lanka,2022-02-27,,37610000.0,23320000.0,40254.0,0.19,1960025.0,6458.0,4013.0,2.0,42.0
Sweden,2022-02-27,0.32626262626262625,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-02-27,,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Thailand,2022-02-27,0.2222222222222222,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Trinidad and Tobago,2022-02-27,-0.2875,,,,,,,,,
Turkey,2022-02-27,0.1125,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-02-27,,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-02-27,0.0630952380952381,,,,,,,,,
United Arab Emirates,2022-02-27,,81730000.0,516970000.0,8716332.0,88.13,203214.0,3418.0,2124.0,0.0,44.0
United Kingdom,2022-02-27,0.1295940170940171,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-02-27,0.01960580808080808,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Uruguay,2022-02-27,0.0,1860000.0,3200000.0,108267.0,3.12,367060.0,12435.0,7727.0,3.0,72.0
"Venezuela, Bolivarian Republic of",2022-02-27,0.0,,,,,,,,,
Zambia,2022-02-27,0.0,316900.0,461100.0,187955.0,1.02,200700.0,6848.0,4255.0,1.0,
Albania,2022-02-28,0.0,6810000.0,39770000.0,48810.0,1.7,1250451.0,1181.0,734.0,1.0,56.0
Argentina,2022-02-28,0.0,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-02-28,0.1365740740740741,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-02-28,,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Belgium,2022-02-28,0.2,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Brazil,2022-02-28,,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Bulgaria,2022-02-28,0.0,514730000.0,781770000.0,184363.0,2.65,1683626.0,767.0,477.0,2.0,59.0
Cambodia,2022-02-28,-0.1,26730000.0,2370000.0,79341.0,0.47,1104819.0,7775.0,4831.0,1.0,43.0
Canada,2022-02-28,0.12388888888888891,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-02-28,,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
China,2022-02-28,0.16574074074074074,10640000000.0,7990000000.0,1039675.0,0.07,10461170.0,5947.0,3695.0,0.0,25.0
Colombia,2022-02-28,,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Croatia,2022-02-28,0.1047619047619047,65410000.0,46590000.0,528056.0,12.86,1039526.0,1267.0,787.0,2.0,70.0
Cuba,2022-02-28,,1590000.0,3490000.0,3024.0,0.03,1757300.0,9538.0,5927.0,0.0,27.0
Denmark,2022-02-28,,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Estonia,2022-02-28,0.4,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Fiji,2022-02-28,0.2166666666666666,60210.0,54380.0,14087.0,1.57,233856.0,15483.0,9621.0,1.0,
Finland,2022-02-28,0.25,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-02-28,0.0625,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Georgia,2022-02-28,0.0,199360000.0,430520000.0,79368.0,1.99,861077.0,1165.0,724.0,2.0,59.0
Germany,2022-02-28,0.04999999999999999,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Ghana,2022-02-28,0.0,129940000.0,136990000.0,476412.0,1.53,1004324.0,5415.0,3365.0,2.0,67.0
Greece,2022-02-28,0.0,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
India,2022-02-28,0.04356060606060605,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-02-28,0.0,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Ireland,2022-02-28,0.2,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Italy,2022-02-28,-0.04,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-02-28,0.0,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kenya,2022-02-28,-0.0562499999999999,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
Kiribati,2022-02-28,0.6,,,3126.0,2.62,5103.0,14367.0,8927.0,,
"Korea, Republic of",2022-02-28,0.0,,,,,,,,,
Latvia,2022-02-28,,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lebanon,2022-02-28,0.0,4400000.0,386040000.0,1712762.0,25.09,856814.0,1661.0,1032.0,1.0,46.0
Lesotho,2022-02-28,0.0166666666666666,1320.0,6100.0,12060.0,0.56,202164.0,8677.0,5392.0,2.0,
Malaysia,2022-02-28,0.08125,276460000.0,136390000.0,3476560.0,10.74,1860037.0,8248.0,5125.0,1.0,
Mali,2022-02-28,,6600000.0,28210000.0,485829.0,2.4,1303511.0,4668.0,2901.0,0.0,54.0
Malta,2022-02-28,0.8,17620000.0,30370000.0,114760.0,25.99,102793.0,1949.0,1211.0,2.0,61.0
Mauritius,2022-02-28,0.0,772010.0,3130000.0,28893.0,2.27,182973.0,8080.0,5021.0,2.0,66.0
"Moldova, Republic of",2022-02-28,0.2857142857142857,,,,,,,,,
Morocco,2022-02-28,1.0,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Myanmar,2022-02-28,0.0,19470000.0,26320000.0,76446.0,0.14,3711751.0,6362.0,3953.0,0.0,25.0
Netherlands,2022-02-28,0.0,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
Nigeria,2022-02-28,0.0,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-02-28,0.0,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-02-28,0.2785714285714286,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
"Palestine, State of",2022-02-28,-0.0333333333333333,,,,,,,,,
Philippines,2022-02-28,0.0,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-02-28,0.024999999999999994,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-02-28,,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-02-28,0.0,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Russia,2022-02-28,-0.5,5850000000.0,3350000000.0,11636911.0,7.97,10756697.0,4666.0,2899.0,1.0,45.0
Samoa,2022-02-28,-0.0777777777777777,,4580.0,4021.0,2.03,135732.0,15611.0,9700.0,,
Sierra Leone,2022-02-28,,231790.0,6680000.0,53746.0,0.67,152486.0,5980.0,3716.0,2.0,71.0
Slovenia,2022-02-28,0.0,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
Spain,2022-02-28,-0.10416666666666664,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sudan,2022-02-28,0.4666666666666666,9180000.0,53030000.0,1379147.0,3.15,2104887.0,3950.0,2454.0,0.0,
Sweden,2022-02-28,-0.25,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-02-28,0.0,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Thailand,2022-02-28,0.0,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Uganda,2022-02-28,-0.0944444444444444,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-02-28,-0.015625,,,,,,,,,
United Kingdom,2022-02-28,0.06642857142857143,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-02-28,0.07465544780511886,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Uruguay,2022-02-28,0.25,1860000.0,3200000.0,108267.0,3.12,367060.0,12435.0,7727.0,3.0,72.0
Uzbekistan,2022-02-28,-0.125,260800000.0,402820000.0,1162007.0,3.47,2027823.0,2722.0,1691.0,1.0,45.0
"Venezuela, Bolivarian Republic of",2022-02-28,,,,,,,,,,
Zambia,2022-02-28,,316900.0,461100.0,187955.0,1.02,200700.0,6848.0,4255.0,1.0,
Argentina,2022-03-01,,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Armenia,2022-03-01,,24500000.0,130870000.0,190349.0,6.42,958190.0,1437.0,893.0,2.0,68.0
Austria,2022-03-01,0.0,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Belgium,2022-03-01,0.0,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Belize,2022-03-01,-0.0999999999999999,1120000.0,69180.0,62043.0,15.6,52756.0,10602.0,6588.0,,
Bosnia and Herzegovina,2022-03-01,0.0,,,,,,,,,
Brazil,2022-03-01,-0.125,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Canada,2022-03-01,0.3318181818181818,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-03-01,,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
Colombia,2022-03-01,,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Denmark,2022-03-01,,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Ecuador,2022-03-01,0.0,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
El Salvador,2022-03-01,,2120000.0,939530.0,42767.0,0.66,1599058.0,10934.0,6794.0,1.0,54.0
Estonia,2022-03-01,0.0,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Ethiopia,2022-03-01,0.0,6560000.0,245730000.0,1085517.0,0.94,946129.0,4449.0,2764.0,1.0,50.0
Finland,2022-03-01,,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-01,0.0,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Gabon,2022-03-01,0.0,31010.0,19050000.0,416651.0,18.72,48392.0,5785.0,3595.0,1.0,
Georgia,2022-03-01,,199360000.0,430520000.0,79368.0,1.99,861077.0,1165.0,724.0,2.0,59.0
Germany,2022-03-01,-0.05944444444444448,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Greece,2022-03-01,-0.275,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Honduras,2022-03-01,0.0,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
India,2022-03-01,-0.013194444444444446,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-03-01,,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Iran,2022-03-01,0.0,94800000.0,590280000.0,2797235.0,3.33,1325113.0,2586.0,1607.0,1.0,23.0
Ireland,2022-03-01,0.21250000000000002,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Italy,2022-03-01,-0.5,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Jamaica,2022-03-01,0.3090909090909091,454190.0,73730.0,23629.0,0.8,1118931.0,9801.0,6090.0,2.0,
Japan,2022-03-01,,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Latvia,2022-03-01,-0.125,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Liechtenstein,2022-03-01,0.0,,,,,,,,,
Lithuania,2022-03-01,0.0666666666666666,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Malaysia,2022-03-01,0.0,276460000.0,136390000.0,3476560.0,10.74,1860037.0,8248.0,5125.0,1.0,
Mexico,2022-03-01,,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Morocco,2022-03-01,,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Netherlands,2022-03-01,0.0,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
New Zealand,2022-03-01,0.0,23900000.0,11800000.0,1381724.0,28.65,806159.0,17058.0,10599.0,3.0,83.0
Nigeria,2022-03-01,-0.08333333333333333,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-03-01,,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-03-01,0.01666666666666665,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Panama,2022-03-01,-0.1,4300000.0,5000000.0,313165.0,7.26,139520.0,10867.0,6752.0,2.0,
Paraguay,2022-03-01,,672590.0,413360.0,169567.0,2.38,896484.0,11904.0,7397.0,2.0,
Philippines,2022-03-01,0.125,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-03-01,0.0,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Romania,2022-03-01,0.0,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Russia,2022-03-01,0.5,5850000000.0,3350000000.0,11636911.0,7.97,10756697.0,4666.0,2899.0,1.0,45.0
Rwanda,2022-03-01,0.5,883720.0,1180000.0,513907.0,3.97,492489.0,5597.0,3478.0,1.0,45.0
Slovenia,2022-03-01,,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
South Sudan,2022-03-01,-0.0269841269841269,6000.0,3930000.0,882252.0,7.88,2575870.0,4615.0,2868.0,0.0,47.0
Spain,2022-03-01,0.05,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sri Lanka,2022-03-01,,37610000.0,23320000.0,40254.0,0.19,1960025.0,6458.0,4013.0,2.0,42.0
Switzerland,2022-03-01,0.0681818181818181,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
"Taiwan, Province of China",2022-03-01,0.4,,,,,,,,,
Thailand,2022-03-01,0.0421875,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Turkey,2022-03-01,,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Ukraine,2022-03-01,0.0,,,,,,,,,
United Kingdom,2022-03-01,0.08477272727272728,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-01,-0.006766381766381761,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
United States Minor Outlying Islands,2022-03-01,0.0,,,,,,,,,
Venezuela,2022-03-01,,671980.0,5040000.0,1324193.0,4.66,5415337.0,10042.0,6240.0,1.0,37.0
"Venezuela, Bolivarian Republic of",2022-03-01,,,,,,,,,,
Zimbabwe,2022-03-01,0.0,2420000.0,40920.0,416141.0,2.8,1243314.0,7497.0,4658.0,1.0,44.0
Argentina,2022-03-10,0.0,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-03-10,-0.03958333333333333,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-03-10,-0.041666666666666664,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Azerbaijan,2022-03-10,0.5,651710000.0,389530000.0,252228.0,2.49,1163922.0,1591.0,989.0,1.0,39.0
Bahamas,2022-03-10,0.0,12600.0,197610.0,63583.0,16.17,53793.0,9211.0,5723.0,,
Bangladesh,2022-03-10,0.08888888888888885,123310000.0,250570000.0,2115408.0,1.28,7401763.0,5813.0,3612.0,1.0,36.0
Belgium,2022-03-10,0.075,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Bhutan,2022-03-10,,,9880.0,53612.0,6.95,51998.0,5530.0,3436.0,3.0,
Canada,2022-03-10,0.0608843537414966,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-03-10,0.0,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
Colombia,2022-03-10,,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Croatia,2022-03-10,0.1,65410000.0,46590000.0,528056.0,12.86,1039526.0,1267.0,787.0,2.0,70.0
Czechia,2022-03-10,-0.1666666666666666,,,,,,,,,
Denmark,2022-03-10,0.0,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Ecuador,2022-03-10,0.425,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Estonia,2022-03-10,0.0,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Finland,2022-03-10,0.0,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-10,0.027380952380952388,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-03-10,0.125,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Iceland,2022-03-10,0.1,127190000.0,1220000.0,65424.0,19.17,43251.0,3445.0,2141.0,3.0,82.0
India,2022-03-10,0.049999999999999996,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-03-10,0.2125,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Ireland,2022-03-10,-0.025,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Israel,2022-03-10,0.0,211520000.0,711700000.0,1953575.0,22.57,358691.0,1952.0,1213.0,3.0,59.0
Italy,2022-03-10,0.18,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Jamaica,2022-03-10,-0.1555555555555555,454190.0,73730.0,23629.0,0.8,1118931.0,9801.0,6090.0,2.0,
Japan,2022-03-10,0.0,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kenya,2022-03-10,-0.285693359375,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
"Korea, Republic of",2022-03-10,,,,,,,,,,
Latvia,2022-03-10,0.375,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lebanon,2022-03-10,0.0,4400000.0,386040000.0,1712762.0,25.09,856814.0,1661.0,1032.0,1.0,46.0
Lithuania,2022-03-10,0.0,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Malaysia,2022-03-10,0.1611111111111111,276460000.0,136390000.0,3476560.0,10.74,1860037.0,8248.0,5125.0,1.0,
Marshall Islands,2022-03-10,0.25,200000.0,430050.0,3298.0,5.57,10886.0,11967.0,7436.0,,
"Moldova, Republic of",2022-03-10,0.0,,,,,,,,,
Mongolia,2022-03-10,,329570.0,25110000.0,21345.0,0.65,82098.0,1112.0,691.0,2.0,59.0
Morocco,2022-03-10,0.0,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Netherlands,2022-03-10,-0.053125000000000026,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
New Zealand,2022-03-10,-0.0625,23900000.0,11800000.0,1381724.0,28.65,806159.0,17058.0,10599.0,3.0,83.0
Nicaragua,2022-03-10,0.0,1780000.0,183860.0,42167.0,0.64,718154.0,10781.0,6699.0,1.0,37.0
Nigeria,2022-03-10,0.0,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-03-10,0.06111111111111114,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-03-10,0.0,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Panama,2022-03-10,,4300000.0,5000000.0,313165.0,7.26,139520.0,10867.0,6752.0,2.0,
Peru,2022-03-10,0.0,30040000.0,126540000.0,1224519.0,3.71,1519635.0,11963.0,7433.0,2.0,
Philippines,2022-03-10,-0.125,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Romania,2022-03-10,,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Singapore,2022-03-10,0.0,46170000.0,21790000.0,2523648.0,43.14,348464.0,8623.0,5358.0,1.0,44.0
Slovakia,2022-03-10,-0.0625,927180000.0,948560000.0,197161.0,3.61,419651.0,844.0,524.0,2.0,78.0
Slovenia,2022-03-10,0.0,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
South Sudan,2022-03-10,0.0,6000.0,3930000.0,882252.0,7.88,2575870.0,4615.0,2868.0,0.0,47.0
Spain,2022-03-10,,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sweden,2022-03-10,0.1,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-03-10,,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Thailand,2022-03-10,-0.24074074074074073,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Trinidad and Tobago,2022-03-10,0.27777777777777773,,,,,,,,,
Turkey,2022-03-10,-0.01666666666666665,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Ukraine,2022-03-10,0.12083333333333333,,,,,,,,,
United Arab Emirates,2022-03-10,0.35,81730000.0,516970000.0,8716332.0,88.13,203214.0,3418.0,2124.0,0.0,44.0
United Kingdom,2022-03-10,0.05276951058201058,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-10,-0.018911161302465642,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
"Venezuela, Bolivarian Republic of",2022-03-10,0.0,,,,,,,,,
Zimbabwe,2022-03-10,,2420000.0,40920.0,416141.0,2.8,1243314.0,7497.0,4658.0,1.0,44.0
Argentina,2022-03-11,,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-03-11,0.125,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-03-11,0.0,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Bahamas,2022-03-11,0.0,12600.0,197610.0,63583.0,16.17,53793.0,9211.0,5723.0,,
Belgium,2022-03-11,0.13333333333333333,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Bosnia and Herzegovina,2022-03-11,,,,,,,,,,
Brazil,2022-03-11,-0.1875,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Cabo Verde,2022-03-11,,,,,,,,,,
Canada,2022-03-11,0.0,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-03-11,,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
China,2022-03-11,0.5,10640000000.0,7990000000.0,1039675.0,0.07,10461170.0,5947.0,3695.0,0.0,25.0
Colombia,2022-03-11,,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Czechia,2022-03-11,-0.1071428571428571,,,,,,,,,
Denmark,2022-03-11,0.0196428571428571,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Finland,2022-03-11,0.232104205318491,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-11,0.07727272727272726,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Gambia,2022-03-11,0.0,,37350000.0,,,,5758.0,3578.0,1.0,69.0
Germany,2022-03-11,0.09999999999999999,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Greece,2022-03-11,0.9765625,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Honduras,2022-03-11,0.0,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
India,2022-03-11,0.08333333333333336,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-03-11,0.15340909090909083,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Ireland,2022-03-11,0.0,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Israel,2022-03-11,0.0,211520000.0,711700000.0,1953575.0,22.57,358691.0,1952.0,1213.0,3.0,59.0
Italy,2022-03-11,0.045454545454545435,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-03-11,-0.2,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kenya,2022-03-11,0.0,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
Lithuania,2022-03-11,0.2,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Malaysia,2022-03-11,0.2136363636363636,276460000.0,136390000.0,3476560.0,10.74,1860037.0,8248.0,5125.0,1.0,
Mexico,2022-03-11,0.0,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Netherlands,2022-03-11,0.037500000000000006,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
New Zealand,2022-03-11,-0.1,23900000.0,11800000.0,1381724.0,28.65,806159.0,17058.0,10599.0,3.0,83.0
Nicaragua,2022-03-11,0.1999999999999999,1780000.0,183860.0,42167.0,0.64,718154.0,10781.0,6699.0,1.0,37.0
Nigeria,2022-03-11,-0.20833333333333326,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Philippines,2022-03-11,-0.03333333333333333,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-03-11,0.14375,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-03-11,-0.03125,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-03-11,-0.25,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Sierra Leone,2022-03-11,-0.375,231790.0,6680000.0,53746.0,0.67,152486.0,5980.0,3716.0,2.0,71.0
Singapore,2022-03-11,0.0,46170000.0,21790000.0,2523648.0,43.14,348464.0,8623.0,5358.0,1.0,44.0
Slovenia,2022-03-11,0.0,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
Spain,2022-03-11,0.21428571428571427,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sweden,2022-03-11,-0.00499999999999995,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-03-11,0.13333333333333333,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Thailand,2022-03-11,0.0655952380952381,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Ukraine,2022-03-11,0.08555555555555555,,,,,,,,,
United Kingdom,2022-03-11,0.013349392542940925,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-11,0.06749620906400568,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Zimbabwe,2022-03-11,0.25,2420000.0,40920.0,416141.0,2.8,1243314.0,7497.0,4658.0,1.0,44.0
Angola,2022-03-12,0.0,1390.0,21140000.0,656434.0,2.0,668066.0,6753.0,4196.0,1.0,
Argentina,2022-03-12,,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Armenia,2022-03-12,0.0,24500000.0,130870000.0,190349.0,6.42,958190.0,1437.0,893.0,2.0,68.0
Australia,2022-03-12,-0.025,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-03-12,0.1525,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Belgium,2022-03-12,0.13888888888888887,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Brazil,2022-03-12,-0.1,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Bulgaria,2022-03-12,0.0,514730000.0,781770000.0,184363.0,2.65,1683626.0,767.0,477.0,2.0,59.0
Cabo Verde,2022-03-12,0.0681818181818181,,,,,,,,,
Canada,2022-03-12,0.09097222222222222,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
China,2022-03-12,,10640000000.0,7990000000.0,1039675.0,0.07,10461170.0,5947.0,3695.0,0.0,25.0
Dominican Republic,2022-03-12,,7250000.0,360740000.0,603794.0,5.57,1608567.0,9263.0,5756.0,2.0,
Ecuador,2022-03-12,,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Equatorial Guinea,2022-03-12,,,2630000.0,230618.0,16.44,128774.0,5568.0,3460.0,1.0,43.0
Estonia,2022-03-12,0.25,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Finland,2022-03-12,0.04166666666666668,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-12,0.06510416666666666,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-03-12,0.018229166666666664,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Ghana,2022-03-12,0.0,129940000.0,136990000.0,476412.0,1.53,1004324.0,5415.0,3365.0,2.0,67.0
Greece,2022-03-12,,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Holy See (Vatican City State),2022-03-12,-0.0333333333333333,,,,,,,,,
Honduras,2022-03-12,0.04895833333333335,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
India,2022-03-12,-0.06666666666666668,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-03-12,-0.0421875,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Ireland,2022-03-12,-0.26666666666666666,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Italy,2022-03-12,0.19166666666666665,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-03-12,0.0,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Lithuania,2022-03-12,0.0,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Malaysia,2022-03-12,0.0,276460000.0,136390000.0,3476560.0,10.74,1860037.0,8248.0,5125.0,1.0,
Mali,2022-03-12,,6600000.0,28210000.0,485829.0,2.4,1303511.0,4668.0,2901.0,0.0,54.0
Malta,2022-03-12,0.0,17620000.0,30370000.0,114760.0,25.99,102793.0,1949.0,1211.0,2.0,61.0
Mexico,2022-03-12,0.0666666666666666,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Netherlands,2022-03-12,-0.20113906926406927,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
Pakistan,2022-03-12,-0.010069444444444428,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Panama,2022-03-12,,4300000.0,5000000.0,313165.0,7.26,139520.0,10867.0,6752.0,2.0,
Philippines,2022-03-12,0.06250000000000003,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-03-12,-0.015625,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-03-12,0.5,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-03-12,0.0,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Senegal,2022-03-12,-0.3125,2440000.0,123960000.0,274929.0,1.64,693765.0,5608.0,3485.0,2.0,63.0
Serbia,2022-03-12,0.0,191120000.0,195730000.0,823011.0,9.42,1003962.0,919.0,571.0,1.0,61.0
Slovenia,2022-03-12,0.0,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
South Africa,2022-03-12,-0.2,95950000.0,21870000.0,2860495.0,4.82,914901.0,8816.0,5478.0,2.0,75.0
Spain,2022-03-12,0.09642857142857142,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Switzerland,2022-03-12,0.2416666666666667,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Turkey,2022-03-12,0.0,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-03-12,,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-03-12,0.07126503126503127,,,,,,,,,
United Kingdom,2022-03-12,0.05089285714285715,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-12,0.08290818903318903,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Uzbekistan,2022-03-12,,260800000.0,402820000.0,1162007.0,3.47,2027823.0,2722.0,1691.0,1.0,45.0
"Venezuela, Bolivarian Republic of",2022-03-12,0.0,,,,,,,,,
Argentina,2022-03-13,,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-03-13,0.16999999999999998,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Belarus,2022-03-13,,4710000000.0,1460000000.0,1067090.0,11.29,1483626.0,634.0,394.0,1.0,39.0
Belgium,2022-03-13,0.0,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Belize,2022-03-13,-0.15,1120000.0,69180.0,62043.0,15.6,52756.0,10602.0,6588.0,,
Bosnia and Herzegovina,2022-03-13,,,,,,,,,,
Brazil,2022-03-13,0.3333333333333333,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Bulgaria,2022-03-13,1.0,514730000.0,781770000.0,184363.0,2.65,1683626.0,767.0,477.0,2.0,59.0
Canada,2022-03-13,0.18426308539944902,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Colombia,2022-03-13,0.4,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Croatia,2022-03-13,0.0,65410000.0,46590000.0,528056.0,12.86,1039526.0,1267.0,787.0,2.0,70.0
Cyprus,2022-03-13,,32570000.0,46310000.0,190366.0,15.77,173210.0,1485.0,923.0,3.0,65.0
Czechia,2022-03-13,0.025,,,,,,,,,
Denmark,2022-03-13,0.2,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Ecuador,2022-03-13,-0.125,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Estonia,2022-03-13,0.0,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Finland,2022-03-13,0.1875,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-13,-0.029166666666666664,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Georgia,2022-03-13,,199360000.0,430520000.0,79368.0,1.99,861077.0,1165.0,724.0,2.0,59.0
Germany,2022-03-13,0.013888888888888883,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Ghana,2022-03-13,0.0,129940000.0,136990000.0,476412.0,1.53,1004324.0,5415.0,3365.0,2.0,67.0
Greece,2022-03-13,0.5,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Haiti,2022-03-13,,160800.0,36590000.0,18884.0,0.17,1769671.0,9389.0,5834.0,1.0,64.0
Honduras,2022-03-13,0.05,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
Hungary,2022-03-13,0.3999999999999999,1520000000.0,1580000000.0,584567.0,6.05,714420.0,881.0,547.0,1.0,59.0
India,2022-03-13,-0.01704545454545457,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Ireland,2022-03-13,-0.0625,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Israel,2022-03-13,0.0,211520000.0,711700000.0,1953575.0,22.57,358691.0,1952.0,1213.0,3.0,59.0
Italy,2022-03-13,0.03333333333333335,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Jamaica,2022-03-13,-0.0666666666666666,454190.0,73730.0,23629.0,0.8,1118931.0,9801.0,6090.0,2.0,
Japan,2022-03-13,0.0,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Jordan,2022-03-13,,7620000.0,193810000.0,3457691.0,33.89,814909.0,2025.0,1258.0,0.0,
Kazakhstan,2022-03-13,0.0,806180000.0,424540000.0,3732073.0,19.88,4203899.0,2626.0,1632.0,1.0,48.0
Kenya,2022-03-13,0.25,17050000.0,155010000.0,1050147.0,1.95,535348.0,5421.0,3368.0,1.0,
Kiribati,2022-03-13,-0.3,,,3126.0,2.62,5103.0,14367.0,8927.0,,
Kosovo,2022-03-13,-1.0,,,,,,,,,
Lebanon,2022-03-13,0.0,4400000.0,386040000.0,1712762.0,25.09,856814.0,1661.0,1032.0,1.0,46.0
Luxembourg,2022-03-13,,19270000.0,15670000.0,298062.0,47.62,81757.0,1821.0,1132.0,3.0,79.0
Mexico,2022-03-13,0.0,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
Morocco,2022-03-13,0.1,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Nepal,2022-03-13,,31580.0,20470000.0,487564.0,1.67,2599701.0,5001.0,3107.0,2.0,62.0
Netherlands,2022-03-13,0.2238095238095238,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
New Zealand,2022-03-13,,23900000.0,11800000.0,1381724.0,28.65,806159.0,17058.0,10599.0,3.0,83.0
Nigeria,2022-03-13,0.05,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Oman,2022-03-13,0.0,16500000.0,183470000.0,2372836.0,46.47,25099.0,3709.0,2305.0,0.0,
Panama,2022-03-13,-0.058333333333333355,4300000.0,5000000.0,313165.0,7.26,139520.0,10867.0,6752.0,2.0,
Peru,2022-03-13,,30040000.0,126540000.0,1224519.0,3.71,1519635.0,11963.0,7433.0,2.0,
Philippines,2022-03-13,0.05458333333333333,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-03-13,-0.16666666666666666,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-03-13,,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-03-13,0.0,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Russian Federation,2022-03-13,0.07499999999999996,,,,,,,,,
Saint Kitts and Nevis,2022-03-13,-0.05,,,,,,,,,
Saint Lucia,2022-03-13,0.0,,,,,,,,,
Saint Vincent and the Grenadines,2022-03-13,0.05,,,,,,,,,
Saudi Arabia,2022-03-13,-0.1666666666666666,176730000.0,779550000.0,13454842.0,38.65,299268.0,2986.0,1855.0,0.0,33.0
Serbia,2022-03-13,-0.3302083333333332,191120000.0,195730000.0,823011.0,9.42,1003962.0,919.0,571.0,1.0,61.0
Singapore,2022-03-13,0.0833333333333333,46170000.0,21790000.0,2523648.0,43.14,348464.0,8623.0,5358.0,1.0,44.0
Spain,2022-03-13,0.24444444444444446,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sri Lanka,2022-03-13,0.0,37610000.0,23320000.0,40254.0,0.19,1960025.0,6458.0,4013.0,2.0,42.0
Sweden,2022-03-13,0.03125,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-03-13,0.1428571428571428,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Ukraine,2022-03-13,-0.05425170068027209,,,,,,,,,
United Arab Emirates,2022-03-13,0.2090277777777778,81730000.0,516970000.0,8716332.0,88.13,203214.0,3418.0,2124.0,0.0,44.0
United Kingdom,2022-03-13,0.12693353174603175,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-13,0.07205988455988456,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
"Venezuela, Bolivarian Republic of",2022-03-13,0.11944444444444445,,,,,,,,,
Argentina,2022-03-14,0.3,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-03-14,0.029166666666666674,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-03-14,0.11111111111111116,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Bahamas,2022-03-14,-0.0416666666666666,12600.0,197610.0,63583.0,16.17,53793.0,9211.0,5723.0,,
Bangladesh,2022-03-14,0.0,123310000.0,250570000.0,2115408.0,1.28,7401763.0,5813.0,3612.0,1.0,36.0
Belgium,2022-03-14,,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Bosnia and Herzegovina,2022-03-14,0.0333333333333333,,,,,,,,,
Brazil,2022-03-14,0.21041666666666664,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
British Indian Ocean Territory,2022-03-14,0.3333333333333333,,,,,,,,,
Bulgaria,2022-03-14,0.0,514730000.0,781770000.0,184363.0,2.65,1683626.0,767.0,477.0,2.0,59.0
Cambodia,2022-03-14,-0.0374999999999999,26730000.0,2370000.0,79341.0,0.47,1104819.0,7775.0,4831.0,1.0,43.0
Cameroon,2022-03-14,1.0,863760.0,99460000.0,579209.0,2.18,441015.0,4892.0,3040.0,1.0,49.0
Canada,2022-03-14,0.017261904761904763,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Czech Republic,2022-03-14,,1460000000.0,1380000000.0,540921.0,5.05,1026108.0,1151.0,715.0,2.0,80.0
Denmark,2022-03-14,0.0,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Ecuador,2022-03-14,0.0,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Estonia,2022-03-14,0.0,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Finland,2022-03-14,0.23958333333333331,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-14,0.15000000000000002,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-03-14,0.09444444444444444,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Greece,2022-03-14,0.0,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Iceland,2022-03-14,,127190000.0,1220000.0,65424.0,19.17,43251.0,3445.0,2141.0,3.0,82.0
India,2022-03-14,-0.12916666666666668,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-03-14,0.0,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Ireland,2022-03-14,0.13749999999999996,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Italy,2022-03-14,0.0,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Jamaica,2022-03-14,,454190.0,73730.0,23629.0,0.8,1118931.0,9801.0,6090.0,2.0,
Japan,2022-03-14,0.22499999999999998,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Latvia,2022-03-14,0.5,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lithuania,2022-03-14,0.0,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Luxembourg,2022-03-14,0.0,19270000.0,15670000.0,298062.0,47.62,81757.0,1821.0,1132.0,3.0,79.0
Maldives,2022-03-14,0.31,1290000.0,2980000.0,70079.0,12.96,3715.0,6552.0,4071.0,2.0,
Netherlands,2022-03-14,0.27575757575757576,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
New Zealand,2022-03-14,0.13749999999999996,23900000.0,11800000.0,1381724.0,28.65,806159.0,17058.0,10599.0,3.0,83.0
Nicaragua,2022-03-14,-0.1,1780000.0,183860.0,42167.0,0.64,718154.0,10781.0,6699.0,1.0,37.0
Nigeria,2022-03-14,-0.06590909090909096,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-03-14,,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-03-14,0.1934523809523809,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
"Palestine, State of",2022-03-14,0.0,,,,,,,,,
Peru,2022-03-14,,30040000.0,126540000.0,1224519.0,3.71,1519635.0,11963.0,7433.0,2.0,
Philippines,2022-03-14,0.05,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-03-14,-0.03333333333333334,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-03-14,0.5,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-03-14,0.1,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Russian Federation,2022-03-14,0.0,,,,,,,,,
Saint Lucia,2022-03-14,0.19999999999999996,,,,,,,,,
Singapore,2022-03-14,-0.03125,46170000.0,21790000.0,2523648.0,43.14,348464.0,8623.0,5358.0,1.0,44.0
Slovenia,2022-03-14,0.0,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
South Africa,2022-03-14,-0.1222222222222222,95950000.0,21870000.0,2860495.0,4.82,914901.0,8816.0,5478.0,2.0,75.0
South Korea,2022-03-14,0.0,676390000.0,267279999.99999997,1728182.0,3.37,2204554.0,7548.0,4690.0,3.0,72.0
South Sudan,2022-03-14,0.0,6000.0,3930000.0,882252.0,7.88,2575870.0,4615.0,2868.0,0.0,47.0
Spain,2022-03-14,0.25,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sudan,2022-03-14,0.0,9180000.0,53030000.0,1379147.0,3.15,2104887.0,3950.0,2454.0,0.0,
Sweden,2022-03-14,0.002777777777777763,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-03-14,0.0999999999999999,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
"Taiwan, Province of China",2022-03-14,0.0,,,,,,,,,
Thailand,2022-03-14,-0.125,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Trinidad and Tobago,2022-03-14,0.2,,,,,,,,,
Turkey,2022-03-14,,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-03-14,0.5,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-03-14,-0.29696969696969694,,,,,,,,,
United Kingdom,2022-03-14,0.011770482603815928,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-14,0.06850584687848839,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Uruguay,2022-03-14,,1860000.0,3200000.0,108267.0,3.12,367060.0,12435.0,7727.0,3.0,72.0
Venezuela,2022-03-14,,671980.0,5040000.0,1324193.0,4.66,5415337.0,10042.0,6240.0,1.0,37.0
"Venezuela, Bolivarian Republic of",2022-03-14,-0.08888888888888886,,,,,,,,,
Argentina,2022-03-15,0.0,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-03-15,-0.008333333333333331,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-03-15,,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Belgium,2022-03-15,0.22537878787878785,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Brazil,2022-03-15,0.0,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Cabo Verde,2022-03-15,0.0,,,,,,,,,
Canada,2022-03-15,-0.002114280055456531,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Colombia,2022-03-15,0.0,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Croatia,2022-03-15,0.0,65410000.0,46590000.0,528056.0,12.86,1039526.0,1267.0,787.0,2.0,70.0
Czechia,2022-03-15,,,,,,,,,,
Denmark,2022-03-15,,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Dominican Republic,2022-03-15,,7250000.0,360740000.0,603794.0,5.57,1608567.0,9263.0,5756.0,2.0,
Ecuador,2022-03-15,,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Estonia,2022-03-15,-0.15625,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Finland,2022-03-15,0.16666666666666666,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-15,0.0,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Georgia,2022-03-15,0.1363636363636363,199360000.0,430520000.0,79368.0,1.99,861077.0,1165.0,724.0,2.0,59.0
Germany,2022-03-15,-0.03333333333333333,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Ghana,2022-03-15,0.0,129940000.0,136990000.0,476412.0,1.53,1004324.0,5415.0,3365.0,2.0,67.0
Guatemala,2022-03-15,0.0,67270000.0,53900000.0,84311.0,0.47,1368431.0,10836.0,6733.0,2.0,
Haiti,2022-03-15,-0.0318181818181818,160800.0,36590000.0,18884.0,0.17,1769671.0,9389.0,5834.0,1.0,64.0
Honduras,2022-03-15,0.19999999999999998,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
Hungary,2022-03-15,0.0,1520000000.0,1580000000.0,584567.0,6.05,714420.0,881.0,547.0,1.0,59.0
India,2022-03-15,0.17708333333333331,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-03-15,0.0,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
"Iran, Islamic Republic of",2022-03-15,,,,,,,,,,
Ireland,2022-03-15,-0.0714285714285714,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Italy,2022-03-15,0.05555555555555553,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Jamaica,2022-03-15,-0.18645833333333334,454190.0,73730.0,23629.0,0.8,1118931.0,9801.0,6090.0,2.0,
Japan,2022-03-15,0.2142857142857142,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
"Korea, Republic of",2022-03-15,0.0,,,,,,,,,
Luxembourg,2022-03-15,,19270000.0,15670000.0,298062.0,47.62,81757.0,1821.0,1132.0,3.0,79.0
Malaysia,2022-03-15,-0.25,276460000.0,136390000.0,3476560.0,10.74,1860037.0,8248.0,5125.0,1.0,
Mali,2022-03-15,-0.21944444444444444,6600000.0,28210000.0,485829.0,2.4,1303511.0,4668.0,2901.0,0.0,54.0
Mexico,2022-03-15,,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
"Moldova, Republic of",2022-03-15,0.5,,,,,,,,,
Morocco,2022-03-15,0.0,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Netherlands,2022-03-15,0.11833333333333332,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
New Zealand,2022-03-15,0.4222222222222222,23900000.0,11800000.0,1381724.0,28.65,806159.0,17058.0,10599.0,3.0,83.0
Nigeria,2022-03-15,0.1,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Norway,2022-03-15,0.0,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-03-15,,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
"Palestine, State of",2022-03-15,-0.5,,,,,,,,,
Panama,2022-03-15,0.0,4300000.0,5000000.0,313165.0,7.26,139520.0,10867.0,6752.0,2.0,
Philippines,2022-03-15,-0.03446969696969698,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-03-15,,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-03-15,0.26666666666666666,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-03-15,0.0,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Russian Federation,2022-03-15,,,,,,,,,,
Saint Vincent and the Grenadines,2022-03-15,-0.5,,,,,,,,,
Serbia,2022-03-15,,191120000.0,195730000.0,823011.0,9.42,1003962.0,919.0,571.0,1.0,61.0
Slovakia,2022-03-15,0.0,927180000.0,948560000.0,197161.0,3.61,419651.0,844.0,524.0,2.0,78.0
Slovenia,2022-03-15,0.0,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
South Africa,2022-03-15,0.0416666666666667,95950000.0,21870000.0,2860495.0,4.82,914901.0,8816.0,5478.0,2.0,75.0
Spain,2022-03-15,-0.051851851851851836,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sweden,2022-03-15,-0.05,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-03-15,0.21666666666666665,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
"Tanzania, United Republic of",2022-03-15,0.0,,,,,,,,,
Turkey,2022-03-15,,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-03-15,0.05,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-03-15,-0.04903846153846154,,,,,,,,,
United Kingdom,2022-03-15,0.07434955616773799,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-15,0.0607511382295865,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Uruguay,2022-03-15,-0.0625,1860000.0,3200000.0,108267.0,3.12,367060.0,12435.0,7727.0,3.0,72.0
Uzbekistan,2022-03-15,,260800000.0,402820000.0,1162007.0,3.47,2027823.0,2722.0,1691.0,1.0,45.0
"Venezuela, Bolivarian Republic of",2022-03-15,0.005555555555555526,,,,,,,,,
Viet Nam,2022-03-15,0.05,,,,,,,,,
Virgin Islands (US),2022-03-15,0.0,,,,,,,,,
Yemen,2022-03-15,0.0,2380000.0,234710000.0,387113.0,1.3,1301166.0,3979.0,2472.0,0.0,
Zimbabwe,2022-03-15,0.0,2420000.0,40920.0,416141.0,2.8,1243314.0,7497.0,4658.0,1.0,44.0
Algeria,2022-03-16,,44780000.0,410230000.0,250378.0,0.57,2022337.0,3392.0,2108.0,1.0,45.0
Australia,2022-03-16,0.14950396825396825,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Bahamas,2022-03-16,0.0,12600.0,197610.0,63583.0,16.17,53793.0,9211.0,5723.0,,
Belarus,2022-03-16,,4710000000.0,1460000000.0,1067090.0,11.29,1483626.0,634.0,394.0,1.0,39.0
Belgium,2022-03-16,0.42500000000000004,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Bosnia and Herzegovina,2022-03-16,,,,,,,,,,
Bulgaria,2022-03-16,-0.375,514730000.0,781770000.0,184363.0,2.65,1683626.0,767.0,477.0,2.0,59.0
Canada,2022-03-16,0.05097069597069596,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Central African Republic,2022-03-16,0.0,486980.0,1390000.0,88546.0,1.83,816668.0,4744.0,2948.0,1.0,56.0
Chad,2022-03-16,0.6,1740.0,4220000.0,547494.0,3.33,222303.0,3834.0,2382.0,0.0,56.0
China,2022-03-16,-0.1058531746031746,10640000000.0,7990000000.0,1039675.0,0.07,10461170.0,5947.0,3695.0,0.0,25.0
Estonia,2022-03-16,0.0,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Finland,2022-03-16,0.0,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-16,-0.05151515151515149,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-03-16,0.11061073699962587,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Guernsey,2022-03-16,0.5,,,,,,,,,
Honduras,2022-03-16,0.0,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
Hungary,2022-03-16,,1520000000.0,1580000000.0,584567.0,6.05,714420.0,881.0,547.0,1.0,59.0
India,2022-03-16,0.3549382716049383,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Indonesia,2022-03-16,,414610000.0,734950000.0,355505.0,0.13,4601369.0,9539.0,5927.0,2.0,
Ireland,2022-03-16,-0.39999999999999997,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Israel,2022-03-16,,211520000.0,711700000.0,1953575.0,22.57,358691.0,1952.0,1213.0,3.0,59.0
Italy,2022-03-16,0.9,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-03-16,0.375,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Latvia,2022-03-16,,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lithuania,2022-03-16,0.0,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Marshall Islands,2022-03-16,0.0,200000.0,430050.0,3298.0,5.57,10886.0,11967.0,7436.0,,
Mexico,2022-03-16,-0.625,299680000.0,188570000.0,1197624.0,0.93,11185737.0,10779.0,6698.0,2.0,47.0
"Moldova, Republic of",2022-03-16,0.0,,,,,,,,,
Montenegro,2022-03-16,0.0,5090000.0,6770000.0,70999.0,11.3,132965.0,1112.0,691.0,1.0,
Morocco,2022-03-16,0.25,125600000.0,520870000.0,102358.0,0.28,3262222.0,3687.0,2291.0,0.0,
Netherlands,2022-03-16,0.1,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
Nigeria,2022-03-16,,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
North Macedonia,2022-03-16,0.0,,,,,,,,,
Norway,2022-03-16,0.265625,372000000.0,38350000.0,852238.0,15.72,191392.0,1972.0,1225.0,3.0,92.0
Pakistan,2022-03-16,-0.1333333333333333,91970000.0,572620000.0,3276580.0,1.48,6328400.0,3787.0,2353.0,1.0,37.0
Philippines,2022-03-16,0.3416666666666667,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-03-16,0.15334821428571427,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-03-16,0.2,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Romania,2022-03-16,0.21666666666666665,796060000.0,1500000000.0,705310.0,3.67,3987093.0,541.0,336.0,2.0,68.0
Russian Federation,2022-03-16,,,,,,,,,,
Saint Kitts and Nevis,2022-03-16,0.0,,,,,,,,,
Sierra Leone,2022-03-16,-0.2395833333333333,231790.0,6680000.0,53746.0,0.67,152486.0,5980.0,3716.0,2.0,71.0
Slovenia,2022-03-16,0.0,279790000.0,67380000.0,277964.0,13.37,160197.0,1243.0,772.0,2.0,68.0
South Africa,2022-03-16,0.0,95950000.0,21870000.0,2860495.0,4.82,914901.0,8816.0,5478.0,2.0,75.0
South Sudan,2022-03-16,0.75,6000.0,3930000.0,882252.0,7.88,2575870.0,4615.0,2868.0,0.0,47.0
Spain,2022-03-16,0.05404040404040406,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Suriname,2022-03-16,-0.2,394570.0,7590000.0,47801.0,8.15,273209.0,9475.0,5887.0,2.0,
Switzerland,2022-03-16,0.0,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Thailand,2022-03-16,,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Trinidad and Tobago,2022-03-16,0.39,,,,,,,,,
Turkey,2022-03-16,-0.5,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-03-16,0.07499999999999998,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-03-16,-0.015527065527065528,,,,,,,,,
United Kingdom,2022-03-16,-0.02817460317460318,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-16,0.06259890984206053,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Venezuela,2022-03-16,,671980.0,5040000.0,1324193.0,4.66,5415337.0,10042.0,6240.0,1.0,37.0
Zimbabwe,2022-03-16,0.0,2420000.0,40920.0,416141.0,2.8,1243314.0,7497.0,4658.0,1.0,44.0
Albania,2022-03-17,0.0,6810000.0,39770000.0,48810.0,1.7,1250451.0,1181.0,734.0,1.0,56.0
Argentina,2022-03-17,,60950000.0,33460000.0,2281728.0,5.05,1076148.0,13402.0,8328.0,2.0,77.0
Australia,2022-03-17,0.34128787878787875,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-03-17,,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Belgium,2022-03-17,0.0,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Brazil,2022-03-17,0.1,371310000.0,189410000.0,1079708.0,0.51,1897128.0,10687.0,6641.0,2.0,
Burkina Faso,2022-03-17,,183380.0,30680000.0,723989.0,3.46,1599347.0,5027.0,3124.0,2.0,73.0
Cambodia,2022-03-17,,26730000.0,2370000.0,79341.0,0.47,1104819.0,7775.0,4831.0,1.0,43.0
Cameroon,2022-03-17,,863760.0,99460000.0,579209.0,2.18,441015.0,4892.0,3040.0,1.0,49.0
Canada,2022-03-17,-0.034396344396344404,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
China,2022-03-17,-0.15416666666666665,10640000000.0,7990000000.0,1039675.0,0.07,10461170.0,5947.0,3695.0,0.0,25.0
Colombia,2022-03-17,0.0,80770000.0,207300000.0,1905393.0,3.74,3024273.0,10754.0,6682.0,2.0,42.0
Czechia,2022-03-17,,,,,,,,,,
Denmark,2022-03-17,0.03125,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0
Ecuador,2022-03-17,0.3,153790000.0,4090000.0,784787.0,4.45,1127891.0,11577.0,7194.0,2.0,64.0
Estonia,2022-03-17,0.0,173870000.0,163200000.0,199277.0,15.02,206631.0,1205.0,749.0,3.0,19.0
Ethiopia,2022-03-17,-0.3333333333333333,6560000.0,245730000.0,1085517.0,0.94,946129.0,4449.0,2764.0,1.0,50.0
Finland,2022-03-17,0.0,303210000.0,108100000.0,386052.0,6.97,311889.0,1544.0,959.0,3.0,88.0
France,2022-03-17,0.18611111111111112,1730000000.0,850250000.0,8524876.0,13.06,2341908.0,2183.0,1356.0,3.0,78.0
Germany,2022-03-17,0.03489583333333334,6070000000.0,2790000000.0,15762457.0,18.81,3855268.0,1514.0,941.0,3.0,82.0
Greece,2022-03-17,0.0,448320000.0,221450000.0,1340456.0,12.86,1088507.0,1276.0,793.0,3.0,55.0
Honduras,2022-03-17,0.25833333333333336,7930000.0,5030000.0,39195.0,0.4,985077.0,10640.0,6611.0,1.0,
India,2022-03-17,0.008333333333333331,934540000.0,2510000000.0,4878704.0,0.35,17869492.0,5238.0,3255.0,1.0,
Ireland,2022-03-17,0.13276515151515147,228730000.0,97900000.0,871256.0,17.64,734317.0,2783.0,1729.0,3.0,88.0
Italy,2022-03-17,-0.1,2620000000.0,3240000000.0,6386998.0,10.56,3258831.0,1623.0,1008.0,3.0,
Japan,2022-03-17,0.0,1210000000.0,341490000.0,2770996.0,2.19,808825.0,8172.0,5078.0,3.0,64.0
Kazakhstan,2022-03-17,,806180000.0,424540000.0,3732073.0,19.88,4203899.0,2626.0,1632.0,1.0,48.0
Kiribati,2022-03-17,0.475,,,3126.0,2.62,5103.0,14367.0,8927.0,,
Latvia,2022-03-17,0.1,203900000.0,282460000.0,239422.0,12.69,380010.0,1043.0,648.0,3.0,79.0
Lithuania,2022-03-17,,1230000000.0,553370000.0,145184.0,5.33,658057.0,905.0,562.0,2.0,84.0
Luxembourg,2022-03-17,0.1363636363636363,19270000.0,15670000.0,298062.0,47.62,81757.0,1821.0,1132.0,3.0,79.0
Mali,2022-03-17,0.1875,6600000.0,28210000.0,485829.0,2.4,1303511.0,4668.0,2901.0,0.0,54.0
Mozambique,2022-03-17,0.1270833333333333,11550000.0,22760000.0,338850.0,1.08,640160.0,7468.0,4640.0,1.0,49.0
Myanmar,2022-03-17,-0.05,19470000.0,26320000.0,76446.0,0.14,3711751.0,6362.0,3953.0,0.0,25.0
Netherlands,2022-03-17,-0.07291666666666667,962960000.0,2130000000.0,2358333.0,13.76,970403.0,1875.0,1165.0,3.0,77.0
New Zealand,2022-03-17,0.0,23900000.0,11800000.0,1381724.0,28.65,806159.0,17058.0,10599.0,3.0,83.0
Nigeria,2022-03-17,-0.11562500000000002,8410000.0,153650000.0,1308568.0,0.63,1670455.0,4850.0,3014.0,1.0,46.0
Peru,2022-03-17,0.0,30040000.0,126540000.0,1224519.0,3.71,1519635.0,11963.0,7433.0,2.0,
Philippines,2022-03-17,0.09444444444444444,65280000.0,107530000.0,225525.0,0.21,6094307.0,8985.0,5583.0,1.0,41.0
Poland,2022-03-17,0.25625,4890000000.0,4980000000.0,817254.0,2.16,4825096.0,941.0,585.0,2.0,65.0
Portugal,2022-03-17,0.2227272727272727,88960000.0,315640000.0,1001963.0,9.83,2081419.0,3270.0,2032.0,2.0,87.0
Russia,2022-03-17,0.0,5850000000.0,3350000000.0,11636911.0,7.97,10756697.0,4666.0,2899.0,1.0,45.0
Russian Federation,2022-03-17,,,,,,,,,,
Saint Lucia,2022-03-17,-0.0416666666666666,,,,,,,,,
Saint Vincent and the Grenadines,2022-03-17,0.0,,,,,,,,,
Sierra Leone,2022-03-17,0.0,231790.0,6680000.0,53746.0,0.67,152486.0,5980.0,3716.0,2.0,71.0
Slovakia,2022-03-17,0.375,927180000.0,948560000.0,197161.0,3.61,419651.0,844.0,524.0,2.0,78.0
Spain,2022-03-17,0.10068181818181819,950390000.0,1640000000.0,6842202.0,14.63,1489823.0,2880.0,1790.0,3.0,76.0
Sudan,2022-03-17,0.0681818181818181,9180000.0,53030000.0,1379147.0,3.15,2104887.0,3950.0,2454.0,0.0,
Sweden,2022-03-17,-0.14,717160000.0,106080000.0,2003908.0,19.84,327581.0,1533.0,953.0,3.0,88.0
Switzerland,2022-03-17,0.06818181818181815,1620000000.0,212250000.0,2491249.0,28.79,713623.0,1722.0,1070.0,3.0,
Thailand,2022-03-17,,252100000.0,262990000.0,3632496.0,5.2,1086985.0,7213.0,4482.0,0.0,50.0
Turkey,2022-03-17,,3150000000.0,4000000000.0,6052652.0,7.18,3411408.0,1097.0,682.0,1.0,
Uganda,2022-03-17,0.0,7370000.0,7560000.0,1720313.0,3.76,781440.0,5228.0,3249.0,1.0,
Ukraine,2022-03-17,0.11333333333333333,,,,,,,,,
United Kingdom,2022-03-17,0.026093202432488142,1080000000.0,1050000000.0,9359587.0,13.79,4732510.0,2470.0,1535.0,3.0,78.0
United States,2022-03-17,0.06856737012987013,3410000000.0,1550000000.0,50632836.0,15.28,2996223.0,9158.0,5691.0,3.0,72.0
Uruguay,2022-03-17,,1860000.0,3200000.0,108267.0,3.12,367060.0,12435.0,7727.0,3.0,72.0
"Venezuela, Bolivarian Republic of",2022-03-17,0.0,,,,,,,,,
Zimbabwe,2022-03-17,0.3,2420000.0,40920.0,416141.0,2.8,1243314.0,7497.0,4658.0,1.0,44.0
Australia,2022-03-18,0.06999999999999999,154870000.0,61330000.0,7685860.0,30.14,598765.0,12983.0,8067.0,3.0,73.0
Austria,2022-03-18,0.05,828920000.0,904650000.0,1738183.0,19.3,600740.0,1239.0,770.0,2.0,76.0
Azerbaijan,2022-03-18,,651710000.0,389530000.0,252228.0,2.49,1163922.0,1591.0,989.0,1.0,39.0
Belgium,2022-03-18,0.03409090909090905,724740000.0,650160000.0,2005479.0,17.3,577463.0,1934.0,1202.0,3.0,78.0
Belize,2022-03-18,,1120000.0,69180.0,62043.0,15.6,52756.0,10602.0,6588.0,,
Cabo Verde,2022-03-18,,,,,,,,,,
Canada,2022-03-18,-0.011944444444444438,251690000.0,155870000.0,8049323.0,21.33,1292329.0,7745.0,4813.0,3.0,
Chile,2022-03-18,-0.2,53730000.0,11210000.0,1645015.0,8.61,643800.0,13753.0,8546.0,3.0,60.0
Croatia,2022-03-18,0.3,65410000.0,46590000.0,528056.0,12.86,1039526.0,1267.0,787.0,2.0,70.0
Czechia,2022-03-18,0.1071428571428571,,,,,,,,,
Côte d'Ivoire,2022-03-18,,,,,,,,,,
Denmark,2022-03-18,0.0,295480000.0,279840000.0,717574.0,12.39,257025.0,1703.0,1058.0,3.0,90.0