FR = {
let a = covidData.filter(d => d.iso_code == "FRA");
let n = a.length - 1;
let txt =
"As of today, the French government\nhas vaccinated " +
a[n]["total_vaccinations"] +
" people (doses),\ni.e. about " +
a[n]["total_vaccinations_per_hundred"] +
" % of its population.\nFor comparison with other countries,\nthe bubble is highlighted\nin red on the chart.";
return txt.split("\n");
}