diff --git a/UserInterface.py b/UserInterface.py
index 964beaa..0903c54 100644
--- a/UserInterface.py
+++ b/UserInterface.py
@@ -12,7 +12,7 @@ from PyQt5.QtCore import *
import Analyser as ana
-class UserInterface(QMainWindow):
+class UserInterface(QWidget):
def __init__(self, app):
super().__init__()
# Get Analyser instance and required stuff from it
@@ -24,8 +24,8 @@ class UserInterface(QMainWindow):
# PyQT Setup
self.setWindowTitle('COVID-19 Analytics')
screen_width, screen_height = app.desktop().screenGeometry().width(), app.desktop().screenGeometry().height()
- self.setGeometry(((screen_width / 2) - 750), ((screen_height / 2) - 375), 1500, 750)
- self.setMinimumWidth(1500)
+ self.setGeometry(((screen_width / 2) - 500), ((screen_height / 2) - 250), 1000, 500)
+ self.setMinimumWidth(1000)
self.setMinimumHeight(500)
# Plot DPI Settings
@@ -33,11 +33,11 @@ class UserInterface(QMainWindow):
# Layout boxes
self.header_box = QHBoxLayout()
- h2box1 = QHBoxLayout()
- labelBox = QHBoxLayout()
- picklistBox = QHBoxLayout()
- buttonBox = QHBoxLayout()
- caseNumberBox = QHBoxLayout()
+ self.h2box1 = QHBoxLayout()
+ self.labelBox = QHBoxLayout()
+ self.picklistBox = QHBoxLayout()
+ self.buttonBox = QHBoxLayout()
+ self.caseNumberBox = QHBoxLayout()
self.graphBox = QHBoxLayout()
# Heading
@@ -46,78 +46,78 @@ class UserInterface(QMainWindow):
# Sub-Header
subheader1 = QLabel('
Statistics about one country
')
- h2box1.addWidget(subheader1)
+ self.h2box1.addWidget(subheader1)
# Country Picker
countryPickerLabel = QLabel('Pick a country:
')
- labelBox.addWidget(countryPickerLabel)
- # self.countryPicker = QComboBox(parent=self)
+ self.labelBox.addWidget(countryPickerLabel)
+ # self.countryPicker = QComboBox()
# self.countryPicker.addItems(countries)
# self.countryPicker.setCurrentText('Germany')
# picklistBox.addWidget(self.countryPicker, 1)
self.countryPicker = QLineEdit()
self.countryPicker.setCompleter(QCompleter(countries))
self.countryPicker.setText('Germany')
- picklistBox.addWidget(self.countryPicker, 1)
+ self.picklistBox.addWidget(self.countryPicker, 1)
# Start Date Picker
startDatePickerLabel = QLabel('Pick a start date:
')
- labelBox.addWidget(startDatePickerLabel)
- self.startDatePicker = QComboBox(parent=self)
+ self.labelBox.addWidget(startDatePickerLabel)
+ self.startDatePicker = QComboBox()
self.startDatePicker.addItems(dates)
self.startDatePicker.setCurrentText('2019-12-31')
- picklistBox.addWidget(self.startDatePicker, 1)
+ self.picklistBox.addWidget(self.startDatePicker, 1)
# End Date Picker
endDatePickerLabel = QLabel('Pick an end date:
')
- labelBox.addWidget(endDatePickerLabel)
- self.endDatePicker = QComboBox(parent=self)
+ self.labelBox.addWidget(endDatePickerLabel)
+ self.endDatePicker = QComboBox()
self.endDatePicker.addItems(dates)
self.endDatePicker.setCurrentText(dates[len(dates) - 1])
- picklistBox.addWidget(self.endDatePicker, 1)
+ self.picklistBox.addWidget(self.endDatePicker, 1)
# Graph Type Picker
graphTypePickerLabel = QLabel('Pick a graph type:
')
- labelBox.addWidget(graphTypePickerLabel)
- self.graphTypePicker = QComboBox(parent=self)
+ self.labelBox.addWidget(graphTypePickerLabel)
+ self.graphTypePicker = QComboBox()
self.graphTypePicker.addItems(
['Total Cases', 'Case Increase', 'Increase Percentage', 'Cases per Million', 'Total Deaths',
'Death Increase', 'Death Rate', 'Deaths per Million', 'Is it going to end soon?',
'Double Rate Compare'])
- picklistBox.addWidget(self.graphTypePicker, 1)
+ self.picklistBox.addWidget(self.graphTypePicker, 1)
# Calculate Button
self.calculateSingleCountryStats = QPushButton('Calculate')
- buttonBox.addWidget(self.calculateSingleCountryStats)
+ self.buttonBox.addWidget(self.calculateSingleCountryStats)
self.calculateSingleCountryStats.setCheckable(True)
self.calculateSingleCountryStats.clicked.connect(self.btnstate)
# Total cases number
- self.casesNumber = QLabel('Total Case Number: NaN
')
- caseNumberBox.addWidget(self.casesNumber)
+ self.casesNumber = QLabel('Daily Statistics appear here once you click "Calculate"
')
+ self.caseNumberBox.addWidget(self.casesNumber)
# Generate Layout
layout = QVBoxLayout()
layout.addLayout(self.header_box)
layout.addSpacing(50)
- layout.addLayout(h2box1)
+ layout.addLayout(self.h2box1)
layout.addSpacing(10)
- layout.addLayout(labelBox)
- layout.addLayout(picklistBox)
+ layout.addLayout(self.labelBox)
+ layout.addLayout(self.picklistBox)
layout.addSpacing(10)
- layout.addLayout(buttonBox)
+ layout.addLayout(self.buttonBox)
layout.addSpacing(10)
- layout.addLayout(caseNumberBox)
+ layout.addLayout(self.caseNumberBox)
layout.addSpacing(10)
layout.addLayout(self.graphBox)
layout.addStretch(1)
- self.scrollArea = QScrollArea()
- self.scrollArea.setLayout(layout)
- self.scrollArea.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
-
- self.setCentralWidget(self.scrollArea)
- # self.setLayout(layout)
+ # self.scrollArea = QScrollArea()
+ # self.scrollArea.setLayout(layout)
+ # self.scrollArea.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
+ #
+ # self.setCentralWidget(self.scrollArea)
+ self.setLayout(layout)
self.show()
def btnstate(self):
diff --git a/statsfile.csv b/statsfile.csv
index ddf5576..d40c348 100644
--- a/statsfile.csv
+++ b/statsfile.csv
@@ -1,4 +1,5 @@
dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterritoryCode,popData2018
+13/04/2020,13,4,2020,52,0,Afghanistan,AF,AFG,37172386
12/04/2020,12,4,2020,34,3,Afghanistan,AF,AFG,37172386
11/04/2020,11,4,2020,37,0,Afghanistan,AF,AFG,37172386
10/04/2020,10,4,2020,61,1,Afghanistan,AF,AFG,37172386
@@ -93,6 +94,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Afghanistan,AF,AFG,37172386
01/01/2020,1,1,2020,0,0,Afghanistan,AF,AFG,37172386
31/12/2019,31,12,2019,0,0,Afghanistan,AF,AFG,37172386
+13/04/2020,13,4,2020,13,0,Albania,AL,ALB,2866376
12/04/2020,12,4,2020,17,0,Albania,AL,ALB,2866376
11/04/2020,11,4,2020,7,0,Albania,AL,ALB,2866376
10/04/2020,10,4,2020,9,1,Albania,AL,ALB,2866376
@@ -128,6 +130,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
11/03/2020,11,3,2020,4,0,Albania,AL,ALB,2866376
10/03/2020,10,3,2020,4,0,Albania,AL,ALB,2866376
09/03/2020,9,3,2020,2,0,Albania,AL,ALB,2866376
+13/04/2020,13,4,2020,89,18,Algeria,DZ,DZA,42228429
12/04/2020,12,4,2020,64,19,Algeria,DZ,DZA,42228429
11/04/2020,11,4,2020,95,21,Algeria,DZ,DZA,42228429
10/04/2020,10,4,2020,94,30,Algeria,DZ,DZA,42228429
@@ -227,6 +230,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Algeria,DZ,DZA,42228429
01/01/2020,1,1,2020,0,0,Algeria,DZ,DZA,42228429
31/12/2019,31,12,2019,0,0,Algeria,DZ,DZA,42228429
+13/04/2020,13,4,2020,16,1,Andorra,AD,AND,77006
12/04/2020,12,4,2020,21,2,Andorra,AD,AND,77006
11/04/2020,11,4,2020,18,1,Andorra,AD,AND,77006
10/04/2020,10,4,2020,19,2,Andorra,AD,AND,77006
@@ -257,6 +261,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,3,0,Andorra,AD,AND,77006
14/03/2020,14,3,2020,1,0,Andorra,AD,AND,77006
03/03/2020,3,3,2020,1,0,Andorra,AD,AND,77006
+13/04/2020,13,4,2020,0,0,Angola,AO,AGO,30809762
12/04/2020,12,4,2020,0,0,Angola,AO,AGO,30809762
11/04/2020,11,4,2020,0,0,Angola,AO,AGO,30809762
10/04/2020,10,4,2020,0,0,Angola,AO,AGO,30809762
@@ -279,6 +284,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
24/03/2020,24,3,2020,0,0,Angola,AO,AGO,30809762
23/03/2020,23,3,2020,0,0,Angola,AO,AGO,30809762
22/03/2020,22,3,2020,2,0,Angola,AO,AGO,30809762
+13/04/2020,13,4,2020,0,0,Anguilla,AI,,
12/04/2020,12,4,2020,0,0,Anguilla,AI,,
11/04/2020,11,4,2020,0,0,Anguilla,AI,,
10/04/2020,10,4,2020,0,0,Anguilla,AI,,
@@ -296,6 +302,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
29/03/2020,29,3,2020,0,0,Anguilla,AI,,
28/03/2020,28,3,2020,0,0,Anguilla,AI,,
27/03/2020,27,3,2020,2,0,Anguilla,AI,,
+13/04/2020,13,4,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286
12/04/2020,12,4,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286
11/04/2020,11,4,2020,2,0,Antigua_and_Barbuda,AG,ATG,96286
10/04/2020,10,4,2020,4,2,Antigua_and_Barbuda,AG,ATG,96286
@@ -320,6 +327,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286
21/03/2020,21,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286
15/03/2020,15,3,2020,1,0,Antigua_and_Barbuda,AG,ATG,96286
+13/04/2020,13,4,2020,71,6,Argentina,AR,ARG,44494502
12/04/2020,12,4,2020,162,7,Argentina,AR,ARG,44494502
11/04/2020,11,4,2020,81,3,Argentina,AR,ARG,44494502
10/04/2020,10,4,2020,99,14,Argentina,AR,ARG,44494502
@@ -357,6 +365,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
07/03/2020,7,3,2020,6,0,Argentina,AR,ARG,44494502
06/03/2020,6,3,2020,1,0,Argentina,AR,ARG,44494502
04/03/2020,4,3,2020,1,0,Argentina,AR,ARG,44494502
+13/04/2020,13,4,2020,46,0,Armenia,AM,ARM,2951776
12/04/2020,12,4,2020,30,2,Armenia,AM,ARM,2951776
11/04/2020,11,4,2020,16,1,Armenia,AM,ARM,2951776
10/04/2020,10,4,2020,40,1,Armenia,AM,ARM,2951776
@@ -452,6 +461,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Armenia,AM,ARM,2951776
01/01/2020,1,1,2020,0,0,Armenia,AM,ARM,2951776
31/12/2019,31,12,2019,0,0,Armenia,AM,ARM,2951776
+13/04/2020,13,4,2020,0,0,Aruba,AW,ABW,105845
12/04/2020,12,4,2020,6,0,Aruba,AW,ABW,105845
11/04/2020,11,4,2020,4,0,Aruba,AW,ABW,105845
10/04/2020,10,4,2020,5,0,Aruba,AW,ABW,105845
@@ -473,6 +483,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
24/03/2020,24,3,2020,8,0,Aruba,AW,ABW,105845
20/03/2020,20,3,2020,2,0,Aruba,AW,ABW,105845
13/03/2020,13,3,2020,2,0,Aruba,AW,ABW,105845
+13/04/2020,13,4,2020,33,4,Australia,AU,AUS,24992369
12/04/2020,12,4,2020,51,3,Australia,AU,AUS,24992369
11/04/2020,11,4,2020,86,2,Australia,AU,AUS,24992369
10/04/2020,10,4,2020,100,2,Australia,AU,AUS,24992369
@@ -577,6 +588,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Australia,AU,AUS,24992369
01/01/2020,1,1,2020,0,0,Australia,AU,AUS,24992369
31/12/2019,31,12,2019,0,0,Australia,AU,AUS,24992369
+13/04/2020,13,4,2020,130,13,Austria,AT,AUT,8847037
12/04/2020,12,4,2020,247,18,Austria,AT,AUT,8847037
11/04/2020,11,4,2020,312,24,Austria,AT,AUT,8847037
10/04/2020,10,4,2020,279,22,Austria,AT,AUT,8847037
@@ -681,6 +693,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Austria,AT,AUT,8847037
01/01/2020,1,1,2020,0,0,Austria,AT,AUT,8847037
31/12/2019,31,12,2019,0,0,Austria,AT,AUT,8847037
+13/04/2020,13,4,2020,40,0,Azerbaijan,AZ,AZE,9942334
12/04/2020,12,4,2020,67,1,Azerbaijan,AZ,AZE,9942334
11/04/2020,11,4,2020,65,1,Azerbaijan,AZ,AZE,9942334
10/04/2020,10,4,2020,104,1,Azerbaijan,AZ,AZE,9942334
@@ -778,6 +791,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Azerbaijan,AZ,AZE,9942334
01/01/2020,1,1,2020,0,0,Azerbaijan,AZ,AZE,9942334
31/12/2019,31,12,2019,0,0,Azerbaijan,AZ,AZE,9942334
+13/04/2020,13,4,2020,1,0,Bahamas,BS,BHS,385640
12/04/2020,12,4,2020,4,0,Bahamas,BS,BHS,385640
11/04/2020,11,4,2020,1,0,Bahamas,BS,BHS,385640
10/04/2020,10,4,2020,1,1,Bahamas,BS,BHS,385640
@@ -804,6 +818,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
20/03/2020,20,3,2020,2,0,Bahamas,BS,BHS,385640
17/03/2020,17,3,2020,0,0,Bahamas,BS,BHS,385640
16/03/2020,16,3,2020,1,0,Bahamas,BS,BHS,385640
+13/04/2020,13,4,2020,96,0,Bahrain,BH,BHR,1569439
12/04/2020,12,4,2020,42,0,Bahrain,BH,BHR,1569439
11/04/2020,11,4,2020,111,1,Bahrain,BH,BHR,1569439
10/04/2020,10,4,2020,64,0,Bahrain,BH,BHR,1569439
@@ -907,6 +922,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Bahrain,BH,BHR,1569439
01/01/2020,1,1,2020,0,0,Bahrain,BH,BHR,1569439
31/12/2019,31,12,2019,0,0,Bahrain,BH,BHR,1569439
+13/04/2020,13,4,2020,139,4,Bangladesh,BD,BGD,161356039
12/04/2020,12,4,2020,58,3,Bangladesh,BD,BGD,161356039
11/04/2020,11,4,2020,94,6,Bangladesh,BD,BGD,161356039
10/04/2020,10,4,2020,112,1,Bangladesh,BD,BGD,161356039
@@ -936,6 +952,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,2,0,Bangladesh,BD,BGD,161356039
15/03/2020,15,3,2020,0,0,Bangladesh,BD,BGD,161356039
09/03/2020,9,3,2020,3,0,Bangladesh,BD,BGD,161356039
+13/04/2020,13,4,2020,3,0,Barbados,BB,BRB,286641
12/04/2020,12,4,2020,1,0,Barbados,BB,BRB,286641
11/04/2020,11,4,2020,1,1,Barbados,BB,BRB,286641
10/04/2020,10,4,2020,3,0,Barbados,BB,BRB,286641
@@ -962,6 +979,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
20/03/2020,20,3,2020,1,0,Barbados,BB,BRB,286641
19/03/2020,19,3,2020,0,0,Barbados,BB,BRB,286641
18/03/2020,18,3,2020,1,0,Barbados,BB,BRB,286641
+13/04/2020,13,4,2020,352,3,Belarus,BY,BLR,9485386
12/04/2020,12,4,2020,245,4,Belarus,BY,BLR,9485386
11/04/2020,11,4,2020,495,3,Belarus,BY,BLR,9485386
10/04/2020,10,4,2020,420,3,Belarus,BY,BLR,9485386
@@ -1058,6 +1076,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Belarus,BY,BLR,9485386
01/01/2020,1,1,2020,0,0,Belarus,BY,BLR,9485386
31/12/2019,31,12,2019,0,0,Belarus,BY,BLR,9485386
+13/04/2020,13,4,2020,1629,254,Belgium,BE,BEL,11422068
12/04/2020,12,4,2020,1351,327,Belgium,BE,BEL,11422068
11/04/2020,11,4,2020,1684,496,Belgium,BE,BEL,11422068
10/04/2020,10,4,2020,1580,283,Belgium,BE,BEL,11422068
@@ -1162,6 +1181,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Belgium,BE,BEL,11422068
01/01/2020,1,1,2020,0,0,Belgium,BE,BEL,11422068
31/12/2019,31,12,2019,0,0,Belgium,BE,BEL,11422068
+13/04/2020,13,4,2020,1,0,Belize,BZ,BLZ,383071
12/04/2020,12,4,2020,3,0,Belize,BZ,BLZ,383071
11/04/2020,11,4,2020,1,1,Belize,BZ,BLZ,383071
10/04/2020,10,4,2020,1,0,Belize,BZ,BLZ,383071
@@ -1182,6 +1202,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
26/03/2020,26,3,2020,1,0,Belize,BZ,BLZ,383071
25/03/2020,25,3,2020,0,0,Belize,BZ,BLZ,383071
24/03/2020,24,3,2020,1,0,Belize,BZ,BLZ,383071
+13/04/2020,13,4,2020,0,0,Benin,BJ,BEN,11485048
12/04/2020,12,4,2020,0,0,Benin,BJ,BEN,11485048
11/04/2020,11,4,2020,5,0,Benin,BJ,BEN,11485048
10/04/2020,10,4,2020,4,0,Benin,BJ,BEN,11485048
@@ -1209,6 +1230,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
19/03/2020,19,3,2020,0,0,Benin,BJ,BEN,11485048
18/03/2020,18,3,2020,0,0,Benin,BJ,BEN,11485048
17/03/2020,17,3,2020,1,0,Benin,BJ,BEN,11485048
+13/04/2020,13,4,2020,7,0,Bermuda,BM,BMU,63968
12/04/2020,12,4,2020,2,0,Bermuda,BM,BMU,63968
11/04/2020,11,4,2020,0,0,Bermuda,BM,BMU,63968
10/04/2020,10,4,2020,9,1,Bermuda,BM,BMU,63968
@@ -1233,6 +1255,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,0,0,Bermuda,BM,BMU,63968
21/03/2020,21,3,2020,0,0,Bermuda,BM,BMU,63968
20/03/2020,20,3,2020,2,0,Bermuda,BM,BMU,63968
+13/04/2020,13,4,2020,0,0,Bhutan,BT,BTN,754394
12/04/2020,12,4,2020,0,0,Bhutan,BT,BTN,754394
11/04/2020,11,4,2020,0,0,Bhutan,BT,BTN,754394
10/04/2020,10,4,2020,0,0,Bhutan,BT,BTN,754394
@@ -1263,6 +1286,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
15/03/2020,15,3,2020,0,0,Bhutan,BT,BTN,754394
13/03/2020,13,3,2020,0,0,Bhutan,BT,BTN,754394
06/03/2020,6,3,2020,1,0,Bhutan,BT,BTN,754394
+13/04/2020,13,4,2020,30,3,Bolivia,BO,BOL,11353142
12/04/2020,12,4,2020,24,4,Bolivia,BO,BOL,11353142
11/04/2020,11,4,2020,8,1,Bolivia,BO,BOL,11353142
10/04/2020,10,4,2020,4,1,Bolivia,BO,BOL,11353142
@@ -1294,6 +1318,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
14/03/2020,14,3,2020,7,0,Bolivia,BO,BOL,11353142
13/03/2020,13,3,2020,1,0,Bolivia,BO,BOL,11353142
12/03/2020,12,3,2020,2,0,Bolivia,BO,BOL,11353142
+13/04/2020,13,4,2020,1,0,"Bonaire, Saint Eustatius and Saba",BQ,,
12/04/2020,12,4,2020,0,0,"Bonaire, Saint Eustatius and Saba",BQ,,
11/04/2020,11,4,2020,0,0,"Bonaire, Saint Eustatius and Saba",BQ,,
10/04/2020,10,4,2020,0,0,"Bonaire, Saint Eustatius and Saba",BQ,,
@@ -1305,6 +1330,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
04/04/2020,4,4,2020,0,0,"Bonaire, Saint Eustatius and Saba",BQ,,
03/04/2020,3,4,2020,0,0,"Bonaire, Saint Eustatius and Saba",BQ,,
02/04/2020,2,4,2020,2,0,"Bonaire, Saint Eustatius and Saba",BQ,,
+13/04/2020,13,4,2020,59,1,Bosnia_and_Herzegovina,BA,BIH,3323929
12/04/2020,12,4,2020,47,0,Bosnia_and_Herzegovina,BA,BIH,3323929
11/04/2020,11,4,2020,26,1,Bosnia_and_Herzegovina,BA,BIH,3323929
10/04/2020,10,4,2020,59,1,Bosnia_and_Herzegovina,BA,BIH,3323929
@@ -1336,6 +1362,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
13/03/2020,13,3,2020,0,0,Bosnia_and_Herzegovina,BA,BIH,3323929
12/03/2020,12,3,2020,1,0,Bosnia_and_Herzegovina,BA,BIH,3323929
06/03/2020,6,3,2020,2,0,Bosnia_and_Herzegovina,BA,BIH,3323929
+13/04/2020,13,4,2020,0,0,Botswana,BW,BWA,2254126
12/04/2020,12,4,2020,0,0,Botswana,BW,BWA,2254126
11/04/2020,11,4,2020,0,0,Botswana,BW,BWA,2254126
10/04/2020,10,4,2020,6,0,Botswana,BW,BWA,2254126
@@ -1348,6 +1375,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
03/04/2020,3,4,2020,0,0,Botswana,BW,BWA,2254126
02/04/2020,2,4,2020,1,1,Botswana,BW,BWA,2254126
01/04/2020,1,4,2020,3,0,Botswana,BW,BWA,2254126
+13/04/2020,13,4,2020,1442,99,Brazil,BR,BRA,209469333
12/04/2020,12,4,2020,1089,68,Brazil,BR,BRA,209469333
11/04/2020,11,4,2020,1781,115,Brazil,BR,BRA,209469333
10/04/2020,10,4,2020,1930,141,Brazil,BR,BRA,209469333
@@ -1449,6 +1477,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Brazil,BR,BRA,209469333
01/01/2020,1,1,2020,0,0,Brazil,BR,BRA,209469333
31/12/2019,31,12,2019,0,0,Brazil,BR,BRA,209469333
+13/04/2020,13,4,2020,0,0,British_Virgin_Islands,VG,VGB,29802
12/04/2020,12,4,2020,0,0,British_Virgin_Islands,VG,VGB,29802
11/04/2020,11,4,2020,0,0,British_Virgin_Islands,VG,VGB,29802
10/04/2020,10,4,2020,0,0,British_Virgin_Islands,VG,VGB,29802
@@ -1466,6 +1495,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
29/03/2020,29,3,2020,0,0,British_Virgin_Islands,VG,VGB,29802
28/03/2020,28,3,2020,0,0,British_Virgin_Islands,VG,VGB,29802
27/03/2020,27,3,2020,2,0,British_Virgin_Islands,VG,VGB,29802
+13/04/2020,13,4,2020,0,0,Brunei_Darussalam,BN,BRN,428962
12/04/2020,12,4,2020,0,0,Brunei_Darussalam,BN,BRN,428962
11/04/2020,11,4,2020,1,0,Brunei_Darussalam,BN,BRN,428962
10/04/2020,10,4,2020,0,0,Brunei_Darussalam,BN,BRN,428962
@@ -1499,6 +1529,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
13/03/2020,13,3,2020,14,0,Brunei_Darussalam,BN,BRN,428962
12/03/2020,12,3,2020,10,0,Brunei_Darussalam,BN,BRN,428962
10/03/2020,10,3,2020,1,0,Brunei_Darussalam,BN,BRN,428962
+13/04/2020,13,4,2020,14,1,Bulgaria,BG,BGR,7024216
12/04/2020,12,4,2020,26,3,Bulgaria,BG,BGR,7024216
11/04/2020,11,4,2020,11,1,Bulgaria,BG,BGR,7024216
10/04/2020,10,4,2020,31,0,Bulgaria,BG,BGR,7024216
@@ -1533,6 +1564,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
12/03/2020,12,3,2020,3,1,Bulgaria,BG,BGR,7024216
09/03/2020,9,3,2020,2,0,Bulgaria,BG,BGR,7024216
08/03/2020,8,3,2020,2,0,Bulgaria,BG,BGR,7024216
+13/04/2020,13,4,2020,13,0,Burkina_Faso,BF,BFA,19751535
12/04/2020,12,4,2020,36,1,Burkina_Faso,BF,BFA,19751535
11/04/2020,11,4,2020,5,2,Burkina_Faso,BF,BFA,19751535
10/04/2020,10,4,2020,29,1,Burkina_Faso,BF,BFA,19751535
@@ -1564,6 +1596,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
15/03/2020,15,3,2020,1,0,Burkina_Faso,BF,BFA,19751535
12/03/2020,12,3,2020,0,0,Burkina_Faso,BF,BFA,19751535
11/03/2020,11,3,2020,2,0,Burkina_Faso,BF,BFA,19751535
+13/04/2020,13,4,2020,0,0,Burundi,BI,BDI,11175378
12/04/2020,12,4,2020,2,0,Burundi,BI,BDI,11175378
11/04/2020,11,4,2020,0,0,Burundi,BI,BDI,11175378
10/04/2020,10,4,2020,0,0,Burundi,BI,BDI,11175378
@@ -1576,6 +1609,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
03/04/2020,3,4,2020,1,0,Burundi,BI,BDI,11175378
02/04/2020,2,4,2020,0,0,Burundi,BI,BDI,11175378
01/04/2020,1,4,2020,2,0,Burundi,BI,BDI,11175378
+13/04/2020,13,4,2020,0,0,Cambodia,KH,KHM,16249798
12/04/2020,12,4,2020,2,0,Cambodia,KH,KHM,16249798
11/04/2020,11,4,2020,1,0,Cambodia,KH,KHM,16249798
10/04/2020,10,4,2020,1,0,Cambodia,KH,KHM,16249798
@@ -1671,6 +1705,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Cambodia,KH,KHM,16249798
01/01/2020,1,1,2020,0,0,Cambodia,KH,KHM,16249798
31/12/2019,31,12,2019,0,0,Cambodia,KH,KHM,16249798
+13/04/2020,13,4,2020,0,1,Cameroon,CM,CMR,25216237
12/04/2020,12,4,2020,17,1,Cameroon,CM,CMR,25216237
11/04/2020,11,4,2020,73,0,Cameroon,CM,CMR,25216237
10/04/2020,10,4,2020,0,0,Cameroon,CM,CMR,25216237
@@ -1702,6 +1737,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
15/03/2020,15,3,2020,1,0,Cameroon,CM,CMR,25216237
09/03/2020,9,3,2020,1,0,Cameroon,CM,CMR,25216237
07/03/2020,7,3,2020,1,0,Cameroon,CM,CMR,25216237
+13/04/2020,13,4,2020,1064,64,Canada,CA,CAN,37058856
12/04/2020,12,4,2020,1168,84,Canada,CA,CAN,37058856
11/04/2020,11,4,2020,1385,60,Canada,CA,CAN,37058856
10/04/2020,10,4,2020,1474,74,Canada,CA,CAN,37058856
@@ -1806,6 +1842,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Canada,CA,CAN,37058856
01/01/2020,1,1,2020,0,0,Canada,CA,CAN,37058856
31/12/2019,31,12,2019,0,0,Canada,CA,CAN,37058856
+13/04/2020,13,4,2020,2,0,Cape_Verde,CV,CPV,543767
12/04/2020,12,4,2020,1,0,Cape_Verde,CV,CPV,543767
11/04/2020,11,4,2020,0,0,Cape_Verde,CV,CPV,543767
10/04/2020,10,4,2020,0,0,Cape_Verde,CV,CPV,543767
@@ -1893,6 +1930,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Cases_on_an_international_conveyance_Japan,JPG11668,N/A,3000
01/01/2020,1,1,2020,0,0,Cases_on_an_international_conveyance_Japan,JPG11668,N/A,3000
31/12/2019,31,12,2019,0,0,Cases_on_an_international_conveyance_Japan,JPG11668,N/A,3000
+13/04/2020,13,4,2020,0,0,Cayman_Islands,KY,CYM,64174
12/04/2020,12,4,2020,8,0,Cayman_Islands,KY,CYM,64174
11/04/2020,11,4,2020,0,0,Cayman_Islands,KY,CYM,64174
10/04/2020,10,4,2020,0,0,Cayman_Islands,KY,CYM,64174
@@ -1917,6 +1955,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,0,0,Cayman_Islands,KY,CYM,64174
21/03/2020,21,3,2020,2,1,Cayman_Islands,KY,CYM,64174
20/03/2020,20,3,2020,1,0,Cayman_Islands,KY,CYM,64174
+13/04/2020,13,4,2020,0,0,Central_African_Republic,CF,CAF,4666377
12/04/2020,12,4,2020,0,0,Central_African_Republic,CF,CAF,4666377
11/04/2020,11,4,2020,0,0,Central_African_Republic,CF,CAF,4666377
10/04/2020,10,4,2020,1,0,Central_African_Republic,CF,CAF,4666377
@@ -1945,6 +1984,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
18/03/2020,18,3,2020,0,0,Central_African_Republic,CF,CAF,4666377
17/03/2020,17,3,2020,0,0,Central_African_Republic,CF,CAF,4666377
16/03/2020,16,3,2020,1,0,Central_African_Republic,CF,CAF,4666377
+13/04/2020,13,4,2020,4,0,Chad,TD,TCD,15477751
12/04/2020,12,4,2020,0,0,Chad,TD,TCD,15477751
11/04/2020,11,4,2020,0,0,Chad,TD,TCD,15477751
10/04/2020,10,4,2020,1,0,Chad,TD,TCD,15477751
@@ -1969,6 +2009,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,1,0,Chad,TD,TCD,15477751
21/03/2020,21,3,2020,0,0,Chad,TD,TCD,15477751
20/03/2020,20,3,2020,1,0,Chad,TD,TCD,15477751
+13/04/2020,13,4,2020,286,7,Chile,CL,CHL,18729160
12/04/2020,12,4,2020,426,8,Chile,CL,CHL,18729160
11/04/2020,11,4,2020,529,8,Chile,CL,CHL,18729160
10/04/2020,10,4,2020,426,9,Chile,CL,CHL,18729160
@@ -2008,6 +2049,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
06/03/2020,6,3,2020,1,0,Chile,CL,CHL,18729160
05/03/2020,5,3,2020,2,0,Chile,CL,CHL,18729160
04/03/2020,4,3,2020,1,0,Chile,CL,CHL,18729160
+13/04/2020,13,4,2020,112,2,China,CN,CHN,1392730000
12/04/2020,12,4,2020,93,0,China,CN,CHN,1392730000
11/04/2020,11,4,2020,79,3,China,CN,CHN,1392730000
10/04/2020,10,4,2020,55,1,China,CN,CHN,1392730000
@@ -2112,7 +2154,8 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,China,CN,CHN,1392730000
01/01/2020,1,1,2020,0,0,China,CN,CHN,1392730000
31/12/2019,31,12,2019,27,0,China,CN,CHN,1392730000
-12/04/2020,12,4,2020,236,134,Colombia,CO,COL,49648685
+13/04/2020,13,4,2020,67,9,Colombia,CO,COL,49648685
+12/04/2020,12,4,2020,236,20,Colombia,CO,COL,49648685
11/04/2020,11,4,2020,250,11,Colombia,CO,COL,49648685
10/04/2020,10,4,2020,169,14,Colombia,CO,COL,49648685
09/04/2020,9,4,2020,274,5,Colombia,CO,COL,49648685
@@ -2145,6 +2188,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
12/03/2020,12,3,2020,6,0,Colombia,CO,COL,49648685
10/03/2020,10,3,2020,2,0,Colombia,CO,COL,49648685
07/03/2020,7,3,2020,1,0,Colombia,CO,COL,49648685
+13/04/2020,13,4,2020,10,0,Congo,CG,COG,5244363
12/04/2020,12,4,2020,0,0,Congo,CG,COG,5244363
11/04/2020,11,4,2020,0,0,Congo,CG,COG,5244363
10/04/2020,10,4,2020,0,0,Congo,CG,COG,5244363
@@ -2173,6 +2217,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
18/03/2020,18,3,2020,0,0,Congo,CG,COG,5244363
17/03/2020,17,3,2020,0,0,Congo,CG,COG,5244363
16/03/2020,16,3,2020,1,0,Congo,CG,COG,5244363
+13/04/2020,13,4,2020,18,0,Costa_Rica,CR,CRI,4999441
12/04/2020,12,4,2020,19,0,Costa_Rica,CR,CRI,4999441
11/04/2020,11,4,2020,19,0,Costa_Rica,CR,CRI,4999441
10/04/2020,10,4,2020,37,1,Costa_Rica,CR,CRI,4999441
@@ -2209,6 +2254,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
10/03/2020,10,3,2020,4,0,Costa_Rica,CR,CRI,4999441
09/03/2020,9,3,2020,4,0,Costa_Rica,CR,CRI,4999441
07/03/2020,7,3,2020,1,0,Costa_Rica,CR,CRI,4999441
+13/04/2020,13,4,2020,41,1,Cote_dIvoire,CI,CIV,25069229
12/04/2020,12,4,2020,53,1,Cote_dIvoire,CI,CIV,25069229
11/04/2020,11,4,2020,36,0,Cote_dIvoire,CI,CIV,25069229
10/04/2020,10,4,2020,60,0,Cote_dIvoire,CI,CIV,25069229
@@ -2239,6 +2285,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,0,0,Cote_dIvoire,CI,CIV,25069229
15/03/2020,15,3,2020,3,0,Cote_dIvoire,CI,CIV,25069229
12/03/2020,12,3,2020,1,0,Cote_dIvoire,CI,CIV,25069229
+13/04/2020,13,4,2020,66,2,Croatia,HR,HRV,4089400
12/04/2020,12,4,2020,39,0,Croatia,HR,HRV,4089400
11/04/2020,11,4,2020,88,1,Croatia,HR,HRV,4089400
10/04/2020,10,4,2020,64,1,Croatia,HR,HRV,4089400
@@ -2340,6 +2387,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Croatia,HR,HRV,4089400
01/01/2020,1,1,2020,0,0,Croatia,HR,HRV,4089400
31/12/2019,31,12,2019,0,0,Croatia,HR,HRV,4089400
+13/04/2020,13,4,2020,49,2,Cuba,CU,CUB,11338138
12/04/2020,12,4,2020,56,1,Cuba,CU,CUB,11338138
11/04/2020,11,4,2020,49,0,Cuba,CU,CUB,11338138
10/04/2020,10,4,2020,58,3,Cuba,CU,CUB,11338138
@@ -2369,6 +2417,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
15/03/2020,15,3,2020,0,0,Cuba,CU,CUB,11338138
14/03/2020,14,3,2020,1,0,Cuba,CU,CUB,11338138
12/03/2020,12,3,2020,3,0,Cuba,CU,CUB,11338138
+13/04/2020,13,4,2020,0,0,Cura\xc3\xa7ao,CW,CUW,159849
12/04/2020,12,4,2020,0,0,Cura\xc3\xa7ao,CW,CUW,159849
11/04/2020,11,4,2020,0,0,Cura\xc3\xa7ao,CW,CUW,159849
10/04/2020,10,4,2020,0,0,Cura\xc3\xa7ao,CW,CUW,159849
@@ -2389,6 +2438,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
24/03/2020,24,3,2020,3,0,Cura\xc3\xa7ao,CW,CUW,159849
20/03/2020,20,3,2020,2,0,Cura\xc3\xa7ao,CW,CUW,159849
13/03/2020,13,3,2020,1,0,Cura\xc3\xa7ao,CW,CUW,159849
+13/04/2020,13,4,2020,17,1,Cyprus,CY,CYP,1189265
12/04/2020,12,4,2020,21,0,Cyprus,CY,CYP,1189265
11/04/2020,11,4,2020,31,0,Cyprus,CY,CYP,1189265
10/04/2020,10,4,2020,38,1,Cyprus,CY,CYP,1189265
@@ -2421,6 +2471,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
14/03/2020,14,3,2020,8,0,Cyprus,CY,CYP,1189265
12/03/2020,12,3,2020,4,0,Cyprus,CY,CYP,1189265
10/03/2020,10,3,2020,2,0,Cyprus,CY,CYP,1189265
+13/04/2020,13,4,2020,89,9,Czechia,CZ,,
12/04/2020,12,4,2020,170,10,Czechia,CZ,,
11/04/2020,11,4,2020,163,7,Czechia,CZ,,
10/04/2020,10,4,2020,257,13,Czechia,CZ,,
@@ -2525,6 +2576,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Czechia,CZ,,
01/01/2020,1,1,2020,0,0,Czechia,CZ,,
31/12/2019,31,12,2019,0,0,Czechia,CZ,,
+13/04/2020,13,4,2020,0,0,Democratic_Republic_of_the_Congo,CD,COD,84068091
12/04/2020,12,4,2020,11,0,Democratic_Republic_of_the_Congo,CD,COD,84068091
11/04/2020,11,4,2020,8,0,Democratic_Republic_of_the_Congo,CD,COD,84068091
10/04/2020,10,4,2020,32,0,Democratic_Republic_of_the_Congo,CD,COD,84068091
@@ -2556,6 +2608,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
15/03/2020,15,3,2020,0,0,Democratic_Republic_of_the_Congo,CD,COD,84068091
14/03/2020,14,3,2020,1,0,Democratic_Republic_of_the_Congo,CD,COD,84068091
11/03/2020,11,3,2020,1,0,Democratic_Republic_of_the_Congo,CD,COD,84068091
+13/04/2020,13,4,2020,178,13,Denmark,DK,DNK,5797446
12/04/2020,12,4,2020,177,13,Denmark,DK,DNK,5797446
11/04/2020,11,4,2020,184,10,Denmark,DK,DNK,5797446
10/04/2020,10,4,2020,233,19,Denmark,DK,DNK,5797446
@@ -2660,6 +2713,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Denmark,DK,DNK,5797446
01/01/2020,1,1,2020,0,0,Denmark,DK,DNK,5797446
31/12/2019,31,12,2019,0,0,Denmark,DK,DNK,5797446
+13/04/2020,13,4,2020,27,0,Djibouti,DJ,DJI,958920
12/04/2020,12,4,2020,37,1,Djibouti,DJ,DJI,958920
11/04/2020,11,4,2020,10,0,Djibouti,DJ,DJI,958920
10/04/2020,10,4,2020,5,1,Djibouti,DJ,DJI,958920
@@ -2685,6 +2739,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
21/03/2020,21,3,2020,0,0,Djibouti,DJ,DJI,958920
20/03/2020,20,3,2020,0,0,Djibouti,DJ,DJI,958920
19/03/2020,19,3,2020,1,0,Djibouti,DJ,DJI,958920
+13/04/2020,13,4,2020,0,0,Dominica,DM,DMA,71625
12/04/2020,12,4,2020,0,0,Dominica,DM,DMA,71625
11/04/2020,11,4,2020,0,0,Dominica,DM,DMA,71625
10/04/2020,10,4,2020,1,0,Dominica,DM,DMA,71625
@@ -2706,6 +2761,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
25/03/2020,25,3,2020,1,0,Dominica,DM,DMA,71625
24/03/2020,24,3,2020,0,0,Dominica,DM,DMA,71625
23/03/2020,23,3,2020,1,0,Dominica,DM,DMA,71625
+13/04/2020,13,4,2020,208,38,Dominican_Republic,DO,DOM,10627165
12/04/2020,12,4,2020,139,9,Dominican_Republic,DO,DOM,10627165
11/04/2020,11,4,2020,271,8,Dominican_Republic,DO,DOM,10627165
10/04/2020,10,4,2020,238,10,Dominican_Republic,DO,DOM,10627165
@@ -2801,6 +2857,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Dominican_Republic,DO,DOM,10627165
01/01/2020,1,1,2020,0,0,Dominican_Republic,DO,DOM,10627165
31/12/2019,31,12,2019,0,0,Dominican_Republic,DO,DOM,10627165
+13/04/2020,13,4,2020,209,18,Ecuador,EC,ECU,17084357
12/04/2020,12,4,2020,96,18,Ecuador,EC,ECU,17084357
11/04/2020,11,4,2020,2196,25,Ecuador,EC,ECU,17084357
10/04/2020,10,4,2020,515,30,Ecuador,EC,ECU,17084357
@@ -2900,6 +2957,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Ecuador,EC,ECU,17084357
01/01/2020,1,1,2020,0,0,Ecuador,EC,ECU,17084357
31/12/2019,31,12,2019,0,0,Ecuador,EC,ECU,17084357
+13/04/2020,13,4,2020,126,13,Egypt,EG,EGY,98423595
12/04/2020,12,4,2020,145,11,Egypt,EG,EGY,98423595
11/04/2020,11,4,2020,95,17,Egypt,EG,EGY,98423595
10/04/2020,10,4,2020,139,15,Egypt,EG,EGY,98423595
@@ -3000,6 +3058,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Egypt,EG,EGY,98423595
01/01/2020,1,1,2020,0,0,Egypt,EG,EGY,98423595
31/12/2019,31,12,2019,0,0,Egypt,EG,EGY,98423595
+13/04/2020,13,4,2020,7,0,El_Salvador,SV,SLV,6420744
12/04/2020,12,4,2020,0,0,El_Salvador,SV,SLV,6420744
11/04/2020,11,4,2020,1,0,El_Salvador,SV,SLV,6420744
10/04/2020,10,4,2020,14,1,El_Salvador,SV,SLV,6420744
@@ -3025,6 +3084,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
21/03/2020,21,3,2020,2,0,El_Salvador,SV,SLV,6420744
20/03/2020,20,3,2020,0,0,El_Salvador,SV,SLV,6420744
19/03/2020,19,3,2020,1,0,El_Salvador,SV,SLV,6420744
+13/04/2020,13,4,2020,3,0,Equatorial_Guinea,GQ,GNQ,1308974
12/04/2020,12,4,2020,0,0,Equatorial_Guinea,GQ,GNQ,1308974
11/04/2020,11,4,2020,0,0,Equatorial_Guinea,GQ,GNQ,1308974
10/04/2020,10,4,2020,0,0,Equatorial_Guinea,GQ,GNQ,1308974
@@ -3054,6 +3114,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Equatorial_Guinea,GQ,GNQ,1308974
16/03/2020,16,3,2020,0,0,Equatorial_Guinea,GQ,GNQ,1308974
15/03/2020,15,3,2020,1,0,Equatorial_Guinea,GQ,GNQ,1308974
+13/04/2020,13,4,2020,0,0,Eritrea,ER,ERI,
12/04/2020,12,4,2020,0,0,Eritrea,ER,ERI,
11/04/2020,11,4,2020,1,0,Eritrea,ER,ERI,
10/04/2020,10,4,2020,0,0,Eritrea,ER,ERI,
@@ -3076,6 +3137,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
24/03/2020,24,3,2020,0,0,Eritrea,ER,ERI,
23/03/2020,23,3,2020,0,0,Eritrea,ER,ERI,
22/03/2020,22,3,2020,1,0,Eritrea,ER,ERI,
+13/04/2020,13,4,2020,5,1,Estonia,EE,EST,1320884
12/04/2020,12,4,2020,46,0,Estonia,EE,EST,1320884
11/04/2020,11,4,2020,51,0,Estonia,EE,EST,1320884
10/04/2020,10,4,2020,22,0,Estonia,EE,EST,1320884
@@ -3175,6 +3237,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Estonia,EE,EST,1320884
01/01/2020,1,1,2020,0,0,Estonia,EE,EST,1320884
31/12/2019,31,12,2019,0,0,Estonia,EE,EST,1320884
+13/04/2020,13,4,2020,0,0,Eswatini,SZ,SWZ,1367000
12/04/2020,12,4,2020,2,0,Eswatini,SZ,SWZ,1367000
11/04/2020,11,4,2020,0,0,Eswatini,SZ,SWZ,1367000
10/04/2020,10,4,2020,0,0,Eswatini,SZ,SWZ,1367000
@@ -3204,6 +3267,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Eswatini,SZ,SWZ,1367000
16/03/2020,16,3,2020,0,0,Eswatini,SZ,SWZ,1367000
15/03/2020,15,3,2020,1,0,Eswatini,SZ,SWZ,1367000
+13/04/2020,13,4,2020,2,0,Ethiopia,ET,ETH,109224559
12/04/2020,12,4,2020,4,1,Ethiopia,ET,ETH,109224559
11/04/2020,11,4,2020,9,0,Ethiopia,ET,ETH,109224559
10/04/2020,10,4,2020,1,0,Ethiopia,ET,ETH,109224559
@@ -3234,6 +3298,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,3,0,Ethiopia,ET,ETH,109224559
15/03/2020,15,3,2020,0,0,Ethiopia,ET,ETH,109224559
14/03/2020,14,3,2020,1,0,Ethiopia,ET,ETH,109224559
+13/04/2020,13,4,2020,0,0,Falkland_Islands_(Malvinas),FK,,
12/04/2020,12,4,2020,0,0,Falkland_Islands_(Malvinas),FK,,
11/04/2020,11,4,2020,0,0,Falkland_Islands_(Malvinas),FK,,
10/04/2020,10,4,2020,0,0,Falkland_Islands_(Malvinas),FK,,
@@ -3243,6 +3308,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
06/04/2020,6,4,2020,1,0,Falkland_Islands_(Malvinas),FK,,
05/04/2020,5,4,2020,0,0,Falkland_Islands_(Malvinas),FK,,
04/04/2020,4,4,2020,1,0,Falkland_Islands_(Malvinas),FK,,
+13/04/2020,13,4,2020,0,0,Faroe_Islands,FO,FRO,48497
12/04/2020,12,4,2020,0,0,Faroe_Islands,FO,FRO,48497
11/04/2020,11,4,2020,0,0,Faroe_Islands,FO,FRO,48497
10/04/2020,10,4,2020,0,0,Faroe_Islands,FO,FRO,48497
@@ -3267,6 +3333,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,12,0,Faroe_Islands,FO,FRO,48497
21/03/2020,21,3,2020,8,0,Faroe_Islands,FO,FRO,48497
20/03/2020,20,3,2020,72,0,Faroe_Islands,FO,FRO,48497
+13/04/2020,13,4,2020,0,0,Fiji,FJ,FJI,883483
12/04/2020,12,4,2020,0,0,Fiji,FJ,FJI,883483
11/04/2020,11,4,2020,1,0,Fiji,FJ,FJI,883483
10/04/2020,10,4,2020,0,0,Fiji,FJ,FJI,883483
@@ -3291,6 +3358,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,1,0,Fiji,FJ,FJI,883483
21/03/2020,21,3,2020,0,0,Fiji,FJ,FJI,883483
20/03/2020,20,3,2020,1,0,Fiji,FJ,FJI,883483
+13/04/2020,13,4,2020,69,7,Finland,FI,FIN,5518050
12/04/2020,12,4,2020,136,1,Finland,FI,FIN,5518050
11/04/2020,11,4,2020,164,6,Finland,FI,FIN,5518050
10/04/2020,10,4,2020,118,2,Finland,FI,FIN,5518050
@@ -3390,6 +3458,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Finland,FI,FIN,5518050
01/01/2020,1,1,2020,0,0,Finland,FI,FIN,5518050
31/12/2019,31,12,2019,0,0,Finland,FI,FIN,5518050
+13/04/2020,13,4,2020,1613,561,France,FR,FRA,66987244
12/04/2020,12,4,2020,3114,635,France,FR,FRA,66987244
11/04/2020,11,4,2020,4342,987,France,FR,FRA,66987244
10/04/2020,10,4,2020,4286,1341,France,FR,FRA,66987244
@@ -3494,6 +3563,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,France,FR,FRA,66987244
01/01/2020,1,1,2020,0,0,France,FR,FRA,66987244
31/12/2019,31,12,2019,0,0,France,FR,FRA,66987244
+13/04/2020,13,4,2020,2,0,French_Polynesia,PF,PYF,277679
12/04/2020,12,4,2020,0,0,French_Polynesia,PF,PYF,277679
11/04/2020,11,4,2020,0,0,French_Polynesia,PF,PYF,277679
10/04/2020,10,4,2020,0,0,French_Polynesia,PF,PYF,277679
@@ -3519,6 +3589,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
21/03/2020,21,3,2020,12,0,French_Polynesia,PF,PYF,277679
20/03/2020,20,3,2020,0,0,French_Polynesia,PF,PYF,277679
19/03/2020,19,3,2020,3,0,French_Polynesia,PF,PYF,277679
+13/04/2020,13,4,2020,8,0,Gabon,GA,GAB,2119275
12/04/2020,12,4,2020,3,0,Gabon,GA,GAB,2119275
11/04/2020,11,4,2020,2,0,Gabon,GA,GAB,2119275
10/04/2020,10,4,2020,11,0,Gabon,GA,GAB,2119275
@@ -3549,6 +3620,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,0,0,Gabon,GA,GAB,2119275
15/03/2020,15,3,2020,0,0,Gabon,GA,GAB,2119275
13/03/2020,13,3,2020,1,0,Gabon,GA,GAB,2119275
+13/04/2020,13,4,2020,0,0,Gambia,GM,GMB,2280102
12/04/2020,12,4,2020,5,0,Gambia,GM,GMB,2280102
11/04/2020,11,4,2020,0,0,Gambia,GM,GMB,2280102
10/04/2020,10,4,2020,0,0,Gambia,GM,GMB,2280102
@@ -3575,6 +3647,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
20/03/2020,20,3,2020,0,0,Gambia,GM,GMB,2280102
19/03/2020,19,3,2020,0,0,Gambia,GM,GMB,2280102
18/03/2020,18,3,2020,1,0,Gambia,GM,GMB,2280102
+13/04/2020,13,4,2020,15,0,Georgia,GE,GEO,3731000
12/04/2020,12,4,2020,8,0,Georgia,GE,GEO,3731000
11/04/2020,11,4,2020,16,0,Georgia,GE,GEO,3731000
10/04/2020,10,4,2020,7,0,Georgia,GE,GEO,3731000
@@ -3676,6 +3749,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Georgia,GE,GEO,3731000
01/01/2020,1,1,2020,0,0,Georgia,GE,GEO,3731000
31/12/2019,31,12,2019,0,0,Georgia,GE,GEO,3731000
+13/04/2020,13,4,2020,2537,126,Germany,DE,DEU,82927922
12/04/2020,12,4,2020,2821,129,Germany,DE,DEU,82927922
11/04/2020,11,4,2020,4133,171,Germany,DE,DEU,82927922
10/04/2020,10,4,2020,5323,266,Germany,DE,DEU,82927922
@@ -3780,6 +3854,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Germany,DE,DEU,82927922
01/01/2020,1,1,2020,0,0,Germany,DE,DEU,82927922
31/12/2019,31,12,2019,0,0,Germany,DE,DEU,82927922
+13/04/2020,13,4,2020,158,0,Ghana,GH,GHA,29767108
12/04/2020,12,4,2020,30,2,Ghana,GH,GHA,29767108
11/04/2020,11,4,2020,0,0,Ghana,GH,GHA,29767108
10/04/2020,10,4,2020,65,0,Ghana,GH,GHA,29767108
@@ -3810,6 +3885,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,0,0,Ghana,GH,GHA,29767108
15/03/2020,15,3,2020,0,0,Ghana,GH,GHA,29767108
13/03/2020,13,3,2020,2,0,Ghana,GH,GHA,29767108
+13/04/2020,13,4,2020,0,4,Gibraltar,GI,GIB,33718
12/04/2020,12,4,2020,2,0,Gibraltar,GI,GIB,33718
11/04/2020,11,4,2020,4,0,Gibraltar,GI,GIB,33718
10/04/2020,10,4,2020,3,0,Gibraltar,GI,GIB,33718
@@ -3834,6 +3910,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,0,0,Gibraltar,GI,GIB,33718
21/03/2020,21,3,2020,0,0,Gibraltar,GI,GIB,33718
20/03/2020,20,3,2020,10,0,Gibraltar,GI,GIB,33718
+13/04/2020,13,4,2020,33,5,Greece,EL,GRC,10727668
12/04/2020,12,4,2020,70,3,Greece,EL,GRC,10727668
11/04/2020,11,4,2020,56,4,Greece,EL,GRC,10727668
10/04/2020,10,4,2020,71,3,Greece,EL,GRC,10727668
@@ -3936,6 +4013,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Greece,EL,GRC,10727668
01/01/2020,1,1,2020,0,0,Greece,EL,GRC,10727668
31/12/2019,31,12,2019,0,0,Greece,EL,GRC,10727668
+13/04/2020,13,4,2020,0,0,Greenland,GL,GRL,56025
12/04/2020,12,4,2020,0,0,Greenland,GL,GRL,56025
11/04/2020,11,4,2020,0,0,Greenland,GL,GRL,56025
10/04/2020,10,4,2020,0,0,Greenland,GL,GRL,56025
@@ -3960,6 +4038,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,0,0,Greenland,GL,GRL,56025
21/03/2020,21,3,2020,0,0,Greenland,GL,GRL,56025
20/03/2020,20,3,2020,2,0,Greenland,GL,GRL,56025
+13/04/2020,13,4,2020,0,0,Grenada,GD,GRD,111454
12/04/2020,12,4,2020,0,0,Grenada,GD,GRD,111454
11/04/2020,11,4,2020,2,0,Grenada,GD,GRD,111454
10/04/2020,10,4,2020,0,0,Grenada,GD,GRD,111454
@@ -3981,6 +4060,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
25/03/2020,25,3,2020,0,0,Grenada,GD,GRD,111454
24/03/2020,24,3,2020,0,0,Grenada,GD,GRD,111454
23/03/2020,23,3,2020,1,0,Grenada,GD,GRD,111454
+13/04/2020,13,4,2020,0,0,Guam,GU,GUM,165768
12/04/2020,12,4,2020,3,1,Guam,GU,GUM,165768
11/04/2020,11,4,2020,2,0,Guam,GU,GUM,165768
10/04/2020,10,4,2020,3,0,Guam,GU,GUM,165768
@@ -4006,6 +4086,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
21/03/2020,21,3,2020,2,0,Guam,GU,GUM,165768
20/03/2020,20,3,2020,9,0,Guam,GU,GUM,165768
19/03/2020,19,3,2020,3,0,Guam,GU,GUM,165768
+13/04/2020,13,4,2020,3,2,Guatemala,GT,GTM,17247807
12/04/2020,12,4,2020,16,0,Guatemala,GT,GTM,17247807
11/04/2020,11,4,2020,11,0,Guatemala,GT,GTM,17247807
10/04/2020,10,4,2020,39,0,Guatemala,GT,GTM,17247807
@@ -4035,6 +4116,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,5,0,Guatemala,GT,GTM,17247807
16/03/2020,16,3,2020,0,1,Guatemala,GT,GTM,17247807
15/03/2020,15,3,2020,1,0,Guatemala,GT,GTM,17247807
+13/04/2020,13,4,2020,9,0,Guernsey,GG,GGY,63026
12/04/2020,12,4,2020,9,0,Guernsey,GG,GGY,63026
11/04/2020,11,4,2020,9,1,Guernsey,GG,GGY,63026
10/04/2020,10,4,2020,10,0,Guernsey,GG,GGY,63026
@@ -4059,6 +4141,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,0,0,Guernsey,GG,GGY,63026
21/03/2020,21,3,2020,0,0,Guernsey,GG,GGY,63026
20/03/2020,20,3,2020,1,0,Guernsey,GG,GGY,63026
+13/04/2020,13,4,2020,0,0,Guinea,GN,GIN,12414318
12/04/2020,12,4,2020,38,0,Guinea,GN,GIN,12414318
11/04/2020,11,4,2020,18,0,Guinea,GN,GIN,12414318
10/04/2020,10,4,2020,30,0,Guinea,GN,GIN,12414318
@@ -4088,6 +4171,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Guinea,GN,GIN,12414318
15/03/2020,15,3,2020,0,0,Guinea,GN,GIN,12414318
14/03/2020,14,3,2020,1,0,Guinea,GN,GIN,12414318
+13/04/2020,13,4,2020,1,0,Guinea_Bissau,GW,GNB,1874309
12/04/2020,12,4,2020,3,0,Guinea_Bissau,GW,GNB,1874309
11/04/2020,11,4,2020,0,0,Guinea_Bissau,GW,GNB,1874309
10/04/2020,10,4,2020,2,0,Guinea_Bissau,GW,GNB,1874309
@@ -4105,6 +4189,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
29/03/2020,29,3,2020,0,0,Guinea_Bissau,GW,GNB,1874309
28/03/2020,28,3,2020,0,0,Guinea_Bissau,GW,GNB,1874309
27/03/2020,27,3,2020,2,0,Guinea_Bissau,GW,GNB,1874309
+13/04/2020,13,4,2020,0,0,Guyana,GY,GUY,779004
12/04/2020,12,4,2020,5,0,Guyana,GY,GUY,779004
11/04/2020,11,4,2020,3,0,Guyana,GY,GUY,779004
10/04/2020,10,4,2020,0,0,Guyana,GY,GUY,779004
@@ -4134,6 +4219,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Guyana,GY,GUY,779004
16/03/2020,16,3,2020,3,0,Guyana,GY,GUY,779004
13/03/2020,13,3,2020,1,1,Guyana,GY,GUY,779004
+13/04/2020,13,4,2020,0,1,Haiti,HT,HTI,11123176
12/04/2020,12,4,2020,2,0,Haiti,HT,HTI,11123176
11/04/2020,11,4,2020,1,0,Haiti,HT,HTI,11123176
10/04/2020,10,4,2020,3,1,Haiti,HT,HTI,11123176
@@ -4158,6 +4244,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,0,0,Haiti,HT,HTI,11123176
21/03/2020,21,3,2020,0,0,Haiti,HT,HTI,11123176
20/03/2020,20,3,2020,2,0,Haiti,HT,HTI,11123176
+13/04/2020,13,4,2020,0,0,Holy_See,VA,VAT,1000
12/04/2020,12,4,2020,0,0,Holy_See,VA,VAT,1000
11/04/2020,11,4,2020,0,0,Holy_See,VA,VAT,1000
10/04/2020,10,4,2020,0,0,Holy_See,VA,VAT,1000
@@ -4187,6 +4274,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Holy_See,VA,VAT,1000
16/03/2020,16,3,2020,0,0,Holy_See,VA,VAT,1000
07/03/2020,7,3,2020,1,0,Holy_See,VA,VAT,1000
+13/04/2020,13,4,2020,4,0,Honduras,HN,HND,9587522
12/04/2020,12,4,2020,1,1,Honduras,HN,HND,9587522
11/04/2020,11,4,2020,10,1,Honduras,HN,HND,9587522
10/04/2020,10,4,2020,39,0,Honduras,HN,HND,9587522
@@ -4217,6 +4305,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,3,0,Honduras,HN,HND,9587522
14/03/2020,14,3,2020,1,0,Honduras,HN,HND,9587522
12/03/2020,12,3,2020,2,0,Honduras,HN,HND,9587522
+13/04/2020,13,4,2020,48,10,Hungary,HU,HUN,9768785
12/04/2020,12,4,2020,100,14,Hungary,HU,HUN,9768785
11/04/2020,11,4,2020,120,8,Hungary,HU,HUN,9768785
10/04/2020,10,4,2020,210,11,Hungary,HU,HUN,9768785
@@ -4255,6 +4344,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
08/03/2020,8,3,2020,3,0,Hungary,HU,HUN,9768785
07/03/2020,7,3,2020,2,0,Hungary,HU,HUN,9768785
05/03/2020,5,3,2020,2,0,Hungary,HU,HUN,9768785
+13/04/2020,13,4,2020,12,0,Iceland,IS,ISL,353574
12/04/2020,12,4,2020,14,1,Iceland,IS,ISL,353574
11/04/2020,11,4,2020,27,1,Iceland,IS,ISL,353574
10/04/2020,10,4,2020,32,0,Iceland,IS,ISL,353574
@@ -4359,6 +4449,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Iceland,IS,ISL,353574
01/01/2020,1,1,2020,0,0,Iceland,IS,ISL,353574
31/12/2019,31,12,2019,0,0,Iceland,IS,ISL,353574
+13/04/2020,13,4,2020,796,35,India,IN,IND,1352617328
12/04/2020,12,4,2020,909,34,India,IN,IND,1352617328
11/04/2020,11,4,2020,1035,40,India,IN,IND,1352617328
10/04/2020,10,4,2020,678,33,India,IN,IND,1352617328
@@ -4462,6 +4553,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,India,IN,IND,1352617328
01/01/2020,1,1,2020,0,0,India,IN,IND,1352617328
31/12/2019,31,12,2019,0,0,India,IN,IND,1352617328
+13/04/2020,13,4,2020,399,46,Indonesia,ID,IDN,267663435
12/04/2020,12,4,2020,330,21,Indonesia,ID,IDN,267663435
11/04/2020,11,4,2020,219,26,Indonesia,ID,IDN,267663435
10/04/2020,10,4,2020,337,40,Indonesia,ID,IDN,267663435
@@ -4559,6 +4651,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Indonesia,ID,IDN,267663435
01/01/2020,1,1,2020,0,0,Indonesia,ID,IDN,267663435
31/12/2019,31,12,2019,0,0,Indonesia,ID,IDN,267663435
+13/04/2020,13,4,2020,1657,117,Iran,IR,IRN,81800269
12/04/2020,12,4,2020,1837,125,Iran,IR,IRN,81800269
11/04/2020,11,4,2020,1972,122,Iran,IR,IRN,81800269
10/04/2020,10,4,2020,1634,117,Iran,IR,IRN,81800269
@@ -4663,6 +4756,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Iran,IR,IRN,81800269
01/01/2020,1,1,2020,0,0,Iran,IR,IRN,81800269
31/12/2019,31,12,2019,0,0,Iran,IR,IRN,81800269
+13/04/2020,13,4,2020,34,4,Iraq,IQ,IRQ,38433600
12/04/2020,12,4,2020,39,2,Iraq,IQ,IRQ,38433600
11/04/2020,11,4,2020,47,1,Iraq,IQ,IRQ,38433600
10/04/2020,10,4,2020,30,0,Iraq,IQ,IRQ,38433600
@@ -4765,6 +4859,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Iraq,IQ,IRQ,38433600
01/01/2020,1,1,2020,0,0,Iraq,IQ,IRQ,38433600
31/12/2019,31,12,2019,0,0,Iraq,IQ,IRQ,38433600
+13/04/2020,13,4,2020,727,14,Ireland,IE,IRL,4853506
12/04/2020,12,4,2020,839,33,Ireland,IE,IRL,4853506
11/04/2020,11,4,2020,696,24,Ireland,IE,IRL,4853506
10/04/2020,10,4,2020,1169,28,Ireland,IE,IRL,4853506
@@ -4867,6 +4962,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Ireland,IE,IRL,4853506
01/01/2020,1,1,2020,0,0,Ireland,IE,IRL,4853506
31/12/2019,31,12,2019,0,0,Ireland,IE,IRL,4853506
+13/04/2020,13,4,2020,2,1,Isle_of_Man,IM,IMN,84077
12/04/2020,12,4,2020,25,0,Isle_of_Man,IM,IMN,84077
11/04/2020,11,4,2020,11,0,Isle_of_Man,IM,IMN,84077
10/04/2020,10,4,2020,32,0,Isle_of_Man,IM,IMN,84077
@@ -4890,6 +4986,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
23/03/2020,23,3,2020,0,0,Isle_of_Man,IM,IMN,84077
22/03/2020,22,3,2020,1,0,Isle_of_Man,IM,IMN,84077
21/03/2020,21,3,2020,1,0,Isle_of_Man,IM,IMN,84077
+13/04/2020,13,4,2020,402,2,Israel,IL,ISR,8883800
12/04/2020,12,4,2020,335,6,Israel,IL,ISR,8883800
11/04/2020,11,4,2020,440,9,Israel,IL,ISR,8883800
10/04/2020,10,4,2020,564,15,Israel,IL,ISR,8883800
@@ -4991,6 +5088,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Israel,IL,ISR,8883800
01/01/2020,1,1,2020,0,0,Israel,IL,ISR,8883800
31/12/2019,31,12,2019,0,0,Israel,IL,ISR,8883800
+13/04/2020,13,4,2020,4092,431,Italy,IT,ITA,60431283
12/04/2020,12,4,2020,4694,619,Italy,IT,ITA,60431283
11/04/2020,11,4,2020,3951,570,Italy,IT,ITA,60431283
10/04/2020,10,4,2020,4204,612,Italy,IT,ITA,60431283
@@ -5095,6 +5193,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Italy,IT,ITA,60431283
01/01/2020,1,1,2020,0,0,Italy,IT,ITA,60431283
31/12/2019,31,12,2019,0,0,Italy,IT,ITA,60431283
+13/04/2020,13,4,2020,3,0,Jamaica,JM,JAM,2934855
12/04/2020,12,4,2020,4,0,Jamaica,JM,JAM,2934855
11/04/2020,11,4,2020,2,0,Jamaica,JM,JAM,2934855
10/04/2020,10,4,2020,0,0,Jamaica,JM,JAM,2934855
@@ -5126,6 +5225,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
14/03/2020,14,3,2020,2,0,Jamaica,JM,JAM,2934855
13/03/2020,13,3,2020,4,0,Jamaica,JM,JAM,2934855
12/03/2020,12,3,2020,2,0,Jamaica,JM,JAM,2934855
+13/04/2020,13,4,2020,507,4,Japan,JP,JPN,126529100
12/04/2020,12,4,2020,1401,10,Japan,JP,JPN,126529100
11/04/2020,11,4,2020,680,3,Japan,JP,JPN,126529100
10/04/2020,10,4,2020,410,4,Japan,JP,JPN,126529100
@@ -5230,6 +5330,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Japan,JP,JPN,126529100
01/01/2020,1,1,2020,0,0,Japan,JP,JPN,126529100
31/12/2019,31,12,2019,0,0,Japan,JP,JPN,126529100
+13/04/2020,13,4,2020,15,0,Jersey,JE,JEY,106800
12/04/2020,12,4,2020,0,0,Jersey,JE,JEY,106800
11/04/2020,11,4,2020,15,1,Jersey,JE,JEY,106800
10/04/2020,10,4,2020,13,0,Jersey,JE,JEY,106800
@@ -5254,6 +5355,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,0,0,Jersey,JE,JEY,106800
21/03/2020,21,3,2020,7,0,Jersey,JE,JEY,106800
20/03/2020,20,3,2020,5,0,Jersey,JE,JEY,106800
+13/04/2020,13,4,2020,8,0,Jordan,JO,JOR,9956011
12/04/2020,12,4,2020,9,0,Jordan,JO,JOR,9956011
11/04/2020,11,4,2020,0,0,Jordan,JO,JOR,9956011
10/04/2020,10,4,2020,14,1,Jordan,JO,JOR,9956011
@@ -5285,6 +5387,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
15/03/2020,15,3,2020,0,0,Jordan,JO,JOR,9956011
08/03/2020,8,3,2020,0,0,Jordan,JO,JOR,9956011
03/03/2020,3,3,2020,1,0,Jordan,JO,JOR,9956011
+13/04/2020,13,4,2020,81,0,Kazakhstan,KZ,KAZ,18276499
12/04/2020,12,4,2020,40,0,Kazakhstan,KZ,KAZ,18276499
11/04/2020,11,4,2020,38,1,Kazakhstan,KZ,KAZ,18276499
10/04/2020,10,4,2020,43,2,Kazakhstan,KZ,KAZ,18276499
@@ -5314,6 +5417,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,2,0,Kazakhstan,KZ,KAZ,18276499
16/03/2020,16,3,2020,3,0,Kazakhstan,KZ,KAZ,18276499
15/03/2020,15,3,2020,6,0,Kazakhstan,KZ,KAZ,18276499
+13/04/2020,13,4,2020,6,1,Kenya,KE,KEN,51393010
12/04/2020,12,4,2020,2,0,Kenya,KE,KEN,51393010
11/04/2020,11,4,2020,5,0,Kenya,KE,KEN,51393010
10/04/2020,10,4,2020,5,1,Kenya,KE,KEN,51393010
@@ -5344,6 +5448,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,2,0,Kenya,KE,KEN,51393010
15/03/2020,15,3,2020,0,0,Kenya,KE,KEN,51393010
14/03/2020,14,3,2020,1,0,Kenya,KE,KEN,51393010
+13/04/2020,13,4,2020,79,0,Kosovo,XK,XKX,1845300
12/04/2020,12,4,2020,33,0,Kosovo,XK,XKX,1845300
11/04/2020,11,4,2020,23,0,Kosovo,XK,XKX,1845300
10/04/2020,10,4,2020,43,2,Kosovo,XK,XKX,1845300
@@ -5372,6 +5477,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
18/03/2020,18,3,2020,17,0,Kosovo,XK,XKX,1845300
17/03/2020,17,3,2020,0,0,Kosovo,XK,XKX,1845300
16/03/2020,16,3,2020,2,0,Kosovo,XK,XKX,1845300
+13/04/2020,13,4,2020,80,0,Kuwait,KW,KWT,4137309
12/04/2020,12,4,2020,161,0,Kuwait,KW,KWT,4137309
11/04/2020,11,4,2020,83,0,Kuwait,KW,KWT,4137309
10/04/2020,10,4,2020,55,0,Kuwait,KW,KWT,4137309
@@ -5473,6 +5579,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Kuwait,KW,KWT,4137309
01/01/2020,1,1,2020,0,0,Kuwait,KW,KWT,4137309
31/12/2019,31,12,2019,0,0,Kuwait,KW,KWT,4137309
+13/04/2020,13,4,2020,42,0,Kyrgyzstan,KG,KGZ,6315800
12/04/2020,12,4,2020,38,0,Kyrgyzstan,KG,KGZ,6315800
11/04/2020,11,4,2020,41,0,Kyrgyzstan,KG,KGZ,6315800
10/04/2020,10,4,2020,18,1,Kyrgyzstan,KG,KGZ,6315800
@@ -5498,6 +5605,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
21/03/2020,21,3,2020,0,0,Kyrgyzstan,KG,KGZ,6315800
20/03/2020,20,3,2020,3,0,Kyrgyzstan,KG,KGZ,6315800
19/03/2020,19,3,2020,3,0,Kyrgyzstan,KG,KGZ,6315800
+13/04/2020,13,4,2020,1,0,Laos,LA,LAO,7061507
12/04/2020,12,4,2020,2,0,Laos,LA,LAO,7061507
11/04/2020,11,4,2020,0,0,Laos,LA,LAO,7061507
10/04/2020,10,4,2020,1,0,Laos,LA,LAO,7061507
@@ -5517,6 +5625,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
27/03/2020,27,3,2020,4,0,Laos,LA,LAO,7061507
26/03/2020,26,3,2020,0,0,Laos,LA,LAO,7061507
25/03/2020,25,3,2020,2,0,Laos,LA,LAO,7061507
+13/04/2020,13,4,2020,21,2,Latvia,LV,LVA,1926542
12/04/2020,12,4,2020,18,1,Latvia,LV,LVA,1926542
11/04/2020,11,4,2020,23,0,Latvia,LV,LVA,1926542
10/04/2020,10,4,2020,12,0,Latvia,LV,LVA,1926542
@@ -5554,6 +5663,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
09/03/2020,9,3,2020,1,0,Latvia,LV,LVA,1926542
08/03/2020,8,3,2020,1,0,Latvia,LV,LVA,1926542
03/03/2020,3,3,2020,1,0,Latvia,LV,LVA,1926542
+13/04/2020,13,4,2020,11,0,Lebanon,LB,LBN,6848925
12/04/2020,12,4,2020,10,0,Lebanon,LB,LBN,6848925
11/04/2020,11,4,2020,27,1,Lebanon,LB,LBN,6848925
10/04/2020,10,4,2020,7,0,Lebanon,LB,LBN,6848925
@@ -5654,6 +5764,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Lebanon,LB,LBN,6848925
01/01/2020,1,1,2020,0,0,Lebanon,LB,LBN,6848925
31/12/2019,31,12,2019,0,0,Lebanon,LB,LBN,6848925
+13/04/2020,13,4,2020,2,0,Liberia,LR,LBR,4818977
12/04/2020,12,4,2020,11,1,Liberia,LR,LBR,4818977
11/04/2020,11,4,2020,6,0,Liberia,LR,LBR,4818977
10/04/2020,10,4,2020,0,0,Liberia,LR,LBR,4818977
@@ -5681,6 +5792,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
19/03/2020,19,3,2020,0,0,Liberia,LR,LBR,4818977
18/03/2020,18,3,2020,1,0,Liberia,LR,LBR,4818977
17/03/2020,17,3,2020,1,0,Liberia,LR,LBR,4818977
+13/04/2020,13,4,2020,0,0,Libya,LY,LBY,6678567
12/04/2020,12,4,2020,1,0,Libya,LY,LBY,6678567
11/04/2020,11,4,2020,0,0,Libya,LY,LBY,6678567
10/04/2020,10,4,2020,3,0,Libya,LY,LBY,6678567
@@ -5700,6 +5812,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
27/03/2020,27,3,2020,0,0,Libya,LY,LBY,6678567
26/03/2020,26,3,2020,0,0,Libya,LY,LBY,6678567
25/03/2020,25,3,2020,1,0,Libya,LY,LBY,6678567
+13/04/2020,13,4,2020,0,0,Liechtenstein,LI,LIE,37910
12/04/2020,12,4,2020,0,0,Liechtenstein,LI,LIE,37910
11/04/2020,11,4,2020,1,0,Liechtenstein,LI,LIE,37910
10/04/2020,10,4,2020,0,0,Liechtenstein,LI,LIE,37910
@@ -5733,6 +5846,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
13/03/2020,13,3,2020,1,0,Liechtenstein,LI,LIE,37910
12/03/2020,12,3,2020,2,0,Liechtenstein,LI,LIE,37910
05/03/2020,5,3,2020,1,0,Liechtenstein,LI,LIE,37910
+13/04/2020,13,4,2020,9,1,Lithuania,LT,LTU,2789533
12/04/2020,12,4,2020,54,6,Lithuania,LT,LTU,2789533
11/04/2020,11,4,2020,44,2,Lithuania,LT,LTU,2789533
10/04/2020,10,4,2020,43,0,Lithuania,LT,LTU,2789533
@@ -5828,6 +5942,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Lithuania,LT,LTU,2789533
01/01/2020,1,1,2020,0,0,Lithuania,LT,LTU,2789533
31/12/2019,31,12,2019,0,0,Lithuania,LT,LTU,2789533
+13/04/2020,13,4,2020,11,4,Luxembourg,LU,LUX,607728
12/04/2020,12,4,2020,47,8,Luxembourg,LU,LUX,607728
11/04/2020,11,4,2020,108,2,Luxembourg,LU,LUX,607728
10/04/2020,10,4,2020,81,6,Luxembourg,LU,LUX,607728
@@ -5925,6 +6040,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Luxembourg,LU,LUX,607728
01/01/2020,1,1,2020,0,0,Luxembourg,LU,LUX,607728
31/12/2019,31,12,2019,0,0,Luxembourg,LU,LUX,607728
+13/04/2020,13,4,2020,4,0,Madagascar,MG,MDG,26262368
12/04/2020,12,4,2020,0,0,Madagascar,MG,MDG,26262368
11/04/2020,11,4,2020,9,0,Madagascar,MG,MDG,26262368
10/04/2020,10,4,2020,0,0,Madagascar,MG,MDG,26262368
@@ -5948,6 +6064,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
23/03/2020,23,3,2020,0,0,Madagascar,MG,MDG,26262368
22/03/2020,22,3,2020,0,0,Madagascar,MG,MDG,26262368
21/03/2020,21,3,2020,3,0,Madagascar,MG,MDG,26262368
+13/04/2020,13,4,2020,1,0,Malawi,MW,MWI,18143315
12/04/2020,12,4,2020,3,1,Malawi,MW,MWI,18143315
11/04/2020,11,4,2020,1,0,Malawi,MW,MWI,18143315
10/04/2020,10,4,2020,0,0,Malawi,MW,MWI,18143315
@@ -5958,6 +6075,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
05/04/2020,5,4,2020,1,0,Malawi,MW,MWI,18143315
04/04/2020,4,4,2020,0,0,Malawi,MW,MWI,18143315
03/04/2020,3,4,2020,3,0,Malawi,MW,MWI,18143315
+13/04/2020,13,4,2020,153,3,Malaysia,MY,MYS,31528585
12/04/2020,12,4,2020,184,3,Malaysia,MY,MYS,31528585
11/04/2020,11,4,2020,118,3,Malaysia,MY,MYS,31528585
10/04/2020,10,4,2020,109,2,Malaysia,MY,MYS,31528585
@@ -6061,6 +6179,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Malaysia,MY,MYS,31528585
01/01/2020,1,1,2020,0,0,Malaysia,MY,MYS,31528585
31/12/2019,31,12,2019,0,0,Malaysia,MY,MYS,31528585
+13/04/2020,13,4,2020,1,0,Maldives,MV,MDV,515696
12/04/2020,12,4,2020,0,0,Maldives,MV,MDV,515696
11/04/2020,11,4,2020,0,0,Maldives,MV,MDV,515696
10/04/2020,10,4,2020,0,0,Maldives,MV,MDV,515696
@@ -6095,6 +6214,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
11/03/2020,11,3,2020,2,0,Maldives,MV,MDV,515696
09/03/2020,9,3,2020,2,0,Maldives,MV,MDV,515696
08/03/2020,8,3,2020,2,0,Maldives,MV,MDV,515696
+13/04/2020,13,4,2020,11,0,Mali,ML,MLI,19077690
12/04/2020,12,4,2020,18,2,Mali,ML,MLI,19077690
11/04/2020,11,4,2020,28,0,Mali,ML,MLI,19077690
10/04/2020,10,4,2020,0,0,Mali,ML,MLI,19077690
@@ -6113,6 +6233,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
28/03/2020,28,3,2020,0,0,Mali,ML,MLI,19077690
27/03/2020,27,3,2020,2,0,Mali,ML,MLI,19077690
26/03/2020,26,3,2020,2,0,Mali,ML,MLI,19077690
+13/04/2020,13,4,2020,8,0,Malta,MT,MLT,483530
12/04/2020,12,4,2020,20,1,Malta,MT,MLT,483530
11/04/2020,11,4,2020,13,0,Malta,MT,MLT,483530
10/04/2020,10,4,2020,38,1,Malta,MT,MLT,483530
@@ -6147,6 +6268,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
12/03/2020,12,3,2020,2,0,Malta,MT,MLT,483530
10/03/2020,10,3,2020,1,0,Malta,MT,MLT,483530
08/03/2020,8,3,2020,3,0,Malta,MT,MLT,483530
+13/04/2020,13,4,2020,0,0,Mauritania,MR,MRT,4403319
12/04/2020,12,4,2020,0,0,Mauritania,MR,MRT,4403319
11/04/2020,11,4,2020,0,0,Mauritania,MR,MRT,4403319
10/04/2020,10,4,2020,1,0,Mauritania,MR,MRT,4403319
@@ -6176,6 +6298,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Mauritania,MR,MRT,4403319
16/03/2020,16,3,2020,0,0,Mauritania,MR,MRT,4403319
15/03/2020,15,3,2020,1,0,Mauritania,MR,MRT,4403319
+13/04/2020,13,4,2020,5,0,Mauritius,MU,MUS,1265303
12/04/2020,12,4,2020,1,0,Mauritius,MU,MUS,1265303
11/04/2020,11,4,2020,4,2,Mauritius,MU,MUS,1265303
10/04/2020,10,4,2020,41,0,Mauritius,MU,MUS,1265303
@@ -6200,6 +6323,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,2,1,Mauritius,MU,MUS,1265303
21/03/2020,21,3,2020,9,0,Mauritius,MU,MUS,1265303
20/03/2020,20,3,2020,3,0,Mauritius,MU,MUS,1265303
+13/04/2020,13,4,2020,442,23,Mexico,MX,MEX,126190788
12/04/2020,12,4,2020,375,40,Mexico,MX,MEX,126190788
11/04/2020,11,4,2020,403,39,Mexico,MX,MEX,126190788
10/04/2020,10,4,2020,260,20,Mexico,MX,MEX,126190788
@@ -6296,6 +6420,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Mexico,MX,MEX,126190788
01/01/2020,1,1,2020,0,0,Mexico,MX,MEX,126190788
31/12/2019,31,12,2019,0,0,Mexico,MX,MEX,126190788
+13/04/2020,13,4,2020,102,2,Moldova,MD,MDA,3545883
12/04/2020,12,4,2020,122,1,Moldova,MD,MDA,3545883
11/04/2020,11,4,2020,149,0,Moldova,MD,MDA,3545883
10/04/2020,10,4,2020,115,2,Moldova,MD,MDA,3545883
@@ -6330,6 +6455,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
12/03/2020,12,3,2020,1,0,Moldova,MD,MDA,3545883
11/03/2020,11,3,2020,2,0,Moldova,MD,MDA,3545883
08/03/2020,8,3,2020,1,0,Moldova,MD,MDA,3545883
+13/04/2020,13,4,2020,1,0,Monaco,MC,MCO,38682
12/04/2020,12,4,2020,2,0,Monaco,MC,MCO,38682
11/04/2020,11,4,2020,6,0,Monaco,MC,MCO,38682
10/04/2020,10,4,2020,3,0,Monaco,MC,MCO,38682
@@ -6422,6 +6548,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Monaco,MC,MCO,38682
01/01/2020,1,1,2020,0,0,Monaco,MC,MCO,38682
31/12/2019,31,12,2019,0,0,Monaco,MC,MCO,38682
+13/04/2020,13,4,2020,0,0,Mongolia,MN,MNG,3170208
12/04/2020,12,4,2020,0,0,Mongolia,MN,MNG,3170208
11/04/2020,11,4,2020,0,0,Mongolia,MN,MNG,3170208
10/04/2020,10,4,2020,0,0,Mongolia,MN,MNG,3170208
@@ -6450,6 +6577,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
18/03/2020,18,3,2020,3,0,Mongolia,MN,MNG,3170208
15/03/2020,15,3,2020,0,0,Mongolia,MN,MNG,3170208
10/03/2020,10,3,2020,1,0,Mongolia,MN,MNG,3170208
+13/04/2020,13,4,2020,9,1,Montenegro,ME,MNE,622345
12/04/2020,12,4,2020,6,0,Montenegro,ME,MNE,622345
11/04/2020,11,4,2020,5,0,Montenegro,ME,MNE,622345
10/04/2020,10,4,2020,3,0,Montenegro,ME,MNE,622345
@@ -6476,6 +6604,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
20/03/2020,20,3,2020,5,0,Montenegro,ME,MNE,622345
19/03/2020,19,3,2020,6,0,Montenegro,ME,MNE,622345
18/03/2020,18,3,2020,2,0,Montenegro,ME,MNE,622345
+13/04/2020,13,4,2020,2,0,Montserrat,MS,MSR,5900
12/04/2020,12,4,2020,0,0,Montserrat,MS,MSR,5900
11/04/2020,11,4,2020,0,0,Montserrat,MS,MSR,5900
10/04/2020,10,4,2020,0,0,Montserrat,MS,MSR,5900
@@ -6498,6 +6627,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
23/03/2020,23,3,2020,0,0,Montserrat,MS,MSR,5900
22/03/2020,22,3,2020,0,0,Montserrat,MS,MSR,5900
21/03/2020,21,3,2020,1,0,Montserrat,MS,MSR,5900
+13/04/2020,13,4,2020,116,7,Morocco,MA,MAR,36029138
12/04/2020,12,4,2020,97,4,Morocco,MA,MAR,36029138
11/04/2020,11,4,2020,74,10,Morocco,MA,MAR,36029138
10/04/2020,10,4,2020,99,4,Morocco,MA,MAR,36029138
@@ -6532,6 +6662,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
12/03/2020,12,3,2020,3,1,Morocco,MA,MAR,36029138
06/03/2020,6,3,2020,1,0,Morocco,MA,MAR,36029138
03/03/2020,3,3,2020,1,0,Morocco,MA,MAR,36029138
+13/04/2020,13,4,2020,1,0,Mozambique,MZ,MOZ,29495962
12/04/2020,12,4,2020,0,0,Mozambique,MZ,MOZ,29495962
11/04/2020,11,4,2020,3,0,Mozambique,MZ,MOZ,29495962
10/04/2020,10,4,2020,0,0,Mozambique,MZ,MOZ,29495962
@@ -6553,6 +6684,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
25/03/2020,25,3,2020,0,0,Mozambique,MZ,MOZ,29495962
24/03/2020,24,3,2020,0,0,Mozambique,MZ,MOZ,29495962
23/03/2020,23,3,2020,1,0,Mozambique,MZ,MOZ,29495962
+13/04/2020,13,4,2020,10,1,Myanmar,MM,MMR,53708395
12/04/2020,12,4,2020,3,0,Myanmar,MM,MMR,53708395
11/04/2020,11,4,2020,1,0,Myanmar,MM,MMR,53708395
10/04/2020,10,4,2020,5,0,Myanmar,MM,MMR,53708395
@@ -6574,6 +6706,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
25/03/2020,25,3,2020,1,0,Myanmar,MM,MMR,53708395
24/03/2020,24,3,2020,2,0,Myanmar,MM,MMR,53708395
17/03/2020,17,3,2020,0,0,Myanmar,MM,MMR,53708395
+13/04/2020,13,4,2020,0,0,Namibia,NA,NAM,2448255
12/04/2020,12,4,2020,0,0,Namibia,NA,NAM,2448255
11/04/2020,11,4,2020,0,0,Namibia,NA,NAM,2448255
10/04/2020,10,4,2020,0,0,Namibia,NA,NAM,2448255
@@ -6603,6 +6736,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Namibia,NA,NAM,2448255
16/03/2020,16,3,2020,0,0,Namibia,NA,NAM,2448255
15/03/2020,15,3,2020,2,0,Namibia,NA,NAM,2448255
+13/04/2020,13,4,2020,3,0,Nepal,NP,NPL,28087871
12/04/2020,12,4,2020,0,0,Nepal,NP,NPL,28087871
11/04/2020,11,4,2020,0,0,Nepal,NP,NPL,28087871
10/04/2020,10,4,2020,0,0,Nepal,NP,NPL,28087871
@@ -6694,6 +6828,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Nepal,NP,NPL,28087871
01/01/2020,1,1,2020,0,0,Nepal,NP,NPL,28087871
31/12/2019,31,12,2019,0,0,Nepal,NP,NPL,28087871
+13/04/2020,13,4,2020,1174,94,Netherlands,NL,NLD,17231017
12/04/2020,12,4,2020,1316,132,Netherlands,NL,NLD,17231017
11/04/2020,11,4,2020,1335,115,Netherlands,NL,NLD,17231017
10/04/2020,10,4,2020,1213,148,Netherlands,NL,NLD,17231017
@@ -6798,6 +6933,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Netherlands,NL,NLD,17231017
01/01/2020,1,1,2020,0,0,Netherlands,NL,NLD,17231017
31/12/2019,31,12,2019,0,0,Netherlands,NL,NLD,17231017
+13/04/2020,13,4,2020,0,0,New_Caledonia,NC,NCL,284060
12/04/2020,12,4,2020,0,0,New_Caledonia,NC,NCL,284060
11/04/2020,11,4,2020,0,0,New_Caledonia,NC,NCL,284060
10/04/2020,10,4,2020,0,0,New_Caledonia,NC,NCL,284060
@@ -6821,6 +6957,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
23/03/2020,23,3,2020,1,0,New_Caledonia,NC,NCL,284060
22/03/2020,22,3,2020,2,0,New_Caledonia,NC,NCL,284060
21/03/2020,21,3,2020,2,0,New_Caledonia,NC,NCL,284060
+13/04/2020,13,4,2020,15,1,New_Zealand,NZ,NZL,4885500
12/04/2020,12,4,2020,14,0,New_Zealand,NZ,NZL,4885500
11/04/2020,11,4,2020,20,2,New_Zealand,NZ,NZL,4885500
10/04/2020,10,4,2020,23,1,New_Zealand,NZ,NZL,4885500
@@ -6916,6 +7053,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,New_Zealand,NZ,NZL,4885500
01/01/2020,1,1,2020,0,0,New_Zealand,NZ,NZL,4885500
31/12/2019,31,12,2019,0,0,New_Zealand,NZ,NZL,4885500
+13/04/2020,13,4,2020,3,0,Nicaragua,NI,NIC,6465513
12/04/2020,12,4,2020,2,0,Nicaragua,NI,NIC,6465513
11/04/2020,11,4,2020,0,0,Nicaragua,NI,NIC,6465513
10/04/2020,10,4,2020,0,0,Nicaragua,NI,NIC,6465513
@@ -6941,6 +7079,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
21/03/2020,21,3,2020,0,0,Nicaragua,NI,NIC,6465513
20/03/2020,20,3,2020,0,0,Nicaragua,NI,NIC,6465513
19/03/2020,19,3,2020,1,0,Nicaragua,NI,NIC,6465513
+13/04/2020,13,4,2020,38,1,Niger,NE,NER,22442948
12/04/2020,12,4,2020,53,0,Niger,NE,NER,22442948
11/04/2020,11,4,2020,28,0,Niger,NE,NER,22442948
10/04/2020,10,4,2020,68,0,Niger,NE,NER,22442948
@@ -6964,6 +7103,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
23/03/2020,23,3,2020,0,0,Niger,NE,NER,22442948
22/03/2020,22,3,2020,0,0,Niger,NE,NER,22442948
21/03/2020,21,3,2020,1,0,Niger,NE,NER,22442948
+13/04/2020,13,4,2020,5,0,Nigeria,NG,NGA,195874740
12/04/2020,12,4,2020,13,3,Nigeria,NG,NGA,195874740
11/04/2020,11,4,2020,17,0,Nigeria,NG,NGA,195874740
10/04/2020,10,4,2020,12,1,Nigeria,NG,NGA,195874740
@@ -7057,6 +7197,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Nigeria,NG,NGA,195874740
01/01/2020,1,1,2020,0,0,Nigeria,NG,NGA,195874740
31/12/2019,31,12,2019,0,0,Nigeria,NG,NGA,195874740
+13/04/2020,13,4,2020,68,0,North_Macedonia,MK,MKD,2082958
12/04/2020,12,4,2020,49,2,North_Macedonia,MK,MKD,2082958
11/04/2020,11,4,2020,48,0,North_Macedonia,MK,MKD,2082958
10/04/2020,10,4,2020,46,2,North_Macedonia,MK,MKD,2082958
@@ -7152,6 +7293,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,North_Macedonia,MK,MKD,2082958
01/01/2020,1,1,2020,0,0,North_Macedonia,MK,MKD,2082958
31/12/2019,31,12,2019,0,0,North_Macedonia,MK,MKD,2082958
+13/04/2020,13,4,2020,0,0,Northern_Mariana_Islands,MP,MNP,56882
12/04/2020,12,4,2020,0,0,Northern_Mariana_Islands,MP,MNP,56882
11/04/2020,11,4,2020,0,0,Northern_Mariana_Islands,MP,MNP,56882
10/04/2020,10,4,2020,0,0,Northern_Mariana_Islands,MP,MNP,56882
@@ -7165,6 +7307,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/04/2020,2,4,2020,0,1,Northern_Mariana_Islands,MP,MNP,56882
01/04/2020,1,4,2020,4,0,Northern_Mariana_Islands,MP,MNP,56882
31/03/2020,31,3,2020,2,0,Northern_Mariana_Islands,MP,MNP,56882
+13/04/2020,13,4,2020,95,5,Norway,NO,NOR,5314336
12/04/2020,12,4,2020,76,6,Norway,NO,NOR,5314336
11/04/2020,11,4,2020,84,4,Norway,NO,NOR,5314336
10/04/2020,10,4,2020,150,8,Norway,NO,NOR,5314336
@@ -7269,6 +7412,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Norway,NO,NOR,5314336
01/01/2020,1,1,2020,0,0,Norway,NO,NOR,5314336
31/12/2019,31,12,2019,0,0,Norway,NO,NOR,5314336
+13/04/2020,13,4,2020,53,1,Oman,OM,OMN,4829483
12/04/2020,12,4,2020,62,0,Oman,OM,OMN,4829483
11/04/2020,11,4,2020,27,0,Oman,OM,OMN,4829483
10/04/2020,10,4,2020,38,1,Oman,OM,OMN,4829483
@@ -7367,6 +7511,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Oman,OM,OMN,4829483
01/01/2020,1,1,2020,0,0,Oman,OM,OMN,4829483
31/12/2019,31,12,2019,0,0,Oman,OM,OMN,4829483
+13/04/2020,13,4,2020,336,7,Pakistan,PK,PAK,212215030
12/04/2020,12,4,2020,250,15,Pakistan,PK,PAK,212215030
11/04/2020,11,4,2020,187,5,Pakistan,PK,PAK,212215030
10/04/2020,10,4,2020,279,3,Pakistan,PK,PAK,212215030
@@ -7466,6 +7611,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Pakistan,PK,PAK,212215030
01/01/2020,1,1,2020,0,0,Pakistan,PK,PAK,212215030
31/12/2019,31,12,2019,0,0,Pakistan,PK,PAK,212215030
+13/04/2020,13,4,2020,0,0,Palestine,PS,PSE,4569087
12/04/2020,12,4,2020,2,0,Palestine,PS,PSE,4569087
11/04/2020,11,4,2020,3,1,Palestine,PS,PSE,4569087
10/04/2020,10,4,2020,0,0,Palestine,PS,PSE,4569087
@@ -7501,6 +7647,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
08/03/2020,8,3,2020,3,0,Palestine,PS,PSE,4569087
07/03/2020,7,3,2020,9,0,Palestine,PS,PSE,4569087
06/03/2020,6,3,2020,7,0,Palestine,PS,PSE,4569087
+13/04/2020,13,4,2020,166,8,Panama,PA,PAN,4176873
12/04/2020,12,4,2020,260,5,Panama,PA,PAN,4176873
11/04/2020,11,4,2020,222,8,Panama,PA,PAN,4176873
10/04/2020,10,4,2020,224,3,Panama,PA,PAN,4176873
@@ -7535,6 +7682,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
12/03/2020,12,3,2020,7,0,Panama,PA,PAN,4176873
11/03/2020,11,3,2020,6,1,Panama,PA,PAN,4176873
10/03/2020,10,3,2020,1,0,Panama,PA,PAN,4176873
+13/04/2020,13,4,2020,0,0,Papua_New_Guinea,PG,PNG,8606316
12/04/2020,12,4,2020,0,0,Papua_New_Guinea,PG,PNG,8606316
11/04/2020,11,4,2020,0,0,Papua_New_Guinea,PG,PNG,8606316
10/04/2020,10,4,2020,0,0,Papua_New_Guinea,PG,PNG,8606316
@@ -7558,6 +7706,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
23/03/2020,23,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316
22/03/2020,22,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316
21/03/2020,21,3,2020,1,0,Papua_New_Guinea,PG,PNG,8606316
+13/04/2020,13,4,2020,13,0,Paraguay,PY,PRY,6956071
12/04/2020,12,4,2020,1,0,Paraguay,PY,PRY,6956071
11/04/2020,11,4,2020,4,0,Paraguay,PY,PRY,6956071
10/04/2020,10,4,2020,5,1,Paraguay,PY,PRY,6956071
@@ -7590,6 +7739,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
13/03/2020,13,3,2020,1,0,Paraguay,PY,PRY,6956071
11/03/2020,11,3,2020,4,0,Paraguay,PY,PRY,6956071
08/03/2020,8,3,2020,1,0,Paraguay,PY,PRY,6956071
+13/04/2020,13,4,2020,671,12,Peru,PE,PER,31989256
12/04/2020,12,4,2020,951,12,Peru,PE,PER,31989256
11/04/2020,11,4,2020,641,31,Peru,PE,PER,31989256
10/04/2020,10,4,2020,914,17,Peru,PE,PER,31989256
@@ -7626,6 +7776,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
10/03/2020,10,3,2020,2,0,Peru,PE,PER,31989256
09/03/2020,9,3,2020,6,0,Peru,PE,PER,31989256
07/03/2020,7,3,2020,1,0,Peru,PE,PER,31989256
+13/04/2020,13,4,2020,220,50,Philippines,PH,PHL,106651922
12/04/2020,12,4,2020,352,44,Philippines,PH,PHL,106651922
11/04/2020,11,4,2020,0,0,Philippines,PH,PHL,106651922
10/04/2020,10,4,2020,206,21,Philippines,PH,PHL,106651922
@@ -7726,6 +7877,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Philippines,PH,PHL,106651922
01/01/2020,1,1,2020,0,0,Philippines,PH,PHL,106651922
31/12/2019,31,12,2019,0,0,Philippines,PH,PHL,106651922
+13/04/2020,13,4,2020,318,24,Poland,PL,POL,37978548
12/04/2020,12,4,2020,401,27,Poland,PL,POL,37978548
11/04/2020,11,4,2020,380,7,Poland,PL,POL,37978548
10/04/2020,10,4,2020,370,15,Poland,PL,POL,37978548
@@ -7764,6 +7916,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
08/03/2020,8,3,2020,1,0,Poland,PL,POL,37978548
07/03/2020,7,3,2020,4,0,Poland,PL,POL,37978548
04/03/2020,4,3,2020,1,0,Poland,PL,POL,37978548
+13/04/2020,13,4,2020,598,34,Portugal,PT,PRT,10281762
12/04/2020,12,4,2020,515,35,Portugal,PT,PRT,10281762
11/04/2020,11,4,2020,1516,26,Portugal,PT,PRT,10281762
10/04/2020,10,4,2020,815,29,Portugal,PT,PRT,10281762
@@ -7805,6 +7958,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
05/03/2020,5,3,2020,1,0,Portugal,PT,PRT,10281762
04/03/2020,4,3,2020,2,0,Portugal,PT,PRT,10281762
03/03/2020,3,3,2020,2,0,Portugal,PT,PRT,10281762
+13/04/2020,13,4,2020,109,2,Puerto_Rico,PR,PRI,3195153
12/04/2020,12,4,2020,63,3,Puerto_Rico,PR,PRI,3195153
11/04/2020,11,4,2020,42,6,Puerto_Rico,PR,PRI,3195153
10/04/2020,10,4,2020,63,9,Puerto_Rico,PR,PRI,3195153
@@ -7821,6 +7975,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
30/03/2020,30,3,2020,27,2,Puerto_Rico,PR,PRI,3195153
29/03/2020,29,3,2020,36,1,Puerto_Rico,PR,PRI,3195153
28/03/2020,28,3,2020,64,2,Puerto_Rico,PR,PRI,3195153
+13/04/2020,13,4,2020,251,1,Qatar,QA,QAT,2781677
12/04/2020,12,4,2020,216,0,Qatar,QA,QAT,2781677
11/04/2020,11,4,2020,136,0,Qatar,QA,QAT,2781677
10/04/2020,10,4,2020,166,0,Qatar,QA,QAT,2781677
@@ -7921,6 +8076,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Qatar,QA,QAT,2781677
01/01/2020,1,1,2020,0,0,Qatar,QA,QAT,2781677
31/12/2019,31,12,2019,0,0,Qatar,QA,QAT,2781677
+13/04/2020,13,4,2020,310,24,Romania,RO,ROU,19473936
12/04/2020,12,4,2020,523,25,Romania,RO,ROU,19473936
11/04/2020,11,4,2020,265,28,Romania,RO,ROU,19473936
10/04/2020,10,4,2020,441,20,Romania,RO,ROU,19473936
@@ -8023,6 +8179,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Romania,RO,ROU,19473936
01/01/2020,1,1,2020,0,0,Romania,RO,ROU,19473936
31/12/2019,31,12,2019,0,0,Romania,RO,ROU,19473936
+13/04/2020,13,4,2020,2186,24,Russia,RU,RUS,144478050
12/04/2020,12,4,2020,1667,12,Russia,RU,RUS,144478050
11/04/2020,11,4,2020,1786,18,Russia,RU,RUS,144478050
10/04/2020,10,4,2020,1459,13,Russia,RU,RUS,144478050
@@ -8122,6 +8279,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Russia,RU,RUS,144478050
01/01/2020,1,1,2020,0,0,Russia,RU,RUS,144478050
31/12/2019,31,12,2019,0,0,Russia,RU,RUS,144478050
+13/04/2020,13,4,2020,6,0,Rwanda,RW,RWA,12301939
12/04/2020,12,4,2020,2,0,Rwanda,RW,RWA,12301939
11/04/2020,11,4,2020,5,0,Rwanda,RW,RWA,12301939
10/04/2020,10,4,2020,3,0,Rwanda,RW,RWA,12301939
@@ -8151,6 +8309,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Rwanda,RW,RWA,12301939
16/03/2020,16,3,2020,4,0,Rwanda,RW,RWA,12301939
15/03/2020,15,3,2020,1,0,Rwanda,RW,RWA,12301939
+13/04/2020,13,4,2020,0,0,Saint_Kitts_and_Nevis,KN,KNA,52441
12/04/2020,12,4,2020,0,0,Saint_Kitts_and_Nevis,KN,KNA,52441
11/04/2020,11,4,2020,1,0,Saint_Kitts_and_Nevis,KN,KNA,52441
10/04/2020,10,4,2020,0,0,Saint_Kitts_and_Nevis,KN,KNA,52441
@@ -8169,6 +8328,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
28/03/2020,28,3,2020,0,0,Saint_Kitts_and_Nevis,KN,KNA,52441
27/03/2020,27,3,2020,0,0,Saint_Kitts_and_Nevis,KN,KNA,52441
26/03/2020,26,3,2020,2,0,Saint_Kitts_and_Nevis,KN,KNA,52441
+13/04/2020,13,4,2020,0,0,Saint_Lucia,LC,LCA,181889
12/04/2020,12,4,2020,0,0,Saint_Lucia,LC,LCA,181889
11/04/2020,11,4,2020,1,0,Saint_Lucia,LC,LCA,181889
10/04/2020,10,4,2020,0,0,Saint_Lucia,LC,LCA,181889
@@ -8198,6 +8358,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,0,0,Saint_Lucia,LC,LCA,181889
16/03/2020,16,3,2020,0,0,Saint_Lucia,LC,LCA,181889
15/03/2020,15,3,2020,2,0,Saint_Lucia,LC,LCA,181889
+13/04/2020,13,4,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210
12/04/2020,12,4,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210
11/04/2020,11,4,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210
10/04/2020,10,4,2020,4,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210
@@ -8218,6 +8379,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
26/03/2020,26,3,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210
25/03/2020,25,3,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210
13/03/2020,13,3,2020,1,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210
+13/04/2020,13,4,2020,0,0,San_Marino,SM,SMR,33785
12/04/2020,12,4,2020,12,1,San_Marino,SM,SMR,33785
11/04/2020,11,4,2020,11,0,San_Marino,SM,SMR,33785
10/04/2020,10,4,2020,25,0,San_Marino,SM,SMR,33785
@@ -8321,10 +8483,12 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,San_Marino,SM,SMR,33785
01/01/2020,1,1,2020,0,0,San_Marino,SM,SMR,33785
31/12/2019,31,12,2019,0,0,San_Marino,SM,SMR,33785
+13/04/2020,13,4,2020,0,0,Sao_Tome_and_Principe,ST,STP,211028
12/04/2020,12,4,2020,0,0,Sao_Tome_and_Principe,ST,STP,211028
11/04/2020,11,4,2020,0,0,Sao_Tome_and_Principe,ST,STP,211028
10/04/2020,10,4,2020,0,0,Sao_Tome_and_Principe,ST,STP,211028
09/04/2020,9,4,2020,4,0,Sao_Tome_and_Principe,ST,STP,211028
+13/04/2020,13,4,2020,429,7,Saudi_Arabia,SA,SAU,33699947
12/04/2020,12,4,2020,382,5,Saudi_Arabia,SA,SAU,33699947
11/04/2020,11,4,2020,364,3,Saudi_Arabia,SA,SAU,33699947
10/04/2020,10,4,2020,355,3,Saudi_Arabia,SA,SAU,33699947
@@ -8363,6 +8527,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
08/03/2020,8,3,2020,2,0,Saudi_Arabia,SA,SAU,33699947
06/03/2020,6,3,2020,4,0,Saudi_Arabia,SA,SAU,33699947
03/03/2020,3,3,2020,1,0,Saudi_Arabia,SA,SAU,33699947
+13/04/2020,13,4,2020,2,0,Senegal,SN,SEN,15854360
12/04/2020,12,4,2020,13,0,Senegal,SN,SEN,15854360
11/04/2020,11,4,2020,15,0,Senegal,SN,SEN,15854360
10/04/2020,10,4,2020,6,0,Senegal,SN,SEN,15854360
@@ -8397,6 +8562,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
06/03/2020,6,3,2020,1,0,Senegal,SN,SEN,15854360
05/03/2020,5,3,2020,2,0,Senegal,SN,SEN,15854360
03/03/2020,3,3,2020,1,0,Senegal,SN,SEN,15854360
+13/04/2020,13,4,2020,250,6,Serbia,RS,SRB,6982084
12/04/2020,12,4,2020,275,3,Serbia,RS,SRB,6982084
11/04/2020,11,4,2020,238,5,Serbia,RS,SRB,6982084
10/04/2020,10,4,2020,201,1,Serbia,RS,SRB,6982084
@@ -8431,6 +8597,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
12/03/2020,12,3,2020,13,0,Serbia,RS,SRB,6982084
11/03/2020,11,3,2020,4,0,Serbia,RS,SRB,6982084
07/03/2020,7,3,2020,1,0,Serbia,RS,SRB,6982084
+13/04/2020,13,4,2020,0,0,Seychelles,SC,SYC,96762
12/04/2020,12,4,2020,0,0,Seychelles,SC,SYC,96762
11/04/2020,11,4,2020,0,0,Seychelles,SC,SYC,96762
10/04/2020,10,4,2020,0,0,Seychelles,SC,SYC,96762
@@ -8460,6 +8627,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,1,0,Seychelles,SC,SYC,96762
16/03/2020,16,3,2020,1,0,Seychelles,SC,SYC,96762
15/03/2020,15,3,2020,2,0,Seychelles,SC,SYC,96762
+13/04/2020,13,4,2020,0,0,Sierra_Leone,SL,SLE,7650154
12/04/2020,12,4,2020,2,0,Sierra_Leone,SL,SLE,7650154
11/04/2020,11,4,2020,1,0,Sierra_Leone,SL,SLE,7650154
10/04/2020,10,4,2020,0,0,Sierra_Leone,SL,SLE,7650154
@@ -8472,6 +8640,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
03/04/2020,3,4,2020,1,0,Sierra_Leone,SL,SLE,7650154
02/04/2020,2,4,2020,0,0,Sierra_Leone,SL,SLE,7650154
01/04/2020,1,4,2020,1,0,Sierra_Leone,SL,SLE,7650154
+13/04/2020,13,4,2020,233,0,Singapore,SG,SGP,5638676
12/04/2020,12,4,2020,390,2,Singapore,SG,SGP,5638676
11/04/2020,11,4,2020,0,0,Singapore,SG,SGP,5638676
10/04/2020,10,4,2020,286,0,Singapore,SG,SGP,5638676
@@ -8576,6 +8745,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Singapore,SG,SGP,5638676
01/01/2020,1,1,2020,0,0,Singapore,SG,SGP,5638676
31/12/2019,31,12,2019,0,0,Singapore,SG,SGP,5638676
+13/04/2020,13,4,2020,0,0,Sint_Maarten,SX,SXM,41486
12/04/2020,12,4,2020,0,0,Sint_Maarten,SX,SXM,41486
11/04/2020,11,4,2020,0,1,Sint_Maarten,SX,SXM,41486
10/04/2020,10,4,2020,10,0,Sint_Maarten,SX,SXM,41486
@@ -8594,6 +8764,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
27/03/2020,27,3,2020,0,0,Sint_Maarten,SX,SXM,41486
26/03/2020,26,3,2020,1,0,Sint_Maarten,SX,SXM,41486
03/03/2020,3,3,2020,1,0,Sint_Maarten,SX,SXM,41486
+13/04/2020,13,4,2020,14,0,Slovakia,SK,SVK,5447011
12/04/2020,12,4,2020,13,0,Slovakia,SK,SVK,5447011
11/04/2020,11,4,2020,14,0,Slovakia,SK,SVK,5447011
10/04/2020,10,4,2020,19,0,Slovakia,SK,SVK,5447011
@@ -8630,6 +8801,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
09/03/2020,9,3,2020,2,0,Slovakia,SK,SVK,5447011
08/03/2020,8,3,2020,2,0,Slovakia,SK,SVK,5447011
07/03/2020,7,3,2020,1,0,Slovakia,SK,SVK,5447011
+13/04/2020,13,4,2020,17,3,Slovenia,SI,SVN,2067372
12/04/2020,12,4,2020,28,5,Slovenia,SI,SVN,2067372
11/04/2020,11,4,2020,36,2,Slovenia,SI,SVN,2067372
10/04/2020,10,4,2020,33,3,Slovenia,SI,SVN,2067372
@@ -8668,6 +8840,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
07/03/2020,7,3,2020,3,0,Slovenia,SI,SVN,2067372
06/03/2020,6,3,2020,5,0,Slovenia,SI,SVN,2067372
05/03/2020,5,3,2020,1,0,Slovenia,SI,SVN,2067372
+13/04/2020,13,4,2020,4,1,Somalia,SO,SOM,15008154
12/04/2020,12,4,2020,0,0,Somalia,SO,SOM,15008154
11/04/2020,11,4,2020,9,0,Somalia,SO,SOM,15008154
10/04/2020,10,4,2020,4,1,Somalia,SO,SOM,15008154
@@ -8695,6 +8868,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
19/03/2020,19,3,2020,0,0,Somalia,SO,SOM,15008154
18/03/2020,18,3,2020,0,0,Somalia,SO,SOM,15008154
17/03/2020,17,3,2020,1,0,Somalia,SO,SOM,15008154
+13/04/2020,13,4,2020,145,0,South_Africa,ZA,ZAF,57779622
12/04/2020,12,4,2020,25,1,South_Africa,ZA,ZAF,57779622
11/04/2020,11,4,2020,69,6,South_Africa,ZA,ZAF,57779622
10/04/2020,10,4,2020,89,0,South_Africa,ZA,ZAF,57779622
@@ -8731,6 +8905,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
09/03/2020,9,3,2020,1,0,South_Africa,ZA,ZAF,57779622
08/03/2020,8,3,2020,1,0,South_Africa,ZA,ZAF,57779622
06/03/2020,6,3,2020,1,0,South_Africa,ZA,ZAF,57779622
+13/04/2020,13,4,2020,25,3,South_Korea,KR,KOR,51635256
12/04/2020,12,4,2020,62,6,South_Korea,KR,KOR,51635256
11/04/2020,11,4,2020,0,0,South_Korea,KR,KOR,51635256
10/04/2020,10,4,2020,27,4,South_Korea,KR,KOR,51635256
@@ -8835,6 +9010,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,South_Korea,KR,KOR,51635256
01/01/2020,1,1,2020,0,0,South_Korea,KR,KOR,51635256
31/12/2019,31,12,2019,0,0,South_Korea,KR,KOR,51635256
+13/04/2020,13,4,2020,0,0,South_Sudan,SS,SSD,10975920
12/04/2020,12,4,2020,1,0,South_Sudan,SS,SSD,10975920
11/04/2020,11,4,2020,1,0,South_Sudan,SS,SSD,10975920
10/04/2020,10,4,2020,0,0,South_Sudan,SS,SSD,10975920
@@ -8842,6 +9018,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
08/04/2020,8,4,2020,0,0,South_Sudan,SS,SSD,10975920
07/04/2020,7,4,2020,0,0,South_Sudan,SS,SSD,10975920
06/04/2020,6,4,2020,1,0,South_Sudan,SS,SSD,10975920
+13/04/2020,13,4,2020,4167,619,Spain,ES,ESP,46723749
12/04/2020,12,4,2020,4830,510,Spain,ES,ESP,46723749
11/04/2020,11,4,2020,4576,605,Spain,ES,ESP,46723749
10/04/2020,10,4,2020,5756,683,Spain,ES,ESP,46723749
@@ -8946,6 +9123,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Spain,ES,ESP,46723749
01/01/2020,1,1,2020,0,0,Spain,ES,ESP,46723749
31/12/2019,31,12,2019,0,0,Spain,ES,ESP,46723749
+13/04/2020,13,4,2020,11,0,Sri_Lanka,LK,LKA,21670000
12/04/2020,12,4,2020,2,0,Sri_Lanka,LK,LKA,21670000
11/04/2020,11,4,2020,7,0,Sri_Lanka,LK,LKA,21670000
10/04/2020,10,4,2020,1,0,Sri_Lanka,LK,LKA,21670000
@@ -9041,6 +9219,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Sri_Lanka,LK,LKA,21670000
01/01/2020,1,1,2020,0,0,Sri_Lanka,LK,LKA,21670000
31/12/2019,31,12,2019,0,0,Sri_Lanka,LK,LKA,21670000
+13/04/2020,13,4,2020,0,0,Sudan,SD,SDN,41801533
12/04/2020,12,4,2020,4,0,Sudan,SD,SDN,41801533
11/04/2020,11,4,2020,1,0,Sudan,SD,SDN,41801533
10/04/2020,10,4,2020,0,0,Sudan,SD,SDN,41801533
@@ -9071,6 +9250,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,0,0,Sudan,SD,SDN,41801533
15/03/2020,15,3,2020,0,1,Sudan,SD,SDN,41801533
14/03/2020,14,3,2020,1,0,Sudan,SD,SDN,41801533
+13/04/2020,13,4,2020,0,0,Suriname,SR,SUR,575991
12/04/2020,12,4,2020,0,0,Suriname,SR,SUR,575991
11/04/2020,11,4,2020,0,0,Suriname,SR,SUR,575991
10/04/2020,10,4,2020,0,0,Suriname,SR,SUR,575991
@@ -9095,6 +9275,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
22/03/2020,22,3,2020,4,0,Suriname,SR,SUR,575991
21/03/2020,21,3,2020,0,0,Suriname,SR,SUR,575991
15/03/2020,15,3,2020,1,0,Suriname,SR,SUR,575991
+13/04/2020,13,4,2020,332,12,Sweden,SE,SWE,10183175
12/04/2020,12,4,2020,466,17,Sweden,SE,SWE,10183175
11/04/2020,11,4,2020,544,77,Sweden,SE,SWE,10183175
10/04/2020,10,4,2020,722,106,Sweden,SE,SWE,10183175
@@ -9199,6 +9380,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Sweden,SE,SWE,10183175
01/01/2020,1,1,2020,0,0,Sweden,SE,SWE,10183175
31/12/2019,31,12,2019,0,0,Sweden,SE,SWE,10183175
+13/04/2020,13,4,2020,400,27,Switzerland,CH,CHE,8516543
12/04/2020,12,4,2020,592,26,Switzerland,CH,CHE,8516543
11/04/2020,11,4,2020,733,49,Switzerland,CH,CHE,8516543
10/04/2020,10,4,2020,785,51,Switzerland,CH,CHE,8516543
@@ -9303,6 +9485,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Switzerland,CH,CHE,8516543
01/01/2020,1,1,2020,0,0,Switzerland,CH,CHE,8516543
31/12/2019,31,12,2019,0,0,Switzerland,CH,CHE,8516543
+13/04/2020,13,4,2020,0,0,Syria,SY,SYR,16906283
12/04/2020,12,4,2020,6,0,Syria,SY,SYR,16906283
11/04/2020,11,4,2020,0,0,Syria,SY,SYR,16906283
10/04/2020,10,4,2020,0,0,Syria,SY,SYR,16906283
@@ -9324,6 +9507,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
25/03/2020,25,3,2020,0,0,Syria,SY,SYR,16906283
24/03/2020,24,3,2020,0,0,Syria,SY,SYR,16906283
23/03/2020,23,3,2020,1,0,Syria,SY,SYR,16906283
+13/04/2020,13,4,2020,3,0,Taiwan,TW,TWN,23780452
12/04/2020,12,4,2020,5,1,Taiwan,TW,TWN,23780452
11/04/2020,11,4,2020,0,0,Taiwan,TW,TWN,23780452
10/04/2020,10,4,2020,1,0,Taiwan,TW,TWN,23780452
@@ -9426,6 +9610,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Taiwan,TW,TWN,23780452
01/01/2020,1,1,2020,0,0,Taiwan,TW,TWN,23780452
31/12/2019,31,12,2019,0,0,Taiwan,TW,TWN,23780452
+13/04/2020,13,4,2020,28,2,Thailand,TH,THA,69428524
12/04/2020,12,4,2020,33,3,Thailand,TH,THA,69428524
11/04/2020,11,4,2020,45,2,Thailand,TH,THA,69428524
10/04/2020,10,4,2020,50,1,Thailand,TH,THA,69428524
@@ -9523,6 +9708,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Thailand,TH,THA,69428524
01/01/2020,1,1,2020,0,0,Thailand,TH,THA,69428524
31/12/2019,31,12,2019,0,0,Thailand,TH,THA,69428524
+13/04/2020,13,4,2020,0,0,Timor_Leste,TL,TLS,1267972
12/04/2020,12,4,2020,0,0,Timor_Leste,TL,TLS,1267972
11/04/2020,11,4,2020,0,0,Timor_Leste,TL,TLS,1267972
10/04/2020,10,4,2020,1,0,Timor_Leste,TL,TLS,1267972
@@ -9545,6 +9731,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
24/03/2020,24,3,2020,0,0,Timor_Leste,TL,TLS,1267972
23/03/2020,23,3,2020,0,0,Timor_Leste,TL,TLS,1267972
22/03/2020,22,3,2020,1,0,Timor_Leste,TL,TLS,1267972
+13/04/2020,13,4,2020,0,0,Togo,TG,TGO,7889094
12/04/2020,12,4,2020,0,0,Togo,TG,TGO,7889094
11/04/2020,11,4,2020,3,0,Togo,TG,TGO,7889094
10/04/2020,10,4,2020,3,0,Togo,TG,TGO,7889094
@@ -9575,6 +9762,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,0,0,Togo,TG,TGO,7889094
15/03/2020,15,3,2020,0,0,Togo,TG,TGO,7889094
07/03/2020,7,3,2020,1,0,Togo,TG,TGO,7889094
+13/04/2020,13,4,2020,1,0,Trinidad_and_Tobago,TT,TTO,1389858
12/04/2020,12,4,2020,3,0,Trinidad_and_Tobago,TT,TTO,1389858
11/04/2020,11,4,2020,0,0,Trinidad_and_Tobago,TT,TTO,1389858
10/04/2020,10,4,2020,2,0,Trinidad_and_Tobago,TT,TTO,1389858
@@ -9606,6 +9794,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
15/03/2020,15,3,2020,0,0,Trinidad_and_Tobago,TT,TTO,1389858
14/03/2020,14,3,2020,1,0,Trinidad_and_Tobago,TT,TTO,1389858
13/03/2020,13,3,2020,1,0,Trinidad_and_Tobago,TT,TTO,1389858
+13/04/2020,13,4,2020,22,3,Tunisia,TN,TUN,11565204
12/04/2020,12,4,2020,14,3,Tunisia,TN,TUN,11565204
11/04/2020,11,4,2020,28,0,Tunisia,TN,TUN,11565204
10/04/2020,10,4,2020,20,2,Tunisia,TN,TUN,11565204
@@ -9641,6 +9830,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
11/03/2020,11,3,2020,3,0,Tunisia,TN,TUN,11565204
10/03/2020,10,3,2020,1,0,Tunisia,TN,TUN,11565204
03/03/2020,3,3,2020,1,0,Tunisia,TN,TUN,11565204
+13/04/2020,13,4,2020,4789,97,Turkey,TR,TUR,82319724
12/04/2020,12,4,2020,5138,95,Turkey,TR,TUR,82319724
11/04/2020,11,4,2020,4747,98,Turkey,TR,TUR,82319724
10/04/2020,10,4,2020,4056,96,Turkey,TR,TUR,82319724
@@ -9671,6 +9861,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,16,0,Turkey,TR,TUR,82319724
13/03/2020,13,3,2020,1,0,Turkey,TR,TUR,82319724
12/03/2020,12,3,2020,1,0,Turkey,TR,TUR,82319724
+13/04/2020,13,4,2020,0,0,Turks_and_Caicos_islands,TC,TCA,31458
12/04/2020,12,4,2020,0,0,Turks_and_Caicos_islands,TC,TCA,31458
11/04/2020,11,4,2020,1,0,Turks_and_Caicos_islands,TC,TCA,31458
10/04/2020,10,4,2020,0,0,Turks_and_Caicos_islands,TC,TCA,31458
@@ -9690,6 +9881,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
27/03/2020,27,3,2020,1,0,Turks_and_Caicos_islands,TC,TCA,31458
26/03/2020,26,3,2020,0,0,Turks_and_Caicos_islands,TC,TCA,31458
25/03/2020,25,3,2020,1,0,Turks_and_Caicos_islands,TC,TCA,31458
+13/04/2020,13,4,2020,1,0,Uganda,UG,UGA,42723139
12/04/2020,12,4,2020,0,0,Uganda,UG,UGA,42723139
11/04/2020,11,4,2020,0,0,Uganda,UG,UGA,42723139
10/04/2020,10,4,2020,0,0,Uganda,UG,UGA,42723139
@@ -9712,6 +9904,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
24/03/2020,24,3,2020,8,0,Uganda,UG,UGA,42723139
23/03/2020,23,3,2020,0,0,Uganda,UG,UGA,42723139
22/03/2020,22,3,2020,1,0,Uganda,UG,UGA,42723139
+13/04/2020,13,4,2020,266,10,Ukraine,UA,UKR,44622516
12/04/2020,12,4,2020,308,4,Ukraine,UA,UKR,44622516
11/04/2020,11,4,2020,311,12,Ukraine,UA,UKR,44622516
10/04/2020,10,4,2020,224,5,Ukraine,UA,UKR,44622516
@@ -9742,6 +9935,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
16/03/2020,16,3,2020,0,0,Ukraine,UA,UKR,44622516
13/03/2020,13,3,2020,2,0,Ukraine,UA,UKR,44622516
04/03/2020,4,3,2020,1,0,Ukraine,UA,UKR,44622516
+13/04/2020,13,4,2020,387,2,United_Arab_Emirates,AE,ARE,9630959
12/04/2020,12,4,2020,376,4,United_Arab_Emirates,AE,ARE,9630959
11/04/2020,11,4,2020,370,2,United_Arab_Emirates,AE,ARE,9630959
10/04/2020,10,4,2020,331,2,United_Arab_Emirates,AE,ARE,9630959
@@ -9840,6 +10034,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,United_Arab_Emirates,AE,ARE,9630959
01/01/2020,1,1,2020,0,0,United_Arab_Emirates,AE,ARE,9630959
31/12/2019,31,12,2019,0,0,United_Arab_Emirates,AE,ARE,9630959
+13/04/2020,13,4,2020,5288,737,United_Kingdom,UK,GBR,66488991
12/04/2020,12,4,2020,8719,917,United_Kingdom,UK,GBR,66488991
11/04/2020,11,4,2020,5195,980,United_Kingdom,UK,GBR,66488991
10/04/2020,10,4,2020,4344,881,United_Kingdom,UK,GBR,66488991
@@ -9944,6 +10139,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,United_Kingdom,UK,GBR,66488991
01/01/2020,1,1,2020,0,0,United_Kingdom,UK,GBR,66488991
31/12/2019,31,12,2019,0,0,United_Kingdom,UK,GBR,66488991
+13/04/2020,13,4,2020,0,0,United_Republic_of_Tanzania,TZ,TZA,56318348
12/04/2020,12,4,2020,0,0,United_Republic_of_Tanzania,TZ,TZA,56318348
11/04/2020,11,4,2020,7,2,United_Republic_of_Tanzania,TZ,TZA,56318348
10/04/2020,10,4,2020,0,0,United_Republic_of_Tanzania,TZ,TZA,56318348
@@ -9971,6 +10167,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
19/03/2020,19,3,2020,2,0,United_Republic_of_Tanzania,TZ,TZA,56318348
18/03/2020,18,3,2020,0,0,United_Republic_of_Tanzania,TZ,TZA,56318348
17/03/2020,17,3,2020,1,0,United_Republic_of_Tanzania,TZ,TZA,56318348
+13/04/2020,13,4,2020,27620,1500,United_States_of_America,US,USA,327167434
12/04/2020,12,4,2020,28391,1831,United_States_of_America,US,USA,327167434
11/04/2020,11,4,2020,35527,2087,United_States_of_America,US,USA,327167434
10/04/2020,10,4,2020,33901,1873,United_States_of_America,US,USA,327167434
@@ -10075,6 +10272,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,United_States_of_America,US,USA,327167434
01/01/2020,1,1,2020,0,0,United_States_of_America,US,USA,327167434
31/12/2019,31,12,2019,0,0,United_States_of_America,US,USA,327167434
+13/04/2020,13,4,2020,0,0,United_States_Virgin_Islands,VI,VIR,106977
12/04/2020,12,4,2020,1,0,United_States_Virgin_Islands,VI,VIR,106977
11/04/2020,11,4,2020,0,0,United_States_Virgin_Islands,VI,VIR,106977
10/04/2020,10,4,2020,5,0,United_States_Virgin_Islands,VI,VIR,106977
@@ -10094,6 +10292,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
26/03/2020,26,3,2020,0,0,United_States_Virgin_Islands,VI,VIR,106977
25/03/2020,25,3,2020,0,0,United_States_Virgin_Islands,VI,VIR,106977
24/03/2020,24,3,2020,17,0,United_States_Virgin_Islands,VI,VIR,106977
+13/04/2020,13,4,2020,11,1,Uruguay,UY,URY,3449299
12/04/2020,12,4,2020,7,0,Uruguay,UY,URY,3449299
11/04/2020,11,4,2020,21,0,Uruguay,UY,URY,3449299
10/04/2020,10,4,2020,17,0,Uruguay,UY,URY,3449299
@@ -10123,6 +10322,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,21,0,Uruguay,UY,URY,3449299
16/03/2020,16,3,2020,2,0,Uruguay,UY,URY,3449299
15/03/2020,15,3,2020,6,0,Uruguay,UY,URY,3449299
+13/04/2020,13,4,2020,69,0,Uzbekistan,UZ,UZB,32955400
12/04/2020,12,4,2020,172,1,Uzbekistan,UZ,UZB,32955400
11/04/2020,11,4,2020,42,0,Uzbekistan,UZ,UZB,32955400
10/04/2020,10,4,2020,27,0,Uzbekistan,UZ,UZB,32955400
@@ -10151,6 +10351,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
18/03/2020,18,3,2020,8,0,Uzbekistan,UZ,UZB,32955400
17/03/2020,17,3,2020,2,0,Uzbekistan,UZ,UZB,32955400
16/03/2020,16,3,2020,6,0,Uzbekistan,UZ,UZB,32955400
+13/04/2020,13,4,2020,6,0,Venezuela,VE,VEN,28870195
12/04/2020,12,4,2020,0,0,Venezuela,VE,VEN,28870195
11/04/2020,11,4,2020,4,0,Venezuela,VE,VEN,28870195
10/04/2020,10,4,2020,4,1,Venezuela,VE,VEN,28870195
@@ -10180,6 +10381,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
17/03/2020,17,3,2020,18,0,Venezuela,VE,VEN,28870195
16/03/2020,16,3,2020,5,0,Venezuela,VE,VEN,28870195
15/03/2020,15,3,2020,10,0,Venezuela,VE,VEN,28870195
+13/04/2020,13,4,2020,4,0,Vietnam,VN,VNM,95540395
12/04/2020,12,4,2020,1,0,Vietnam,VN,VNM,95540395
11/04/2020,11,4,2020,2,0,Vietnam,VN,VNM,95540395
10/04/2020,10,4,2020,4,0,Vietnam,VN,VNM,95540395
@@ -10280,9 +10482,11 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
02/01/2020,2,1,2020,0,0,Vietnam,VN,VNM,95540395
01/01/2020,1,1,2020,0,0,Vietnam,VN,VNM,95540395
31/12/2019,31,12,2019,0,0,Vietnam,VN,VNM,95540395
+13/04/2020,13,4,2020,0,0,Yemen,YE,YEM,28498687
12/04/2020,12,4,2020,0,0,Yemen,YE,YEM,28498687
11/04/2020,11,4,2020,0,0,Yemen,YE,YEM,28498687
10/04/2020,10,4,2020,1,0,Yemen,YE,YEM,28498687
+13/04/2020,13,4,2020,3,0,Zambia,ZM,ZMB,17351822
12/04/2020,12,4,2020,0,0,Zambia,ZM,ZMB,17351822
11/04/2020,11,4,2020,1,1,Zambia,ZM,ZMB,17351822
10/04/2020,10,4,2020,0,0,Zambia,ZM,ZMB,17351822
@@ -10308,6 +10512,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito
21/03/2020,21,3,2020,0,0,Zambia,ZM,ZMB,17351822
20/03/2020,20,3,2020,0,0,Zambia,ZM,ZMB,17351822
19/03/2020,19,3,2020,2,0,Zambia,ZM,ZMB,17351822
+13/04/2020,13,4,2020,0,0,Zimbabwe,ZW,ZWE,14439018
12/04/2020,12,4,2020,3,0,Zimbabwe,ZW,ZWE,14439018
11/04/2020,11,4,2020,0,0,Zimbabwe,ZW,ZWE,14439018
10/04/2020,10,4,2020,0,1,Zimbabwe,ZW,ZWE,14439018